My sketch is 995KB. My board is 4MB flash. I need to do OTA. and save as much space as possible for SPIFF for storing log data.
I would like to have 1.5MB or more for SPIFFs. I don't need rollback support
I go through severals post on this but with no clear solutions for my case. Some said two OTA with small Factory partition, while other said I can use a single OTA partitions, and another don't need to use Factory partition.
I use the following csv, it works. but it has only 500k for data.
Code: Select all
# Name, Type, Subtype, Offset, Size
nvs, data, nvs, 0x9000, 0x4000,
otadata, data, ota, 0xd000, 0x2000,
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 1M,
ota_0, app, ota_0, , 1M,
ota_1, app, ota_1, , 1M,
storage, data, spiffs, , 500K,