summaryrefslogtreecommitdiff
path: root/tests/rp/src/bin/gpio_async.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rp/src/bin/gpio_async.rs')
-rw-r--r--tests/rp/src/bin/gpio_async.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rp/src/bin/gpio_async.rs b/tests/rp/src/bin/gpio_async.rs
index d8878687..1eeaac1f 100644
--- a/tests/rp/src/bin/gpio_async.rs
+++ b/tests/rp/src/bin/gpio_async.rs
@@ -3,9 +3,9 @@
#![feature(type_alias_impl_trait)]
use defmt::{assert, *};
-use embassy_executor::executor::Spawner;
-use embassy_executor::time::{Duration, Instant, Timer};
+use embassy_executor::Spawner;
use embassy_rp::gpio::{Input, Level, Output, Pull};
+use embassy_time::{Duration, Instant, Timer};
use futures::future::join;
use {defmt_rtt as _, panic_probe as _};