aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/rp/src/bin/b.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/boot/application/rp/src/bin/b.rs')
-rw-r--r--examples/boot/application/rp/src/bin/b.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/boot/application/rp/src/bin/b.rs b/examples/boot/application/rp/src/bin/b.rs
index 47dec329c..1eca5b4a2 100644
--- a/examples/boot/application/rp/src/bin/b.rs
+++ b/examples/boot/application/rp/src/bin/b.rs
@@ -4,7 +4,7 @@
4 4
5use embassy_executor::Spawner; 5use embassy_executor::Spawner;
6use embassy_rp::gpio; 6use embassy_rp::gpio;
7use embassy_time::{Duration, Timer}; 7use embassy_time::Timer;
8use gpio::{Level, Output}; 8use gpio::{Level, Output};
9use {defmt_rtt as _, panic_reset as _}; 9use {defmt_rtt as _, panic_reset as _};
10 10
@@ -15,9 +15,9 @@ async fn main(_s: Spawner) {
15 15
16 loop { 16 loop {
17 led.set_high(); 17 led.set_high();
18 Timer::after(Duration::from_millis(100)).await; 18 Timer::after_millis(100).await;
19 19
20 led.set_low(); 20 led.set_low();
21 Timer::after(Duration::from_millis(100)).await; 21 Timer::after_millis(100).await;
22 } 22 }
23} 23}