Adjust partition table for 4MiB app size + fill the rest of the space

custom
jacqueline 2 years ago
parent 4b627acee6
commit 493a70b07c
  1. 7
      partitions.csv

@ -1,6 +1,9 @@
# ESP-IDF Partition Table
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x6000,
nvs, data, nvs, 0x9000, 0x4000,
otadata, data, ota, 0xd000, 0x2000,
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 8M,
ota_0, app, ota_0, 0x10000, 4M,
ota_1, app, ota_1, 0x410000, 4M,
assets, data, fat, 0x810000, 6M,

1 # ESP-IDF Partition Table
2 # Name, Type, SubType, Offset, Size, Flags # Name, Type, SubType, Offset, Size, Flags
3 nvs, data, nvs, 0x9000, 0x6000, nvs, data, nvs, 0x9000, 0x4000,
4 otadata, data, ota, 0xd000, 0x2000,
5 phy_init, data, phy, 0xf000, 0x1000, phy_init, data, phy, 0xf000, 0x1000,
6 factory, app, factory, 0x10000, 8M, ota_0, app, ota_0, 0x10000, 4M,
7 ota_1, app, ota_1, 0x410000, 4M,
8 assets, data, fat, 0x810000, 6M,
9
Loading…
Cancel
Save