Lucas Saavedra Vaz
Lucas Saavedra Vaz
We'll first need to implement some way to easily reconfigure and recompile the libs for the users. Currently working on that. https://github.com/espressif/esp32-arduino-lib-builder/pull/158
I agree with @lbernstone. This is also going to be made easier by #9270.
@s54b32julian You'll probably need to re-generate the static libs for your target. Check https://docs.espressif.com/projects/arduino-esp32/en/latest/lib_builder.html Regarding the e-fuses you can burn them using the `esptool`.
@SuGlider Let's wait #9515 be merged first before putting the Pending Merge tag. This way the bot won't be crazy with unrelated changes 😆
Is this already complete or there's still work to be done ? I think CMake would be a great addition to NuttX!
Please provide more information about what are you trying to do and the code use. We can't help with the provided info.
Fixed in https://github.com/espressif/arduino-esp32/pull/9628 Please take a look if this fixes your issues
If you need to tweak the IDF configuration you can either use Arduino as a component or manually recompile the libs using https://github.com/espressif/esp32-arduino-lib-builder
The update of the SPIFFS partition failed because it was not initialized. Make sure to add something like this to your code: ``` if(!SPIFFS.begin(true)){ Serial.println("SPIFFS Mount Failed"); return; } ```
IMO it would be better to add it to the 3.0.0 version (master branch).