For the ESP32 we need to run make menuconfig. For ESP32 IDF i know how to do this but with PlatformIO and using Arduino, how do we make changes in menuconfig. For instance, how can we enable PSRAM, and change other settings there ?
I can make changes in menuconfig with the help of this tutorial. I want to use latest esp-idf version. Is there a way to use the latest esp-idf version with platformio?
I was looking for a way compiling for Arduino projects. But to answer you question, I posted a video how to get Microsoft Visual Studio working with ESP-IDF. Of all the other ways I have tried this, this one is by far the best (IMHO). and will let you use the latest ESP-idf.
I changed some things, but the credit goes to This Chap
Same here.
In ESP-IDF env, menuconfig is able to setup for example secure boot or encryption :
#
# Security features
#
CONFIG_SECURE_BOOT_ENABLED=
CONFIG_FLASH_ENCRYPTION_ENABLED=
Is it possible to access from PlatformIO to all parameters present in menuconfig ?
Or can we use menuconfig of ESP-IDF with a platformIO Arduino Project ? How ?
Editing sdkconfig.h does nothing for the arduino-esp32 based projects, the ESP-IDF code is pre-compiled and can not be changed simply by editing the sdkconfig.h included within arduino-esp32. The only way to support this will be arduino as an idf component which is what the PR referenced above that I submitted is for.