aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/nrf/src/bin
diff options
context:
space:
mode:
Diffstat (limited to 'examples/boot/nrf/src/bin')
-rw-r--r--examples/boot/nrf/src/bin/a.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/boot/nrf/src/bin/a.rs b/examples/boot/nrf/src/bin/a.rs
index 7368e36ce..d45d0ff34 100644
--- a/examples/boot/nrf/src/bin/a.rs
+++ b/examples/boot/nrf/src/bin/a.rs
@@ -5,13 +5,13 @@
5#![feature(type_alias_impl_trait)] 5#![feature(type_alias_impl_trait)]
6 6
7use embassy_boot_nrf::FirmwareUpdater; 7use embassy_boot_nrf::FirmwareUpdater;
8use embassy_embedded_hal::adapter::BlockingAsync;
8use embassy_nrf::{ 9use embassy_nrf::{
9 gpio::{Input, Pull}, 10 gpio::{Input, Pull},
10 gpio::{Level, Output, OutputDrive}, 11 gpio::{Level, Output, OutputDrive},
11 nvmc::Nvmc, 12 nvmc::Nvmc,
12 Peripherals, 13 Peripherals,
13}; 14};
14use embassy_traits::adapter::BlockingAsync;
15use panic_reset as _; 15use panic_reset as _;
16 16
17static APP_B: &[u8] = include_bytes!("../../b.bin"); 17static APP_B: &[u8] = include_bytes!("../../b.bin");