Add F7 flash and bootloader support
This commit is contained in:
		
							
								
								
									
										44
									
								
								examples/boot/stm32f7/src/bin/a.rs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								examples/boot/stm32f7/src/bin/a.rs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,44 @@
 | 
			
		||||
#![no_std]
 | 
			
		||||
#![no_main]
 | 
			
		||||
#![feature(type_alias_impl_trait)]
 | 
			
		||||
 | 
			
		||||
use embassy_boot_stm32::FirmwareUpdater;
 | 
			
		||||
use embassy_stm32::exti::ExtiInput;
 | 
			
		||||
use embassy_stm32::flash::Flash;
 | 
			
		||||
use embassy_stm32::gpio::{Input, Level, Output, Pull, Speed};
 | 
			
		||||
use embassy_stm32::Peripherals;
 | 
			
		||||
use embassy_traits::adapter::BlockingAsync;
 | 
			
		||||
use panic_reset as _;
 | 
			
		||||
 | 
			
		||||
#[cfg(feature = "defmt-rtt")]
 | 
			
		||||
use defmt_rtt::*;
 | 
			
		||||
 | 
			
		||||
static APP_B: &[u8] = include_bytes!("../../b.bin");
 | 
			
		||||
 | 
			
		||||
#[embassy::main]
 | 
			
		||||
async fn main(_s: embassy::executor::Spawner, p: Peripherals) {
 | 
			
		||||
    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.PB7, 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; 256 * 1024] = [0; 256 * 1024];
 | 
			
		||||
    for chunk in APP_B.chunks(256 * 1024) {
 | 
			
		||||
        buf[..chunk.len()].copy_from_slice(chunk);
 | 
			
		||||
        updater
 | 
			
		||||
            .write_firmware(offset, &buf, &mut flash, 2048)
 | 
			
		||||
            .await
 | 
			
		||||
            .unwrap();
 | 
			
		||||
        offset += chunk.len();
 | 
			
		||||
    }
 | 
			
		||||
    updater.update(&mut flash).await.unwrap();
 | 
			
		||||
    led.set_low();
 | 
			
		||||
    cortex_m::peripheral::SCB::sys_reset();
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										27
									
								
								examples/boot/stm32f7/src/bin/b.rs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								examples/boot/stm32f7/src/bin/b.rs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,27 @@
 | 
			
		||||
#![no_std]
 | 
			
		||||
#![no_main]
 | 
			
		||||
#![feature(type_alias_impl_trait)]
 | 
			
		||||
 | 
			
		||||
use embassy::executor::Spawner;
 | 
			
		||||
use embassy::time::{Duration, Timer};
 | 
			
		||||
use embassy_stm32::gpio::{Level, Output, Speed};
 | 
			
		||||
use embassy_stm32::Peripherals;
 | 
			
		||||
use panic_reset as _;
 | 
			
		||||
 | 
			
		||||
#[cfg(feature = "defmt-rtt")]
 | 
			
		||||
use defmt_rtt::*;
 | 
			
		||||
 | 
			
		||||
#[embassy::main]
 | 
			
		||||
async fn main(_spawner: Spawner, p: Peripherals) {
 | 
			
		||||
    Timer::after(Duration::from_millis(300)).await;
 | 
			
		||||
    let mut led = Output::new(p.PB7, Level::High, Speed::Low);
 | 
			
		||||
    led.set_high();
 | 
			
		||||
 | 
			
		||||
    loop {
 | 
			
		||||
        led.set_high();
 | 
			
		||||
        Timer::after(Duration::from_millis(500)).await;
 | 
			
		||||
 | 
			
		||||
        led.set_low();
 | 
			
		||||
        Timer::after(Duration::from_millis(500)).await;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user