Hello,
I tried to ceate a partition table for my esp32 with OTA support
I need a app size of at least 1441792 bytes and also a data (littlefs)
partition.
can you help me with the partition table?
1
# Name, Type, SubType, Offset, Size, Flags
2
nvs, data, nvs, 0x9000, 0x4000
3
otadata, data, ota, 0xd000, 0x2000
4
phy_init, data, phy, 0xf000, 0x1000
5
factory, app, factory, 0x10000, 0x144000
6
ota_0, app, ota_0, 0x160000, 0x144000
7
ota_1, app, ota_1, 0x2A8000, 0x144000
8
nvs_key, data, nvs_keys, 0x3EC000, 0x1000
error is
1
Partition ota_1 invalid: Offset 0x2a8000 is not aligned to 0x10000
according to the espressif forum i need
2 app partitions to perform OTA, either 2x OTA or OTA + factory.
how can i arrange this.