aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/stm32l0/src/bin
diff options
context:
space:
mode:
Diffstat (limited to 'examples/boot/application/stm32l0/src/bin')
-rw-r--r--examples/boot/application/stm32l0/src/bin/a.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/boot/application/stm32l0/src/bin/a.rs b/examples/boot/application/stm32l0/src/bin/a.rs
index 6f21d9be0..3f9e6d24e 100644
--- a/examples/boot/application/stm32l0/src/bin/a.rs
+++ b/examples/boot/application/stm32l0/src/bin/a.rs
@@ -6,11 +6,10 @@ use defmt_rtt::*;
6use embassy_boot_stm32::{AlignedBuffer, FirmwareUpdater, FirmwareUpdaterConfig}; 6use embassy_boot_stm32::{AlignedBuffer, FirmwareUpdater, FirmwareUpdaterConfig};
7use embassy_embedded_hal::adapter::BlockingAsync; 7use embassy_embedded_hal::adapter::BlockingAsync;
8use embassy_executor::Spawner; 8use embassy_executor::Spawner;
9use embassy_stm32::bind_interrupts;
10use embassy_stm32::exti::{self, ExtiInput}; 9use embassy_stm32::exti::{self, ExtiInput};
11use embassy_stm32::flash::{Flash, WRITE_SIZE}; 10use embassy_stm32::flash::{Flash, WRITE_SIZE};
12use embassy_stm32::gpio::{Level, Output, Pull, Speed}; 11use embassy_stm32::gpio::{Level, Output, Pull, Speed};
13use embassy_stm32::interrupt; 12use embassy_stm32::{bind_interrupts, interrupt};
14use embassy_sync::mutex::Mutex; 13use embassy_sync::mutex::Mutex;
15use embassy_time::Timer; 14use embassy_time::Timer;
16use panic_reset as _; 15use panic_reset as _;