aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/stm32wl/src/bin/a.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/boot/application/stm32wl/src/bin/a.rs')
-rw-r--r--examples/boot/application/stm32wl/src/bin/a.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/boot/application/stm32wl/src/bin/a.rs b/examples/boot/application/stm32wl/src/bin/a.rs
index dc1eb9bed..14408a90a 100644
--- a/examples/boot/application/stm32wl/src/bin/a.rs
+++ b/examples/boot/application/stm32wl/src/bin/a.rs
@@ -14,8 +14,8 @@ use panic_reset as _;
14 14
15static APP_B: &[u8] = include_bytes!("../../b.bin"); 15static APP_B: &[u8] = include_bytes!("../../b.bin");
16 16
17#[embassy::main] 17#[embassy_executor::main]
18async fn main(_s: embassy::executor::Spawner, p: Peripherals) { 18async fn main(_s: embassy_executor::executor::Spawner, p: Peripherals) {
19 let flash = Flash::unlock(p.FLASH); 19 let flash = Flash::unlock(p.FLASH);
20 let mut flash = BlockingAsync::new(flash); 20 let mut flash = BlockingAsync::new(flash);
21 21