aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/stm32h7
diff options
context:
space:
mode:
Diffstat (limited to 'examples/boot/application/stm32h7')
-rw-r--r--examples/boot/application/stm32h7/src/bin/a.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/boot/application/stm32h7/src/bin/a.rs b/examples/boot/application/stm32h7/src/bin/a.rs
index 00ac89564..ed2d5b89e 100644
--- a/examples/boot/application/stm32h7/src/bin/a.rs
+++ b/examples/boot/application/stm32h7/src/bin/a.rs
@@ -7,11 +7,10 @@ use core::cell::RefCell;
7use defmt_rtt::*; 7use defmt_rtt::*;
8use embassy_boot_stm32::{AlignedBuffer, BlockingFirmwareUpdater, FirmwareUpdaterConfig}; 8use embassy_boot_stm32::{AlignedBuffer, BlockingFirmwareUpdater, FirmwareUpdaterConfig};
9use embassy_executor::Spawner; 9use embassy_executor::Spawner;
10use embassy_stm32::bind_interrupts;
11use embassy_stm32::exti::{self, ExtiInput}; 10use embassy_stm32::exti::{self, ExtiInput};
12use embassy_stm32::flash::{Flash, WRITE_SIZE}; 11use embassy_stm32::flash::{Flash, WRITE_SIZE};
13use embassy_stm32::gpio::{Level, Output, Pull, Speed}; 12use embassy_stm32::gpio::{Level, Output, Pull, Speed};
14use embassy_stm32::interrupt; 13use embassy_stm32::{bind_interrupts, interrupt};
15use embassy_sync::blocking_mutex::Mutex; 14use embassy_sync::blocking_mutex::Mutex;
16use embedded_storage::nor_flash::NorFlash; 15use embedded_storage::nor_flash::NorFlash;
17use panic_reset as _; 16use panic_reset as _;