aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Bånvik <[email protected]>2024-03-05 11:58:32 +0100
committerErik Bånvik <[email protected]>2024-03-05 11:58:32 +0100
commit5b5d54c0c75e8a7fbe5370af4932c9845f4ce123 (patch)
treeef063bc44b8f2ab60631e820b76b7a173e7ada3c
parent5408f21e993c0f94f04ed0c891b050d9a762289a (diff)
Do not build radio for nrf5340-app
-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 e59a7bd5d..718f229a3 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(not(any(feature = "_nrf9160")))] 50#[cfg(not(any(feature = "_nrf9160", feature = "_nrf5340-app")))]
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"))]