summaryrefslogtreecommitdiff
path: root/tests/rp/src/bin/gpio_async.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <dirbaio@dirbaio.net>2022-09-22 16:48:35 +0200
committerDario Nieuwenhuis <dirbaio@dirbaio.net>2022-09-22 16:48:35 +0200
commit10d1ad2343825388277dc54db649c9349a0b6de8 (patch)
tree87d150bf3398969d4e8cec4f014e8d5ea043ec3a /tests/rp/src/bin/gpio_async.rs
parenta0487380da42a71ab7532e2bc1befd1039c18a78 (diff)
downloadembassy-10d1ad2343825388277dc54db649c9349a0b6de8.zip
Replace futures::future::join -> embassy_futures::join::join.
Diffstat (limited to 'tests/rp/src/bin/gpio_async.rs')
-rw-r--r--tests/rp/src/bin/gpio_async.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rp/src/bin/gpio_async.rs b/tests/rp/src/bin/gpio_async.rs
index 1eeaac1f..f20b8fcb 100644
--- a/tests/rp/src/bin/gpio_async.rs
+++ b/tests/rp/src/bin/gpio_async.rs
@@ -4,9 +4,9 @@
use defmt::{assert, *};
use embassy_executor::Spawner;
+use embassy_futures::join::join;
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 _};
#[embassy_executor::main]