Hi, this in prepartion for ota updates. The espruino_partition.bin contains these partitions:
factory 0x10000
ota_0 0x200000
When there is a ota type partition the esp-idf checks to see if there is valid code in the partition. At this stage nothing is uploaded to 0x200000, and the data is 0xff.
The esp_ota_get_boot_partition() call checks the ota partition and finds invalid data, so spits out this error.
It could be suppressed and added back when the ota updates are sorted out, however it can be safely ignored.
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Hi, this in prepartion for ota updates. The espruino_partition.bin contains these partitions:
When there is a ota type partition the esp-idf checks to see if there is valid code in the partition. At this stage nothing is uploaded to 0x200000, and the data is 0xff.
The
esp_ota_get_boot_partition()
call checks the ota partition and finds invalid data, so spits out this error.It could be suppressed and added back when the ota updates are sorted out, however it can be safely ignored.