2022-05-06 09:21:29 +02:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
#[cfg(feature = "defmt-rtt")]
|
|
|
|
use defmt_rtt::*;
|
2022-05-06 09:21:29 +02:00
|
|
|
use embassy_boot_stm32::FirmwareUpdater;
|
2022-05-26 18:54:58 +02:00
|
|
|
use embassy_embedded_hal::adapter::BlockingAsync;
|
2022-05-06 09:21:29 +02:00
|
|
|
use embassy_stm32::exti::ExtiInput;
|
|
|
|
use embassy_stm32::flash::Flash;
|
|
|
|
use embassy_stm32::gpio::{Input, Level, Output, Pull, Speed};
|
|
|
|
use embassy_stm32::Peripherals;
|
|
|
|
use panic_reset as _;
|
|
|
|
|
|
|
|
static APP_B: &[u8] = include_bytes!("../../b.bin");
|
|
|
|
|
2022-07-29 21:58:35 +02:00
|
|
|
#[embassy_executor::main]
|
|
|
|
async fn main(_s: embassy_executor::executor::Spawner, p: Peripherals) {
|
2022-05-06 09:21:29 +02:00
|
|
|
let flash = Flash::unlock(p.FLASH);
|
|
|
|
let mut flash = BlockingAsync::new(flash);
|
|
|
|
|
|
|
|
let button = Input::new(p.PC13, Pull::Down);
|
|
|
|
let mut button = ExtiInput::new(button, p.EXTI13);
|
|
|
|
|
|
|
|
let mut led = Output::new(p.PB14, Level::Low, Speed::Low);
|
|
|
|
led.set_high();
|
|
|
|
|
|
|
|
let mut updater = FirmwareUpdater::default();
|
|
|
|
button.wait_for_rising_edge().await;
|
|
|
|
let mut offset = 0;
|
|
|
|
let mut buf: [u8; 128 * 1024] = [0; 128 * 1024];
|
|
|
|
for chunk in APP_B.chunks(128 * 1024) {
|
|
|
|
buf[..chunk.len()].copy_from_slice(chunk);
|
2022-06-12 22:15:44 +02:00
|
|
|
updater.write_firmware(offset, &buf, &mut flash, 2048).await.unwrap();
|
2022-05-06 09:21:29 +02:00
|
|
|
offset += chunk.len();
|
|
|
|
}
|
|
|
|
updater.update(&mut flash).await.unwrap();
|
|
|
|
led.set_low();
|
|
|
|
cortex_m::peripheral::SCB::sys_reset();
|
|
|
|
}
|