aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/lib.rs
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2025-11-04 13:10:45 +0100
committerUlf Lilleengen <[email protected]>2025-11-04 13:13:22 +0100
commit729a7c2cc5e5fe1d9badb0a0f1c758ba2c57b6aa (patch)
tree967f9fcb91f33b80fa7decc25a0c948927d607c0 /embassy-nrf/src/lib.rs
parent18a5872a2586335496aec056e24edacef6fd76cb (diff)
feat: initial support for nrf54 CRACEN peripheral
The CRACEN peripheral supports random number generation, digest and key generation, and key exchange. The initial support implements random number generation.
Diffstat (limited to 'embassy-nrf/src/lib.rs')
-rw-r--r--embassy-nrf/src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/embassy-nrf/src/lib.rs b/embassy-nrf/src/lib.rs
index 4c3b92a83..530964107 100644
--- a/embassy-nrf/src/lib.rs
+++ b/embassy-nrf/src/lib.rs
@@ -145,10 +145,12 @@ pub mod radio;
145#[cfg(feature = "_net-driver")] 145#[cfg(feature = "_net-driver")]
146pub mod embassy_net_802154_driver; 146pub mod embassy_net_802154_driver;
147 147
148#[cfg(feature = "_nrf54l")]
149pub mod cracen;
148#[cfg(not(feature = "_nrf54l"))] // TODO 150#[cfg(not(feature = "_nrf54l"))] // TODO
149#[cfg(feature = "_nrf5340")] 151#[cfg(feature = "_nrf5340")]
150pub mod reset; 152pub mod reset;
151#[cfg(not(feature = "_nrf54l"))] // TODO 153#[cfg(not(feature = "_nrf54l"))]
152#[cfg(not(any(feature = "_nrf5340-app", feature = "_nrf91")))] 154#[cfg(not(any(feature = "_nrf5340-app", feature = "_nrf91")))]
153pub mod rng; 155pub mod rng;
154pub mod rtc; 156pub mod rtc;