aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaitlyn Kenwell <[email protected]>2023-12-13 16:08:20 -0500
committerKaitlyn Kenwell <[email protected]>2023-12-13 16:08:20 -0500
commit702d2a1a193985c9b8da6fc5e532ac55b5485464 (patch)
tree756dac392b4895c2e74ec2249f51a289d5a9677a
parentc2942f2727739d8972ad211721b1bb1804fb7b4a (diff)
Formatting fixes, add example using stm32wb55
-rw-r--r--embassy-boot/boot/src/firmware_updater/asynch.rs2
-rw-r--r--embassy-boot/boot/src/firmware_updater/blocking.rs2
-rw-r--r--examples/boot-usb-dfu/.cargo/config.toml9
-rw-r--r--examples/boot-usb-dfu/application/stm32wb/.cargo/config.toml9
-rw-r--r--examples/boot-usb-dfu/application/stm32wb/Cargo.toml32
-rw-r--r--examples/boot-usb-dfu/application/stm32wb/README.md29
-rw-r--r--examples/boot-usb-dfu/application/stm32wb/build.rs37
-rw-r--r--examples/boot-usb-dfu/application/stm32wb/memory.x15
-rw-r--r--examples/boot-usb-dfu/application/stm32wb/src/main.rs64
-rw-r--r--examples/boot-usb-dfu/bootloader/stm32wb/Cargo.toml63
-rw-r--r--examples/boot-usb-dfu/bootloader/stm32wb/README.md11
-rw-r--r--examples/boot-usb-dfu/bootloader/stm32wb/build.rs27
-rw-r--r--examples/boot-usb-dfu/bootloader/stm32wb/memory.x18
-rw-r--r--examples/boot-usb-dfu/bootloader/stm32wb/src/main.rs95
14 files changed, 411 insertions, 2 deletions
diff --git a/embassy-boot/boot/src/firmware_updater/asynch.rs b/embassy-boot/boot/src/firmware_updater/asynch.rs
index 0a3cbc136..82e99965b 100644
--- a/embassy-boot/boot/src/firmware_updater/asynch.rs
+++ b/embassy-boot/boot/src/firmware_updater/asynch.rs
@@ -6,7 +6,7 @@ use embassy_sync::blocking_mutex::raw::NoopRawMutex;
6use embedded_storage_async::nor_flash::NorFlash; 6use embedded_storage_async::nor_flash::NorFlash;
7 7
8use super::FirmwareUpdaterConfig; 8use super::FirmwareUpdaterConfig;
9use crate::{FirmwareUpdaterError, State, BOOT_MAGIC, STATE_ERASE_VALUE, SWAP_MAGIC, DFU_DETACH_MAGIC}; 9use crate::{FirmwareUpdaterError, State, BOOT_MAGIC, DFU_DETACH_MAGIC, STATE_ERASE_VALUE, SWAP_MAGIC};
10 10
11/// FirmwareUpdater is an application API for interacting with the BootLoader without the ability to 11/// FirmwareUpdater is an application API for interacting with the BootLoader without the ability to
12/// 'mess up' the internal bootloader state 12/// 'mess up' the internal bootloader state
diff --git a/embassy-boot/boot/src/firmware_updater/blocking.rs b/embassy-boot/boot/src/firmware_updater/blocking.rs
index b2a633d1e..ae4179ba3 100644
--- a/embassy-boot/boot/src/firmware_updater/blocking.rs
+++ b/embassy-boot/boot/src/firmware_updater/blocking.rs
@@ -6,7 +6,7 @@ use embassy_sync::blocking_mutex::raw::NoopRawMutex;
6use embedded_storage::nor_flash::NorFlash; 6use embedded_storage::nor_flash::NorFlash;
7 7
8use super::FirmwareUpdaterConfig; 8use super::FirmwareUpdaterConfig;
9use crate::{FirmwareUpdaterError, State, BOOT_MAGIC, STATE_ERASE_VALUE, SWAP_MAGIC, DFU_DETACH_MAGIC}; 9use crate::{FirmwareUpdaterError, State, BOOT_MAGIC, DFU_DETACH_MAGIC, STATE_ERASE_VALUE, SWAP_MAGIC};
10 10
11/// Blocking FirmwareUpdater is an application API for interacting with the BootLoader without the ability to 11/// Blocking FirmwareUpdater is an application API for interacting with the BootLoader without the ability to
12/// 'mess up' the internal bootloader state 12/// 'mess up' the internal bootloader state
diff --git a/examples/boot-usb-dfu/.cargo/config.toml b/examples/boot-usb-dfu/.cargo/config.toml
new file mode 100644
index 000000000..de3a814f7
--- /dev/null
+++ b/examples/boot-usb-dfu/.cargo/config.toml
@@ -0,0 +1,9 @@
1[unstable]
2build-std = ["core"]
3build-std-features = ["panic_immediate_abort"]
4
5[build]
6target = "thumbv7em-none-eabi"
7
8[env]
9DEFMT_LOG = "trace"
diff --git a/examples/boot-usb-dfu/application/stm32wb/.cargo/config.toml b/examples/boot-usb-dfu/application/stm32wb/.cargo/config.toml
new file mode 100644
index 000000000..4f8094ff2
--- /dev/null
+++ b/examples/boot-usb-dfu/application/stm32wb/.cargo/config.toml
@@ -0,0 +1,9 @@
1[target.'cfg(all(target_arch = "arm", target_os = "none"))']
2# replace your chip as listed in `probe-rs chip list`
3runner = "probe-rs run --chip STM32WLE5JCIx"
4
5[build]
6target = "thumbv7em-none-eabihf"
7
8[env]
9DEFMT_LOG = "trace"
diff --git a/examples/boot-usb-dfu/application/stm32wb/Cargo.toml b/examples/boot-usb-dfu/application/stm32wb/Cargo.toml
new file mode 100644
index 000000000..0a41c0648
--- /dev/null
+++ b/examples/boot-usb-dfu/application/stm32wb/Cargo.toml
@@ -0,0 +1,32 @@
1[package]
2edition = "2021"
3name = "embassy-boot-stm32wl-examples"
4version = "0.1.0"
5license = "MIT OR Apache-2.0"
6
7[dependencies]
8embassy-sync = { version = "0.5.0", path = "../../../../embassy-sync" }
9embassy-executor = { version = "0.4.0", path = "../../../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "nightly", "integrated-timers"] }
10embassy-time = { version = "0.2", path = "../../../../embassy-time", features = [ "tick-hz-32_768"] }
11embassy-stm32 = { version = "0.1.0", path = "../../../../embassy-stm32", features = ["stm32wb55rg", "time-driver-any", "exti"] }
12embassy-boot-stm32 = { version = "0.1.0", path = "../../../../embassy-boot/stm32", features = [] }
13embassy-embedded-hal = { version = "0.1.0", path = "../../../../embassy-embedded-hal" }
14embassy-usb = { version = "0.1.0", path = "../../../../embassy-usb" }
15embassy-usb-dfu = { version = "0.1.0", path = "../../../../embassy-usb-dfu", features = ["application"] }
16
17defmt = { version = "0.3", optional = true }
18defmt-rtt = { version = "0.4", optional = true }
19panic-reset = { version = "0.1.1" }
20embedded-hal = { version = "0.2.6" }
21
22cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] }
23cortex-m-rt = "0.7.0"
24
25[features]
26defmt = [
27 "dep:defmt",
28 "embassy-stm32/defmt",
29 "embassy-boot-stm32/defmt",
30 "embassy-sync/defmt",
31]
32skip-include = []
diff --git a/examples/boot-usb-dfu/application/stm32wb/README.md b/examples/boot-usb-dfu/application/stm32wb/README.md
new file mode 100644
index 000000000..c8dce0387
--- /dev/null
+++ b/examples/boot-usb-dfu/application/stm32wb/README.md
@@ -0,0 +1,29 @@
1# Examples using bootloader
2
3Example for STM32WL demonstrating the bootloader. The example consists of application binaries, 'a'
4which allows you to press a button to start the DFU process, and 'b' which is the updated
5application.
6
7
8## Prerequisites
9
10* `cargo-binutils`
11* `cargo-flash`
12* `embassy-boot-stm32`
13
14## Usage
15
16```
17# Flash bootloader
18cargo flash --manifest-path ../../bootloader/stm32/Cargo.toml --release --features embassy-stm32/stm32wl55jc-cm4 --chip STM32WLE5JCIx
19# Build 'b'
20cargo build --release --bin b
21# Generate binary for 'b'
22cargo objcopy --release --bin b -- -O binary b.bin
23```
24
25# Flash `a` (which includes b.bin)
26
27```
28cargo flash --release --bin a --chip STM32WLE5JCIx
29```
diff --git a/examples/boot-usb-dfu/application/stm32wb/build.rs b/examples/boot-usb-dfu/application/stm32wb/build.rs
new file mode 100644
index 000000000..e1da69328
--- /dev/null
+++ b/examples/boot-usb-dfu/application/stm32wb/build.rs
@@ -0,0 +1,37 @@
1//! This build script copies the `memory.x` file from the crate root into
2//! a directory where the linker can always find it at build time.
3//! For many projects this is optional, as the linker always searches the
4//! project root directory -- wherever `Cargo.toml` is. However, if you
5//! are using a workspace or have a more complicated build setup, this
6//! build script becomes required. Additionally, by requesting that
7//! Cargo re-run the build script whenever `memory.x` is changed,
8//! updating `memory.x` ensures a rebuild of the application with the
9//! new memory settings.
10
11use std::env;
12use std::fs::File;
13use std::io::Write;
14use std::path::PathBuf;
15
16fn main() {
17 // Put `memory.x` in our output directory and ensure it's
18 // on the linker search path.
19 let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
20 File::create(out.join("memory.x"))
21 .unwrap()
22 .write_all(include_bytes!("memory.x"))
23 .unwrap();
24 println!("cargo:rustc-link-search={}", out.display());
25
26 // By default, Cargo will re-run a build script whenever
27 // any file in the project changes. By specifying `memory.x`
28 // here, we ensure the build script is only re-run when
29 // `memory.x` is changed.
30 println!("cargo:rerun-if-changed=memory.x");
31
32 println!("cargo:rustc-link-arg-bins=--nmagic");
33 println!("cargo:rustc-link-arg-bins=-Tlink.x");
34 if env::var("CARGO_FEATURE_DEFMT").is_ok() {
35 println!("cargo:rustc-link-arg-bins=-Tdefmt.x");
36 }
37}
diff --git a/examples/boot-usb-dfu/application/stm32wb/memory.x b/examples/boot-usb-dfu/application/stm32wb/memory.x
new file mode 100644
index 000000000..f51875766
--- /dev/null
+++ b/examples/boot-usb-dfu/application/stm32wb/memory.x
@@ -0,0 +1,15 @@
1MEMORY
2{
3 /* NOTE 1 K = 1 KiBi = 1024 bytes */
4 BOOTLOADER : ORIGIN = 0x08000000, LENGTH = 24K
5 BOOTLOADER_STATE : ORIGIN = 0x08006000, LENGTH = 4K
6 FLASH : ORIGIN = 0x08008000, LENGTH = 32K
7 DFU : ORIGIN = 0x08010000, LENGTH = 36K
8 RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 32K
9}
10
11__bootloader_state_start = ORIGIN(BOOTLOADER_STATE) - ORIGIN(BOOTLOADER);
12__bootloader_state_end = ORIGIN(BOOTLOADER_STATE) + LENGTH(BOOTLOADER_STATE) - ORIGIN(BOOTLOADER);
13
14__bootloader_dfu_start = ORIGIN(DFU) - ORIGIN(BOOTLOADER);
15__bootloader_dfu_end = ORIGIN(DFU) + LENGTH(DFU) - ORIGIN(BOOTLOADER);
diff --git a/examples/boot-usb-dfu/application/stm32wb/src/main.rs b/examples/boot-usb-dfu/application/stm32wb/src/main.rs
new file mode 100644
index 000000000..f03003ffe
--- /dev/null
+++ b/examples/boot-usb-dfu/application/stm32wb/src/main.rs
@@ -0,0 +1,64 @@
1#![no_std]
2#![no_main]
3#![feature(type_alias_impl_trait)]
4
5use core::cell::RefCell;
6
7#[cfg(feature = "defmt-rtt")]
8use defmt_rtt::*;
9use embassy_boot_stm32::{AlignedBuffer, BlockingFirmwareUpdater, FirmwareUpdaterConfig};
10use embassy_executor::Spawner;
11use embassy_stm32::flash::{Flash, WRITE_SIZE};
12use embassy_stm32::rcc::WPAN_DEFAULT;
13use embassy_stm32::usb::{self, Driver};
14use embassy_stm32::{bind_interrupts, peripherals};
15use embassy_sync::blocking_mutex::Mutex;
16use embassy_time::Duration;
17use embassy_usb::Builder;
18use embassy_usb_dfu::consts::DfuAttributes;
19use embassy_usb_dfu::{usb_dfu, Control};
20use panic_reset as _;
21
22bind_interrupts!(struct Irqs {
23 USB_LP => usb::InterruptHandler<peripherals::USB>;
24});
25
26#[embassy_executor::main]
27async fn main(_spawner: Spawner) {
28 let mut config = embassy_stm32::Config::default();
29 config.rcc = WPAN_DEFAULT;
30 let p = embassy_stm32::init(config);
31 let flash = Flash::new_blocking(p.FLASH);
32 let flash = Mutex::new(RefCell::new(flash));
33
34 let config = FirmwareUpdaterConfig::from_linkerfile_blocking(&flash);
35 let mut magic = AlignedBuffer([0; WRITE_SIZE]);
36 let mut updater = BlockingFirmwareUpdater::new(config, &mut magic.0);
37 updater.mark_booted().expect("Failed to mark booted");
38
39 let driver = Driver::new(p.USB, Irqs, p.PA12, p.PA11);
40 let mut config = embassy_usb::Config::new(0xc0de, 0xcafe);
41 config.manufacturer = Some("Embassy");
42 config.product = Some("USB-DFU Runtime example");
43 config.serial_number = Some("1235678");
44
45 let mut device_descriptor = [0; 256];
46 let mut config_descriptor = [0; 256];
47 let mut bos_descriptor = [0; 256];
48 let mut control_buf = [0; 64];
49 let mut state = Control::new(updater, DfuAttributes::CAN_DOWNLOAD);
50 let mut builder = Builder::new(
51 driver,
52 config,
53 &mut device_descriptor,
54 &mut config_descriptor,
55 &mut bos_descriptor,
56 &mut [],
57 &mut control_buf,
58 );
59
60 usb_dfu::<_, _, _>(&mut builder, &mut state, Duration::from_millis(2500));
61
62 let mut dev = builder.build();
63 dev.run().await
64}
diff --git a/examples/boot-usb-dfu/bootloader/stm32wb/Cargo.toml b/examples/boot-usb-dfu/bootloader/stm32wb/Cargo.toml
new file mode 100644
index 000000000..774a8223d
--- /dev/null
+++ b/examples/boot-usb-dfu/bootloader/stm32wb/Cargo.toml
@@ -0,0 +1,63 @@
1[package]
2edition = "2021"
3name = "stm32-bootloader-example"
4version = "0.1.0"
5description = "Example bootloader for STM32 chips"
6license = "MIT OR Apache-2.0"
7
8[dependencies]
9defmt = { version = "0.3", optional = true }
10defmt-rtt = { version = "0.4", optional = true }
11
12embassy-stm32 = { path = "../../../../embassy-stm32", features = ["stm32wb55rg"] }
13embassy-boot-stm32 = { path = "../../../../embassy-boot/stm32" }
14cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] }
15embassy-sync = { version = "0.5.0", path = "../../../../embassy-sync" }
16cortex-m-rt = { version = "0.7" }
17embedded-storage = "0.3.1"
18embedded-storage-async = "0.4.0"
19cfg-if = "1.0.0"
20embassy-usb-dfu = { version = "0.1.0", path = "../../../../embassy-usb-dfu", features = ["bootloader"] }
21embassy-usb = { version = "0.1.0", path = "../../../../embassy-usb", default-features = false }
22embassy-futures = { version = "0.1.1", path = "../../../../embassy-futures" }
23
24[features]
25defmt = [
26 "dep:defmt",
27 "embassy-boot-stm32/defmt",
28 "embassy-stm32/defmt",
29 "embassy-usb/defmt",
30 "embassy-usb-dfu/defmt"
31]
32debug = ["defmt-rtt", "defmt"]
33
34[profile.dev]
35debug = 2
36debug-assertions = true
37incremental = false
38opt-level = 'z'
39overflow-checks = true
40
41[profile.release]
42codegen-units = 1
43debug = 2
44debug-assertions = false
45incremental = false
46lto = 'fat'
47opt-level = 'z'
48overflow-checks = false
49
50# do not optimize proc-macro crates = faster builds from scratch
51[profile.dev.build-override]
52codegen-units = 8
53debug = false
54debug-assertions = false
55opt-level = 0
56overflow-checks = false
57
58[profile.release.build-override]
59codegen-units = 8
60debug = false
61debug-assertions = false
62opt-level = 0
63overflow-checks = false
diff --git a/examples/boot-usb-dfu/bootloader/stm32wb/README.md b/examples/boot-usb-dfu/bootloader/stm32wb/README.md
new file mode 100644
index 000000000..a82b730b9
--- /dev/null
+++ b/examples/boot-usb-dfu/bootloader/stm32wb/README.md
@@ -0,0 +1,11 @@
1# Bootloader for STM32
2
3The bootloader uses `embassy-boot` to interact with the flash.
4
5# Usage
6
7Flash the bootloader
8
9```
10cargo flash --features embassy-stm32/stm32wl55jc-cm4 --release --chip STM32WLE5JCIx
11```
diff --git a/examples/boot-usb-dfu/bootloader/stm32wb/build.rs b/examples/boot-usb-dfu/bootloader/stm32wb/build.rs
new file mode 100644
index 000000000..fd605991f
--- /dev/null
+++ b/examples/boot-usb-dfu/bootloader/stm32wb/build.rs
@@ -0,0 +1,27 @@
1use std::env;
2use std::fs::File;
3use std::io::Write;
4use std::path::PathBuf;
5
6fn main() {
7 // Put `memory.x` in our output directory and ensure it's
8 // on the linker search path.
9 let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
10 File::create(out.join("memory.x"))
11 .unwrap()
12 .write_all(include_bytes!("memory.x"))
13 .unwrap();
14 println!("cargo:rustc-link-search={}", out.display());
15
16 // By default, Cargo will re-run a build script whenever
17 // any file in the project changes. By specifying `memory.x`
18 // here, we ensure the build script is only re-run when
19 // `memory.x` is changed.
20 println!("cargo:rerun-if-changed=memory.x");
21
22 println!("cargo:rustc-link-arg-bins=--nmagic");
23 println!("cargo:rustc-link-arg-bins=-Tlink.x");
24 if env::var("CARGO_FEATURE_DEFMT").is_ok() {
25 println!("cargo:rustc-link-arg-bins=-Tdefmt.x");
26 }
27}
diff --git a/examples/boot-usb-dfu/bootloader/stm32wb/memory.x b/examples/boot-usb-dfu/bootloader/stm32wb/memory.x
new file mode 100644
index 000000000..b6f185ef7
--- /dev/null
+++ b/examples/boot-usb-dfu/bootloader/stm32wb/memory.x
@@ -0,0 +1,18 @@
1MEMORY
2{
3 /* NOTE 1 K = 1 KiBi = 1024 bytes */
4 FLASH : ORIGIN = 0x08000000, LENGTH = 24K
5 BOOTLOADER_STATE : ORIGIN = 0x08006000, LENGTH = 4K
6 ACTIVE : ORIGIN = 0x08008000, LENGTH = 32K
7 DFU : ORIGIN = 0x08010000, LENGTH = 36K
8 RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 16K
9}
10
11__bootloader_state_start = ORIGIN(BOOTLOADER_STATE) - ORIGIN(FLASH);
12__bootloader_state_end = ORIGIN(BOOTLOADER_STATE) + LENGTH(BOOTLOADER_STATE) - ORIGIN(FLASH);
13
14__bootloader_active_start = ORIGIN(ACTIVE) - ORIGIN(FLASH);
15__bootloader_active_end = ORIGIN(ACTIVE) + LENGTH(ACTIVE) - ORIGIN(FLASH);
16
17__bootloader_dfu_start = ORIGIN(DFU) - ORIGIN(FLASH);
18__bootloader_dfu_end = ORIGIN(DFU) + LENGTH(DFU) - ORIGIN(FLASH);
diff --git a/examples/boot-usb-dfu/bootloader/stm32wb/src/main.rs b/examples/boot-usb-dfu/bootloader/stm32wb/src/main.rs
new file mode 100644
index 000000000..00a535d35
--- /dev/null
+++ b/examples/boot-usb-dfu/bootloader/stm32wb/src/main.rs
@@ -0,0 +1,95 @@
1#![no_std]
2#![no_main]
3
4use core::cell::RefCell;
5
6use cortex_m_rt::{entry, exception};
7#[cfg(feature = "defmt")]
8use defmt_rtt as _;
9use embassy_boot_stm32::*;
10use embassy_stm32::flash::{Flash, BANK1_REGION, WRITE_SIZE};
11use embassy_stm32::rcc::WPAN_DEFAULT;
12use embassy_stm32::usb::Driver;
13use embassy_stm32::{bind_interrupts, peripherals, usb};
14use embassy_sync::blocking_mutex::Mutex;
15use embassy_usb::Builder;
16use embassy_usb_dfu::consts::DfuAttributes;
17use embassy_usb_dfu::{usb_dfu, Control};
18
19bind_interrupts!(struct Irqs {
20 USB_LP => usb::InterruptHandler<peripherals::USB>;
21});
22
23#[entry]
24fn main() -> ! {
25 let mut config = embassy_stm32::Config::default();
26 config.rcc = WPAN_DEFAULT;
27 let p = embassy_stm32::init(config);
28
29 // Uncomment this if you are debugging the bootloader with debugger/RTT attached,
30 // as it prevents a hard fault when accessing flash 'too early' after boot.
31 /*
32 for i in 0..10000000 {
33 cortex_m::asm::nop();
34 }
35 */
36
37 let layout = Flash::new_blocking(p.FLASH).into_blocking_regions();
38 let flash = Mutex::new(RefCell::new(layout.bank1_region));
39
40 let config = BootLoaderConfig::from_linkerfile_blocking(&flash);
41 let active_offset = config.active.offset();
42 let bl = BootLoader::prepare::<_, _, _, 2048>(config);
43 if bl.state == State::DfuDetach {
44 let driver = Driver::new(p.USB, Irqs, p.PA12, p.PA11);
45 let mut config = embassy_usb::Config::new(0xc0de, 0xcafe);
46 config.manufacturer = Some("Embassy");
47 config.product = Some("USB-DFU Bootloader example");
48 config.serial_number = Some("1235678");
49
50 let fw_config = FirmwareUpdaterConfig::from_linkerfile_blocking(&flash);
51 let mut buffer = AlignedBuffer([0; WRITE_SIZE]);
52 let updater = BlockingFirmwareUpdater::new(fw_config, &mut buffer.0[..]);
53
54 let mut device_descriptor = [0; 256];
55 let mut config_descriptor = [0; 256];
56 let mut bos_descriptor = [0; 256];
57 let mut control_buf = [0; 4096];
58 let mut state = Control::new(updater, DfuAttributes::CAN_DOWNLOAD);
59 let mut builder = Builder::new(
60 driver,
61 config,
62 &mut device_descriptor,
63 &mut config_descriptor,
64 &mut bos_descriptor,
65 &mut [],
66 &mut control_buf,
67 );
68
69 usb_dfu::<_, _, _, 4096>(&mut builder, &mut state);
70
71 let mut dev = builder.build();
72 embassy_futures::block_on(dev.run());
73 }
74
75 unsafe { bl.load(BANK1_REGION.base + active_offset) }
76}
77
78#[no_mangle]
79#[cfg_attr(target_os = "none", link_section = ".HardFault.user")]
80unsafe extern "C" fn HardFault() {
81 cortex_m::peripheral::SCB::sys_reset();
82}
83
84#[exception]
85unsafe fn DefaultHandler(_: i16) -> ! {
86 const SCB_ICSR: *const u32 = 0xE000_ED04 as *const u32;
87 let irqn = core::ptr::read_volatile(SCB_ICSR) as u8 as i16 - 16;
88
89 panic!("DefaultHandler #{:?}", irqn);
90}
91
92#[panic_handler]
93fn panic(_info: &core::panic::PanicInfo) -> ! {
94 cortex_m::asm::udf();
95}