Need help using ESP32 flash download tool
Posted: Tue Sep 14, 2021 5:06 am
Hello. I am looking for the most simple method or tool for the customer to flash the ESP32 devices. Ideally, he would need to run a script or some sort of tool that will do everything for him so that it is as simple as possible, he would only need to provide the binary file.
I am now looking into ESP32 flash download tool but I am not fully understanding how to use it. In my project, I am using a custom partition table:
I use OTA and SPIFFS. Could someone please give me a hand and explain to me how do I program a device using a flash download tool?
I am now looking into ESP32 flash download tool but I am not fully understanding how to use it. In my project, I am using a custom partition table:
Code: Select all
nvs, data, nvs, 0x9000, 0x4000,
otadata, data, ota, 0xd000, 0x2000,
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 0x0F0000,
ota_0, app, ota_0, , 0x0F0000
ota_1, app, ota_1, , 0x0F0000,
storage, data, spiffs, , 0x4000,