diff options
| author | Haobo Gu <[email protected]> | 2025-12-08 17:21:27 +0800 |
|---|---|---|
| committer | Haobo Gu <[email protected]> | 2025-12-08 17:23:47 +0800 |
| commit | 8cf8b2406d4be014d466a9318303a65c5c7ff076 (patch) | |
| tree | fcabea0e4f5800c0bb49a9961951480ec75af2d1 /embassy-nrf/src/lib.rs | |
| parent | b9e467bdfe44e51a8b633040d9fe9cd43c581d36 (diff) | |
feat: add nRF54LM20A support
Signed-off-by: Haobo Gu <[email protected]>
Diffstat (limited to 'embassy-nrf/src/lib.rs')
| -rw-r--r-- | embassy-nrf/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embassy-nrf/src/lib.rs b/embassy-nrf/src/lib.rs index b3a9c19d1..db71dee10 100644 --- a/embassy-nrf/src/lib.rs +++ b/embassy-nrf/src/lib.rs | |||
| @@ -29,6 +29,7 @@ | |||
| 29 | feature = "nrf54l10-app-ns", | 29 | feature = "nrf54l10-app-ns", |
| 30 | feature = "nrf54l05-app-s", | 30 | feature = "nrf54l05-app-s", |
| 31 | feature = "nrf54l05-app-ns", | 31 | feature = "nrf54l05-app-ns", |
| 32 | feature = "nrf54lm20-app-s", | ||
| 32 | feature = "nrf9160-s", | 33 | feature = "nrf9160-s", |
| 33 | feature = "nrf9160-ns", | 34 | feature = "nrf9160-ns", |
| 34 | feature = "nrf9120-s", | 35 | feature = "nrf9120-s", |
| @@ -57,6 +58,7 @@ compile_error!( | |||
| 57 | nrf54l10-app-ns, | 58 | nrf54l10-app-ns, |
| 58 | nrf54l05-app-s, | 59 | nrf54l05-app-s, |
| 59 | nrf54l05-app-ns, | 60 | nrf54l05-app-ns, |
| 61 | nrf54lm20-app-s, | ||
| 60 | nrf9160-s, | 62 | nrf9160-s, |
| 61 | nrf9160-ns, | 63 | nrf9160-ns, |
| 62 | nrf9120-s, | 64 | nrf9120-s, |
| @@ -202,6 +204,7 @@ pub mod wdt; | |||
| 202 | #[cfg_attr(feature = "_nrf54l15-app", path = "chips/nrf54l15_app.rs")] | 204 | #[cfg_attr(feature = "_nrf54l15-app", path = "chips/nrf54l15_app.rs")] |
| 203 | #[cfg_attr(feature = "_nrf54l10-app", path = "chips/nrf54l10_app.rs")] | 205 | #[cfg_attr(feature = "_nrf54l10-app", path = "chips/nrf54l10_app.rs")] |
| 204 | #[cfg_attr(feature = "_nrf54l05-app", path = "chips/nrf54l05_app.rs")] | 206 | #[cfg_attr(feature = "_nrf54l05-app", path = "chips/nrf54l05_app.rs")] |
| 207 | #[cfg_attr(feature = "_nrf54lm20-app", path = "chips/nrf54lm20_app.rs")] | ||
| 205 | #[cfg_attr(feature = "_nrf9160", path = "chips/nrf9160.rs")] | 208 | #[cfg_attr(feature = "_nrf9160", path = "chips/nrf9160.rs")] |
| 206 | #[cfg_attr(feature = "_nrf9120", path = "chips/nrf9120.rs")] | 209 | #[cfg_attr(feature = "_nrf9120", path = "chips/nrf9120.rs")] |
| 207 | mod chip; | 210 | mod chip; |
