aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/lib.rs
diff options
context:
space:
mode:
authornerwalt <[email protected]>2025-08-07 09:07:29 -0600
committernerwalt <[email protected]>2025-08-08 09:56:00 -0600
commita165339276e751909a88f685760f4cabb71e50d1 (patch)
tree23aedb8e0913e1f25a45576d51d71214815ba9ee /embassy-nrf/src/lib.rs
parentf2be66a5f94a655696407e2e7bc81c322aab3ea1 (diff)
Adds RRAMC support for the nrf54l15
Adds an Nvmc driver alias for compatibility
Diffstat (limited to 'embassy-nrf/src/lib.rs')
-rw-r--r--embassy-nrf/src/lib.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/embassy-nrf/src/lib.rs b/embassy-nrf/src/lib.rs
index ba8206d13..d3c4b3bb1 100644
--- a/embassy-nrf/src/lib.rs
+++ b/embassy-nrf/src/lib.rs
@@ -98,8 +98,12 @@ pub mod ipc;
98 feature = "_nrf5340-app" 98 feature = "_nrf5340-app"
99))] 99))]
100pub mod nfct; 100pub mod nfct;
101#[cfg(not(feature = "_nrf54l"))] // TODO 101#[cfg(not(feature = "_nrf54l"))]
102pub mod nvmc; 102pub mod nvmc;
103#[cfg(feature = "nrf54l15-app-s")]
104pub mod rramc;
105#[cfg(feature = "nrf54l15-app-s")]
106pub use rramc as nvmc;
103#[cfg(not(feature = "_nrf54l"))] // TODO 107#[cfg(not(feature = "_nrf54l"))] // TODO
104#[cfg(any( 108#[cfg(any(
105 feature = "nrf52810", 109 feature = "nrf52810",