19 lines
721 B
CSV
19 lines
721 B
CSV
# Marine Display — Custom Partition Table
|
|
# Flash size: 8 MB (Waveshare ESP32-S3-Zero has 8 MB flash)
|
|
#
|
|
# Name, Type, SubType, Offset, Size, Flags
|
|
# nvs, data, nvs, 0x9000, 0x5000,
|
|
# otadata, data, ota, 0xe000, 0x2000,
|
|
# app0, app, ota_0, 0x10000, 0x180000,
|
|
# app1, app, ota_1, 0x190000, 0x180000,
|
|
# littlefs, data, spiffs, 0x310000, 0x100000,
|
|
# coredump, data, coredump, 0x410000, 0x10000,
|
|
|
|
|
|
# Name, Type, SubType, Offset, Size, Flags
|
|
nvs,data,nvs,0x9000,0x5000,
|
|
otadata,data,ota,0xE000,0x2000,
|
|
app0,app,ota_0,0x10000,0x140000,
|
|
app1,app,ota_1,0x150000,0x140000,
|
|
spiffs,data,spiffs,0x290000,0x160000,
|
|
coredump,data,coredump,0x3F0000,0x10000, |