Standard Arduino IDE Partition Scheme

Hi there! In the Arduino IDE menu “tools” we can see several partition configurations for ESP32. It is very useful and easy-to-do way for that.


Would it be possible any easy similar way to do that in platformio? I have been reading some posts regarding this topic but none of them talk about where to find o create these pre-configurations in the Aduino IDE. Or, is there any place where to download those preconfigured .csv files?
Thank you.

The partition layouts are located in

C:\Users\<username>\packages\framework-arduinoespressif32\tools\partitions

To use the “No OTA” partition layout, edit your platformio.ini:

board_build.partitions = no_ota.csv

See Espressif 32 — PlatformIO latest documentation

Good to know it. Thank you again.