5 releases

new 0.1.4 Nov 15, 2024
0.1.3 Sep 8, 2024
0.1.2 Sep 7, 2024
0.1.1 Jul 22, 2024
0.1.0 Jul 22, 2024

#261 in Hardware support

Download history 7/week @ 2024-07-28 125/week @ 2024-09-01 177/week @ 2024-09-08 27/week @ 2024-09-15 12/week @ 2024-09-22 12/week @ 2024-09-29 7/week @ 2024-10-06 2/week @ 2024-10-13 9/week @ 2024-11-03 98/week @ 2024-11-10

107 downloads per month

MIT license

24KB
404 lines

esp-hal-ota

OTA for esp-hal (no-std).

crates.io MIT license

Limitations

For now only works on esp32c3,esp32s3 (and possibly on esp32s2 - no way of testing it).

Features

  • Obviously OTA updates
  • Dynamic partitions reading (so no macros, no reading from partitions.csv) - fully automatic
  • Checking currently booted partition (using some pointer magic from ESP-IDF)
  • CRC32 verification

Getting started

  • Create partitions.csv file in project root (copy partitions.csv.template file)
  • In your project edit ./.cargo/config.toml file and append -T ./partitions.csv to the runner attribute
  • Optionally append --erase-parts otadata to ./cargo/config.toml to fix some ota issues
[target.xtensa-esp32s3-none-elf]
runner = "espflash flash --monitor -T ./partitions.csv --erase-parts otadata"

Example

To see real-world example look at ./examples and ./simple-ota-server dirs.

let flash_size = 1234; // get it from OTA server
let target_crc = 65436743; // get it from OTA server

let mut ota = Ota::new(FlashStorage::new()).unwrap();
ota.ota_begin(flash_size, target_crc);

let mut buf = [0; 4096];
loop {
    let n = read_next_chunk(&mut buf);
    if n == 0 {
        break;
    }

    let res = ota.ota_write_chunk(&buf[..n]);
    if res == Ok(true) { // end of flash
        if ota.ota_flush(true).is_ok() { // true if you want to verify crc reading flash
            esp_hal::reset::software_reset();
        }
    }

    let progress = (ota.get_ota_progress() * 100) as u8;
    log::info!("progress: {}%", progress);
}

Running example

  • You can compile your .bin file using esp-flash
espflash save-image --chip esp32c3 ./target/riscv32imc-unknown-none-elf/debug/esp-hal-ota-example ../simple-ota-server/firmware.bin

This will generate .bin file from build file for chip.

Todo

  • Fully working library
  • Simple example
  • Better errors
  • Other esp32's (like esp32c3, esp32s2, etc..)
  • Rollbacks

Resources

Dependencies

~105KB