aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/nrf/src/bin/b.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/boot/nrf/src/bin/b.rs')
-rw-r--r--examples/boot/nrf/src/bin/b.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/examples/boot/nrf/src/bin/b.rs b/examples/boot/nrf/src/bin/b.rs
index 18bb6330c..a06c20f8b 100644
--- a/examples/boot/nrf/src/bin/b.rs
+++ b/examples/boot/nrf/src/bin/b.rs
@@ -5,11 +5,8 @@
5#![feature(type_alias_impl_trait)] 5#![feature(type_alias_impl_trait)]
6 6
7use embassy::time::{Duration, Timer}; 7use embassy::time::{Duration, Timer};
8use embassy_nrf::{ 8use embassy_nrf::gpio::{Level, Output, OutputDrive};
9 gpio::{Level, Output, OutputDrive}, 9use embassy_nrf::Peripherals;
10 Peripherals,
11};
12
13use panic_reset as _; 10use panic_reset as _;
14 11
15#[embassy::main] 12#[embassy::main]