ESP8266/ESP32: inplace firmware upgrade using the image file stored on the file-system
In practice, it would be very useful to be able to upgrade firmware in place using the firmware image file on the file-system. In fact, all mobile devices (like smartphones), IoT devices (like routers, robot cleaners, smart fans and smart lights), can do firmware upgrade from the firmware image file that is downloaded from the cloud and stored on the file-system.
Thanks to @yaota8266, that ESP8266 MicroPython does have the OTA build, however, it is not very useful but very restrictive. In particular, it requires you:
- to press some button to start upgrade. So if the device is installed on the ceiling fan, ceiling light, or inside some big box appliance, it is very inconvenient to start firmware upgrade
- to set Wifi credentials into his system which should be handled by the software web server part, instead of the OTA module (quite a lot of redundancy)
- Moreover, it has to pre-allocate 2 big flash spaces for the firmware, where only 1 is active at a time. This wastes too much executable flash space (only the 1st 1MB). As MicroPython grows bigger with more functionalities, 1MB cannot fit 2 copies very soon.
Therefore, the most useful way of doing OTA is to do firmware upgrade from the internal flash storage file-system, triggered by calling a function or upon system reboot.
[ESP8266] Firmware OTA update
Hello,
I'm working over OTA update of the device using firmware files.
The process is following
- Download file to filesystem
- Somehow verify it
- Write downloaded file to the start of the flash
I'm done with first two steps but I'm facing issue with writing firmware to flash. I see that flash and firmware file are almost the same except very first parts.
I hope you can point me at wich point I should write file to the flash.
I mean what are offset in bytes from the 0 address.
Thanks in advance.