aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/Cargo.toml
diff options
context:
space:
mode:
authorHaobo Gu <[email protected]>2025-12-08 17:21:27 +0800
committerHaobo Gu <[email protected]>2025-12-08 17:23:47 +0800
commit8cf8b2406d4be014d466a9318303a65c5c7ff076 (patch)
treefcabea0e4f5800c0bb49a9961951480ec75af2d1 /embassy-nrf/Cargo.toml
parentb9e467bdfe44e51a8b633040d9fe9cd43c581d36 (diff)
feat: add nRF54LM20A support
Signed-off-by: Haobo Gu <[email protected]>
Diffstat (limited to 'embassy-nrf/Cargo.toml')
-rw-r--r--embassy-nrf/Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml
index c51af59d2..ee070f0c0 100644
--- a/embassy-nrf/Cargo.toml
+++ b/embassy-nrf/Cargo.toml
@@ -29,6 +29,7 @@ build = [
29 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l10-app-ns", "time", "time-driver-grtc"]}, 29 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l10-app-ns", "time", "time-driver-grtc"]},
30 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l05-app-s", "time", "time-driver-grtc"]}, 30 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l05-app-s", "time", "time-driver-grtc"]},
31 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l05-app-ns", "time", "time-driver-grtc"]}, 31 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l05-app-ns", "time", "time-driver-grtc"]},
32 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54lm20-app-s", "time", "time-driver-grtc"]},
32 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time"]}, 33 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time"]},
33 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time-driver-rtc1"]}, 34 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time-driver-rtc1"]},
34 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time", "time-driver-rtc1"]}, 35 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time", "time-driver-rtc1"]},
@@ -142,6 +143,8 @@ nrf54l10-app-ns = ["_nrf54l10-app", "_ns"]
142nrf54l05-app-s = ["_nrf54l05-app", "_s", "_multi_wdt"] 143nrf54l05-app-s = ["_nrf54l05-app", "_s", "_multi_wdt"]
143## nRF54L05 application core in Non-Secure mode 144## nRF54L05 application core in Non-Secure mode
144nrf54l05-app-ns = ["_nrf54l05-app", "_ns"] 145nrf54l05-app-ns = ["_nrf54l05-app", "_ns"]
146## nRF54LM20 application core in Secure mode
147nrf54lm20-app-s = ["_nrf54lm20-app", "_s", "_multi_wdt"]
145 148
146## nRF9160 in Secure mode 149## nRF9160 in Secure mode
147nrf9160-s = ["_nrf9160", "_s", "_nrf91"] 150nrf9160-s = ["_nrf9160", "_s", "_nrf91"]
@@ -169,6 +172,8 @@ _nrf54l10-app = ["_nrf54l10", "nrf-pac/nrf54l10-app"]
169_nrf54l10 = ["_nrf54l", "_gpio-p1", "_gpio-p2"] 172_nrf54l10 = ["_nrf54l", "_gpio-p1", "_gpio-p2"]
170_nrf54l05-app = ["_nrf54l05", "nrf-pac/nrf54l05-app"] 173_nrf54l05-app = ["_nrf54l05", "nrf-pac/nrf54l05-app"]
171_nrf54l05 = ["_nrf54l", "_gpio-p1", "_gpio-p2"] 174_nrf54l05 = ["_nrf54l", "_gpio-p1", "_gpio-p2"]
175_nrf54lm20-app = ["_nrf54lm20", "nrf-pac/nrf54lm20a-app"]
176_nrf54lm20 = ["_nrf54l", "_gpio-p1", "_gpio-p2"]
172_nrf54l = ["_dppi", "_grtc"] 177_nrf54l = ["_dppi", "_grtc"]
173 178
174_nrf9160 = ["nrf-pac/nrf9160", "_dppi", "_spi-v1"] 179_nrf9160 = ["nrf-pac/nrf9160", "_dppi", "_spi-v1"]