aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/lib.rs
diff options
context:
space:
mode:
authorErik Bånvik <[email protected]>2024-02-28 22:36:31 +0100
committerErik Bånvik <[email protected]>2024-02-28 22:36:31 +0100
commit4294bc5e4bb191adcdd2daffd77180bb602da720 (patch)
tree1b33da24e4b40683936d50ac7d33b48a4a777ba6 /embassy-nrf/src/lib.rs
parent263d1b024ca7fc3baac0014c26ffc0af57b27c4e (diff)
Added IEEE 802.15.4 radio
Diffstat (limited to 'embassy-nrf/src/lib.rs')
-rw-r--r--embassy-nrf/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-nrf/src/lib.rs b/embassy-nrf/src/lib.rs
index 04a6293a4..132bffa8b 100644
--- a/embassy-nrf/src/lib.rs
+++ b/embassy-nrf/src/lib.rs
@@ -47,7 +47,7 @@ pub mod gpio;
47pub mod gpiote; 47pub mod gpiote;
48 48
49// TODO: tested on other chips 49// TODO: tested on other chips
50#[cfg(any(feature = "nrf52840"))] 50#[cfg(any(feature = "nrf52833", feature = "nrf52840"))]
51pub mod radio; 51pub mod radio;
52 52
53#[cfg(any(feature = "nrf52832", feature = "nrf52833", feature = "nrf52840"))] 53#[cfg(any(feature = "nrf52832", feature = "nrf52833", feature = "nrf52840"))]