OTA (Over-the-air) updates planned for release? #3886
-
Hi, Is there planned official support for over the air updates (OTA) for the esp-hal project? I found some independent resources, has someone used them with success? https://docs.rs/esp-hal-ota/latest/esp_hal_ota/index.html //Kyle |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
We some support in esp-bootloader-esp-idf (since it's highly dependent on the bootloader used) We also have an example: https://github.com/esp-rs/esp-hal/blob/main/examples/src/bin/ota_update.rs It's a bit more low-level than the mentioned crates but something can be built upon that |
Beta Was this translation helpful? Give feedback.
-
I am using esp-hal-ota and it's working well. |
Beta Was this translation helpful? Give feedback.
We some support in esp-bootloader-esp-idf (since it's highly dependent on the bootloader used)
We also have an example: https://github.com/esp-rs/esp-hal/blob/main/examples/src/bin/ota_update.rs
It's a bit more low-level than the mentioned crates but something can be built upon that