Add dual OTA partitions (ota_0/ota_1 × 1.75 MB each) and otadata to both esp32s3/balance/ and esp32s3/io/ on 4 MB flash layouts. Enable CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE and OTA HTTP on Balance. Create esp32s3/io/ project scaffold with config.h pin assignments. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
340 B
340 B
| 1 | # ESP32-S3 IO — 4 MB flash, dual OTA partitions |
|---|---|
| 2 | # Name, Type, SubType, Offset, Size |
| 3 | nvs, data, nvs, 0x9000, 0x5000, |
| 4 | otadata, data, ota, 0xe000, 0x2000, |
| 5 | app0, app, ota_0, 0x10000, 0x1B0000, |
| 6 | app1, app, ota_1, 0x1C0000, 0x1B0000, |
| 7 | nvs_user, data, nvs, 0x370000, 0x50000, |