Skip to content

Commit

Permalink
Rearrange flash partitions to increase app space from 1M to 1.3M
Browse files Browse the repository at this point in the history
  • Loading branch information
zargony committed Oct 27, 2024
1 parent e92e2d4 commit 6eae898
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions firmware/partitions.csv
Original file line number Diff line number Diff line change
@@ -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,

0 comments on commit 6eae898

Please sign in to comment.