aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/stm32h7/src/bin/a.rs
diff options
context:
space:
mode:
authorWillaWillNot <[email protected]>2025-11-21 20:35:54 -0500
committerWillaWillNot <[email protected]>2025-11-21 20:44:07 -0500
commit54d57bc72f0e2b3eef0fa92d0b730ed6efd7bcaa (patch)
tree9e70765685114955ce4043a65acb0c09c022aec9 /examples/boot/application/stm32h7/src/bin/a.rs
parenta5f7764eb4f01a0668cbd3b534cde486b97f5ba4 (diff)
Fixed broken examples/formatting reported by CI
Diffstat (limited to 'examples/boot/application/stm32h7/src/bin/a.rs')
-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 _;