aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/stm32f3/src/bin
diff options
context:
space:
mode:
Diffstat (limited to 'examples/boot/application/stm32f3/src/bin')
-rw-r--r--examples/boot/application/stm32f3/src/bin/a.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/boot/application/stm32f3/src/bin/a.rs b/examples/boot/application/stm32f3/src/bin/a.rs
index e42e24885..8e0a6685e 100644
--- a/examples/boot/application/stm32f3/src/bin/a.rs
+++ b/examples/boot/application/stm32f3/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 panic_reset as _; 14use panic_reset as _;
16 15