From 6eae898d01534acb416a2958246d36962aeebb27 Mon Sep 17 00:00:00 2001 From: Andreas Neuhaus Date: Sun, 27 Oct 2024 20:23:19 +0100 Subject: [PATCH] Rearrange flash partitions to increase app space from 1M to 1.3M --- firmware/partitions.csv | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/firmware/partitions.csv b/firmware/partitions.csv index 97b61d3..a75b32d 100644 --- a/firmware/partitions.csv +++ b/firmware/partitions.csv @@ -1,10 +1,10 @@ -# ESP-IDF Partition Table (OTA layout with additional `config` partition) +# ESP-IDF Partition Table # See also https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/partition-tables.html -# Name, Type, SubType, Offset, Size, Flags -nvs, data, nvs, 0x9000, 0x3000, -config, 0x54, 0x44, 0xc000, 0x1000, -otadata, data, ota, 0xd000, 0x2000, -phy_init, data, phy, 0xf000, 0x1000, -factory, app, factory, 0x10000, 1M, -ota_0, app, ota_0, 0x110000, 1M, -ota_1, app, ota_1, 0x210000, 1M, +# Name, Type, SubType, Offset, Size, Flags +nvs, data, nvs, 0x9000, 0x3000, +config, 0x54, 0x44, 0xc000, 0x1000, +otadata, data, ota, 0xd000, 0x2000, +phy_init, data, phy, 0xf000, 0x1000, +factory, app, factory, 0x10000, 0x150000, +ota_0, app, ota_0, 0x160000, 0x150000, +ota_1, app, ota_1, 0x2b0000, 0x150000,