Board definition for ESP32-PICO-V3-02

Hi,

I have a custom design using the ESP32-PICO-V3-02 QFN48 SoC.
What board definition can I use with that chip ?

Thanks!

The default esp32dev plus a few additional settings in the platformio.ini should be fine:

[env:esp32dev]
platform = espressif32
board = esp32dev
framework = arduino
board_build.arduino.memory_type = qio_qspi
board_build.psram_type = qio
board_upload.flash_size = 8MB
board_upload.maximum_size = 8388608
build_flags = 
  -DBOARD_HAS_PSRAM 
  -mfix-esp32-psram-cache-issue

Thank you!
I’ll give it a try :slight_smile: