fix espressif 32MB partition table

This commit is contained in:
MicroDev 2022-11-18 09:55:44 +05:30
parent 4f2f489df4
commit 90e8f9d4a8
No known key found for this signature in database
GPG Key ID: 2C0867BE60967730

View File

@ -1,10 +1,9 @@
# ESP-IDF Partition Table
# Name, Type, SubType, Offset, Size, Flags
# bootloader.bin,, 0x1000, 32K
# partition table,, 0x8000, 4K
nvs, data, nvs, 0x9000, 20K,
otadata, data, ota, 0xe000, 8K,
ota_0, 0, ota_0, 0x10000, 2048K,
ota_1, 0, ota_1, 0x210000, 2048K,
uf2, app, factory,0x410000, 256K,
user_fs, data, fat, 0x450000, 28362K,
# Name, Type, SubType, Offset, Size
# bootloader, app, boot, 0x1000/0x0, 28/32K
# partition_table, data, table, 0x8000, 4K
nvs, data, nvs, 0x9000, 20K
otadata, data, ota, 0xe000, 8K
ota_0, app, ota_0, 0x10000, 2048K
ota_1, app, ota_1, 0x210000, 2048K
uf2, app, factory, 0x410000, 256K
user_fs, data, fat, 0x450000, 28352K

1 # ESP-IDF Partition Table # Name Type SubType Offset Size
2 # Name, Type, SubType, Offset, Size, Flags # bootloader app boot 0x1000/0x0 28/32K
3 # bootloader.bin,, 0x1000, 32K # partition_table data table 0x8000 4K
4 # partition table,, 0x8000, 4K nvs data nvs 0x9000 20K
5 nvs, data, nvs, 0x9000, 20K, otadata data ota 0xe000 8K
6 otadata, data, ota, 0xe000, 8K, ota_0 app ota_0 0x10000 2048K
7 ota_0, 0, ota_0, 0x10000, 2048K, ota_1 app ota_1 0x210000 2048K
8 ota_1, 0, ota_1, 0x210000, 2048K, uf2 app factory 0x410000 256K
9 uf2, app, factory,0x410000, 256K, user_fs data fat 0x450000 28352K
user_fs, data, fat, 0x450000, 28362K,