From 493a70b07c98787bf247e577d17d6b1a3e16a084 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Fri, 8 Sep 2023 13:22:41 +1000 Subject: [PATCH] Adjust partition table for 4MiB app size + fill the rest of the space --- partitions.csv | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/partitions.csv b/partitions.csv index e0c3b166..3cc251a7 100644 --- a/partitions.csv +++ b/partitions.csv @@ -1,6 +1,9 @@ # ESP-IDF Partition Table -# Name, Type, SubType, Offset, Size, Flags -nvs, data, nvs, 0x9000, 0x6000, -phy_init, data, phy, 0xf000, 0x1000, -factory, app, factory, 0x10000, 8M, +# Name, Type, SubType, Offset, Size, Flags +nvs, data, nvs, 0x9000, 0x4000, +otadata, data, ota, 0xd000, 0x2000, +phy_init, data, phy, 0xf000, 0x1000, +ota_0, app, ota_0, 0x10000, 4M, +ota_1, app, ota_1, 0x410000, 4M, +assets, data, fat, 0x810000, 6M,