platform-espressif32
platform-espressif32 copied to clipboard
Add support for ESP32-WROVER-E
Espressif has released the ESP32-WROVER-E module, but I can't seem to find it in platformio.
Is it possible to add it?
That module has been out for years now. The default settings of the ESP32 dev module board (board = esp32dev
) typically work fine for basic use, assuming you're using a compatible USB-serial converter, but to access the PSRAM you need to tinker with the configuration. The ESP32 WROVER KIT (board = esp-wrover-kit
) configuration also works, but is also not set up to use PSRAM by default.
To enable PSRAM, just add the following to your platformio.ini
file:
build_flags = -DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue