aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-03-02 21:14:58 +0100
committerDario Nieuwenhuis <[email protected]>2021-03-02 21:15:12 +0100
commitd4f2c6cf00b481f5d346bc3a1cd820883c8add23 (patch)
treebfe21da055e7d4000e199cd3f630c2045a6d4944 /embassy-nrf/src
parent7991b05e4cce4f52873f0bb9620ef6d37a46e2e9 (diff)
Remove cargo namespaced-features
Diffstat (limited to 'embassy-nrf/src')
-rw-r--r--embassy-nrf/src/gpiote.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-nrf/src/gpiote.rs b/embassy-nrf/src/gpiote.rs
index 7cc649107..5dc80a639 100644
--- a/embassy-nrf/src/gpiote.rs
+++ b/embassy-nrf/src/gpiote.rs
@@ -4,8 +4,8 @@ use core::ops::Deref;
4use core::pin::Pin; 4use core::pin::Pin;
5use core::ptr; 5use core::ptr;
6use core::task::{Context, Poll}; 6use core::task::{Context, Poll};
7use embassy::traits::gpio::{WaitForHigh, WaitForLow};
8use embassy::interrupt::InterruptExt; 7use embassy::interrupt::InterruptExt;
8use embassy::traits::gpio::{WaitForHigh, WaitForLow};
9use embassy::util::Signal; 9use embassy::util::Signal;
10 10
11use crate::hal::gpio::{Input, Level, Output, Pin as GpioPin, Port}; 11use crate::hal::gpio::{Input, Level, Output, Pin as GpioPin, Port};