diff options
| author | Ulf Lilleengen <[email protected]> | 2025-11-04 13:10:45 +0100 |
|---|---|---|
| committer | Ulf Lilleengen <[email protected]> | 2025-11-04 13:13:22 +0100 |
| commit | 729a7c2cc5e5fe1d9badb0a0f1c758ba2c57b6aa (patch) | |
| tree | 967f9fcb91f33b80fa7decc25a0c948927d607c0 /embassy-nrf/src/lib.rs | |
| parent | 18a5872a2586335496aec056e24edacef6fd76cb (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.rs | 4 |
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")] |
| 146 | pub mod embassy_net_802154_driver; | 146 | pub mod embassy_net_802154_driver; |
| 147 | 147 | ||
| 148 | #[cfg(feature = "_nrf54l")] | ||
| 149 | pub mod cracen; | ||
| 148 | #[cfg(not(feature = "_nrf54l"))] // TODO | 150 | #[cfg(not(feature = "_nrf54l"))] // TODO |
| 149 | #[cfg(feature = "_nrf5340")] | 151 | #[cfg(feature = "_nrf5340")] |
| 150 | pub mod reset; | 152 | pub 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")))] |
| 153 | pub mod rng; | 155 | pub mod rng; |
| 154 | pub mod rtc; | 156 | pub mod rtc; |
