Thanks, but I'm really only looking for a socket. Do you happen to know what spring pins they've used to create that that board or the name to search for?
Search found 384 matches
- Mon Mar 09, 2020 2:09 pm
- Forum: Hardware
- Topic: Sockets for Wrover and Wroom modules?
- Replies: 2
- Views: 8190
Re: Sockets for Wrover and Wroom modules?
- Mon Mar 09, 2020 1:21 pm
- Forum: Hardware
- Topic: Sockets for Wrover and Wroom modules?
- Replies: 2
- Views: 8190
Sockets for Wrover and Wroom modules?
I'd like to build a PCB for lab purposes with exchangeable ESP32 modules. Do sockets for Wrover and Wroom modules exist or do you happen to know of another smart solution?
- Thu Nov 14, 2019 6:02 pm
- Forum: General Discussion
- Topic: Sharing a nifty trick with ULP coprocessor
- Replies: 3
- Views: 6622
Re: Sharing a nifty trick with ULP coprocessor
I'd press the like-button if there were one thanks for sharing.
- Thu Nov 14, 2019 5:56 pm
- Forum: General Discussion
- Topic: Is it recommended/practical to use C++ instead of plain C ?
- Replies: 16
- Views: 30414
Re: Is it recommended/practical to use C++ instead of plain C ?
Late to the game, but the answer is absolutely "yes". I've written C++ on the ESP32 since day one (2.5 years ago) and never regretted the decision to do so. As always, you have to know your tool, so if you know C++, then there's no reason not use it on this platform imho. With the xtensa-gcc 8.2 com...
- Tue Nov 05, 2019 10:07 pm
- Forum: ESP-IDF
- Topic: writing code that can be run on both esp32 and desktop toolchain
- Replies: 1
- Views: 4724
Re: writing code that can be run on both esp32 and desktop toolchain
I had the same idea some years back, it grew into a complete framework that can run on *nix and ESP32. for reference, this I/O card/alarm is built on top of Smooth
Depending on your application size and what else you need, writing parts as an external component/library might be enough for you.
Depending on your application size and what else you need, writing parts as an external component/library might be enough for you.
- Sun Oct 13, 2019 9:33 am
- Forum: ESP-IDF
- Topic: Shared code and cross-platform stubs in IDF CMake API v4.0
- Replies: 2
- Views: 6185
Re: Shared code and cross-platform stubs in IDF CMake API v4.0
You're welcome
Looking forward to you feedback. Smooth isn't perfect but it has worked well for me. Just recently a few others have also started using it so welcome to the club I guess.
Looking forward to you feedback. Smooth isn't perfect but it has worked well for me. Just recently a few others have also started using it so welcome to the club I guess.
- Sun Oct 13, 2019 9:03 am
- Forum: ESP-IDF
- Topic: Help using CLion + CMake + ESP-IDF v4.0+
- Replies: 8
- Views: 15647
Re: Help using CLion + CMake + ESP-IDF v4.0+
My question to the ESP devs is why does the 'build_system' 'idf_as_lib' example explicitly specify Ninja? I too pointed that out to them a while back. The answer I got was that Ninja is faster. So yes, just a preference. Btw, don't go down the route using IDF as a library, I've been down that rabbi...
- Sun Oct 13, 2019 8:44 am
- Forum: ESP-IDF
- Topic: Some basic questions
- Replies: 5
- Views: 7919
Re: Some basic questions
flash = partition table, bootloader and the app
app-flash = flashes only the application, nothing else.
https://docs.espressif.com/projects/esp ... ystem.html
HTH
app-flash = flashes only the application, nothing else.
https://docs.espressif.com/projects/esp ... ystem.html
HTH
- Sun Oct 13, 2019 8:38 am
- Forum: General Discussion
- Topic: Is there another ide for esp instead of Eclipse?
- Replies: 4
- Views: 8369
Re: Is there another ide for esp instead of Eclipse?
CLion & VSCode both support CMake as project files.
- Sun Oct 13, 2019 8:23 am
- Forum: ESP-IDF
- Topic: Help using CLion + CMake + ESP-IDF v4.0+
- Replies: 8
- Views: 15647
Re: Help using CLion + CMake + ESP-IDF v4.0+
There is no such thing as "CMake make file". CMake is a build system generator , not a build system. It generates whatever build system you tell it to. Make files, Ninja, Visual Studio solution... Unless you absolutely want CLion to use Ninja during compilation, just let it do its thing based on the...