2022-12-01 18:26:22 +01:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
|
|
|
|
|
|
|
use cortex_m_rt::{entry, exception};
|
|
|
|
#[cfg(feature = "defmt")]
|
|
|
|
use defmt_rtt as _;
|
|
|
|
use embassy_boot_rp::*;
|
2023-01-03 22:58:56 +01:00
|
|
|
use embassy_time::Duration;
|
2022-12-01 18:26:22 +01:00
|
|
|
|
|
|
|
const FLASH_SIZE: usize = 2 * 1024 * 1024;
|
|
|
|
|
|
|
|
#[entry]
|
|
|
|
fn main() -> ! {
|
|
|
|
let p = embassy_rp::init(Default::default());
|
|
|
|
|
|
|
|
// Uncomment this if you are debugging the bootloader with debugger/RTT attached,
|
|
|
|
// as it prevents a hard fault when accessing flash 'too early' after boot.
|
|
|
|
/*
|
|
|
|
for i in 0..10000000 {
|
|
|
|
cortex_m::asm::nop();
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
let mut bl: BootLoader = BootLoader::default();
|
2023-01-03 23:34:50 +01:00
|
|
|
let flash = WatchdogFlash::<FLASH_SIZE>::start(p.FLASH, p.WATCHDOG, Duration::from_secs(8));
|
2023-04-04 22:44:21 +02:00
|
|
|
let mut flash = BootFlash::new(flash);
|
2022-12-01 18:26:22 +01:00
|
|
|
let start = bl.prepare(&mut SingleFlashConfig::new(&mut flash));
|
|
|
|
core::mem::drop(flash);
|
|
|
|
|
|
|
|
unsafe { bl.load(start) }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
#[cfg_attr(target_os = "none", link_section = ".HardFault.user")]
|
|
|
|
unsafe extern "C" fn HardFault() {
|
|
|
|
cortex_m::peripheral::SCB::sys_reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[exception]
|
|
|
|
unsafe fn DefaultHandler(_: i16) -> ! {
|
|
|
|
const SCB_ICSR: *const u32 = 0xE000_ED04 as *const u32;
|
|
|
|
let irqn = core::ptr::read_volatile(SCB_ICSR) as u8 as i16 - 16;
|
|
|
|
|
|
|
|
panic!("DefaultHandler #{:?}", irqn);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[panic_handler]
|
|
|
|
fn panic(_info: &core::panic::PanicInfo) -> ! {
|
|
|
|
cortex_m::asm::udf();
|
|
|
|
}
|