platform-espressif32 icon indicating copy to clipboard operation
platform-espressif32 copied to clipboard

Add support for ESP32-WROVER-E

Open JRTax opened this issue 2 years ago • 1 comments

Espressif has released the ESP32-WROVER-E module, but I can't seem to find it in platformio.

Is it possible to add it?

JRTax avatar Dec 17 '22 21:12 JRTax

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

tookitogo avatar Jan 06 '23 23:01 tookitogo