Fix partition table.

This commit is contained in:
RobotMan2412 2022-06-28 10:34:49 +02:00
parent a56e6942f1
commit 43c7ca1175
2 changed files with 5 additions and 10 deletions

View file

@ -1,9 +1,4 @@
# ESP-IDF Partition Table
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0xA000, 12K,
otadata, data, ota, 0xD000, 8K,
phy_init, data, phy, 0xF000, 4K,
ota_0, 0, ota_0, 0x10000, 1600K,
ota_1, 0, ota_1, 0x1A0000, 1600K,
appfs, 0x43, 3, 0x330000, 8000K,
locfd, data, fat, 0xB00000, 5120K,
nvs, data, nvs, 0x9000, 16K,
phy_init, data, phy, 0xF000, 4K,
factory, app, factory, , 5M,
locfd, data, fat, , 10M,

1 # nvs ESP-IDF Partition Table data nvs 0x9000 16K
2 # phy_init Name, data phy SubType, 0xF000 Offset, 4K Size, Type, Flags
3 factory nvs, app factory nvs, 0xA000, 5M 12K, data,
4 locfd otadata, data fat ota, 0xD000, 10M 8K, data,
phy_init, phy, 0xF000, 4K, data,
ota_0, ota_0, 0x10000, 1600K, 0,
ota_1, ota_1, 0x1A0000, 1600K, 0,
appfs, 3, 0x330000, 8000K, 0x43,
locfd, fat, 0xB00000, 5120K, data,

View file

@ -265,7 +265,7 @@ CONFIG_ESPTOOLPY_MONITOR_BAUD=115200
CONFIG_PARTITION_TABLE_CUSTOM=y
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
CONFIG_PARTITION_TABLE_FILENAME="partitions.csv"
CONFIG_PARTITION_TABLE_OFFSET=0x9000
CONFIG_PARTITION_TABLE_OFFSET=0x8000
CONFIG_PARTITION_TABLE_MD5=y
# end of Partition Table