# No spiffs partition: every file this firmware reads lives on the SD card, so the # 1408K the Arduino default table reserved for internal flash storage goes to the OTA # slots instead. nvs stays because the WiFi driver keeps its PHY calibration there. # The slots are the same size deliberately: an image that fit one but not the other # would update successfully once and then refuse to. That leaves a 64K tail the app # slots cannot use, which is exactly what coredump wants: without it every boot logs # "No core dump partition found". # Name, Type, SubType, Offset, Size nvs, data, nvs, 0x9000, 0x5000 otadata, data, ota, 0xe000, 0x2000 app0, app, ota_0, 0x10000, 0x1F0000 app1, app, ota_1, 0x200000, 0x1F0000 coredump, data, coredump,0x3F0000, 0x10000