How to flash OTA directly from a binary?
Posted: Thu Jul 11, 2024 5:04 pm
Can it be done with esptools.py?
Code: Select all
./esptool.py --baud 961200 write_flash 0x10000 firmware.ino.bin
I meant updating over OTA (Over The Air).lbernstone wrote: ↑Thu Jul 11, 2024 9:54 pmSure, you need to know where the OTA partition is located, but you can flash the app0 partition normally located at 0x10000 byCode: Select all
./esptool.py --baud 961200 write_flash 0x10000 firmware.ino.bin
I already use espota.py from my PythonPatcher.lbernstone wrote: ↑Fri Jul 12, 2024 8:52 pmThere are many ways to flash OTA. You will need to be more specific.
https://github.com/esp8266/Arduino/blob ... /espota.py
https://github.com/espressif/arduino-es ... e/examples