aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/stm32f3/src
diff options
context:
space:
mode:
authorRasmus Melchior Jacobsen <[email protected]>2023-05-30 14:05:38 +0200
committerRasmus Melchior Jacobsen <[email protected]>2023-05-30 14:05:38 +0200
commitb527cc98af97e43186a9676b78b4b7f7ece1fa86 (patch)
treeb94baebd21987ed76f37c8791b4427489b2dfee9 /examples/boot/application/stm32f3/src
parent36e00caf4dc70905b735531c0d5634addd026954 (diff)
Formatting
Diffstat (limited to 'examples/boot/application/stm32f3/src')
-rw-r--r--examples/boot/application/stm32f3/src/bin/a.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/boot/application/stm32f3/src/bin/a.rs b/examples/boot/application/stm32f3/src/bin/a.rs
index 6a5c276fd..c94676f09 100644
--- a/examples/boot/application/stm32f3/src/bin/a.rs
+++ b/examples/boot/application/stm32f3/src/bin/a.rs
@@ -5,12 +5,12 @@
5#[cfg(feature = "defmt-rtt")] 5#[cfg(feature = "defmt-rtt")]
6use defmt_rtt::*; 6use defmt_rtt::*;
7use embassy_boot_stm32::{AlignedBuffer, FirmwareUpdater, FirmwareUpdaterConfig}; 7use embassy_boot_stm32::{AlignedBuffer, FirmwareUpdater, FirmwareUpdaterConfig};
8use embassy_sync::mutex::Mutex;
9use embassy_embedded_hal::adapter::BlockingAsync; 8use embassy_embedded_hal::adapter::BlockingAsync;
10use embassy_executor::Spawner; 9use embassy_executor::Spawner;
11use embassy_stm32::exti::ExtiInput; 10use embassy_stm32::exti::ExtiInput;
12use embassy_stm32::flash::{Flash, WRITE_SIZE}; 11use embassy_stm32::flash::{Flash, WRITE_SIZE};
13use embassy_stm32::gpio::{Input, Level, Output, Pull, Speed}; 12use embassy_stm32::gpio::{Input, Level, Output, Pull, Speed};
13use embassy_sync::mutex::Mutex;
14use panic_reset as _; 14use panic_reset as _;
15 15
16static APP_B: &[u8] = include_bytes!("../../b.bin"); 16static APP_B: &[u8] = include_bytes!("../../b.bin");