aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-nrf/Cargo.toml')
-rw-r--r--embassy-nrf/Cargo.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml
index 05c88509a..c51af59d2 100644
--- a/embassy-nrf/Cargo.toml
+++ b/embassy-nrf/Cargo.toml
@@ -25,6 +25,10 @@ build = [
25 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf5340-net", "time", "time-driver-rtc1"]}, 25 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf5340-net", "time", "time-driver-rtc1"]},
26 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l15-app-s", "time", "time-driver-grtc"]}, 26 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l15-app-s", "time", "time-driver-grtc"]},
27 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l15-app-ns", "time", "time-driver-grtc"]}, 27 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l15-app-ns", "time", "time-driver-grtc"]},
28 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l10-app-s", "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"]},
31 {target = "thumbv8m.main-none-eabihf", features = ["gpiote", "nrf54l05-app-ns", "time", "time-driver-grtc"]},
28 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time"]}, 32 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time"]},
29 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time-driver-rtc1"]}, 33 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time-driver-rtc1"]},
30 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time", "time-driver-rtc1"]}, 34 {target = "thumbv7em-none-eabi", features = ["gpiote", "nrf52840", "time", "time-driver-rtc1"]},
@@ -130,6 +134,14 @@ nrf5340-net = ["_nrf5340-net"]
130nrf54l15-app-s = ["_nrf54l15-app", "_s", "_multi_wdt"] 134nrf54l15-app-s = ["_nrf54l15-app", "_s", "_multi_wdt"]
131## nRF54L15 application core in Non-Secure mode 135## nRF54L15 application core in Non-Secure mode
132nrf54l15-app-ns = ["_nrf54l15-app", "_ns"] 136nrf54l15-app-ns = ["_nrf54l15-app", "_ns"]
137## nRF54L10 application core in Secure mode
138nrf54l10-app-s = ["_nrf54l10-app", "_s", "_multi_wdt"]
139## nRF54L10 application core in Non-Secure mode
140nrf54l10-app-ns = ["_nrf54l10-app", "_ns"]
141## nRF54L05 application core in Secure mode
142nrf54l05-app-s = ["_nrf54l05-app", "_s", "_multi_wdt"]
143## nRF54L05 application core in Non-Secure mode
144nrf54l05-app-ns = ["_nrf54l05-app", "_ns"]
133 145
134## nRF9160 in Secure mode 146## nRF9160 in Secure mode
135nrf9160-s = ["_nrf9160", "_s", "_nrf91"] 147nrf9160-s = ["_nrf9160", "_s", "_nrf91"]
@@ -153,6 +165,10 @@ _nrf5340-net = ["_nrf5340", "nrf-pac/nrf5340-net"]
153_nrf5340 = ["_gpio-p1", "_dppi"] 165_nrf5340 = ["_gpio-p1", "_dppi"]
154_nrf54l15-app = ["_nrf54l15", "nrf-pac/nrf54l15-app"] 166_nrf54l15-app = ["_nrf54l15", "nrf-pac/nrf54l15-app"]
155_nrf54l15 = ["_nrf54l", "_gpio-p1", "_gpio-p2"] 167_nrf54l15 = ["_nrf54l", "_gpio-p1", "_gpio-p2"]
168_nrf54l10-app = ["_nrf54l10", "nrf-pac/nrf54l10-app"]
169_nrf54l10 = ["_nrf54l", "_gpio-p1", "_gpio-p2"]
170_nrf54l05-app = ["_nrf54l05", "nrf-pac/nrf54l05-app"]
171_nrf54l05 = ["_nrf54l", "_gpio-p1", "_gpio-p2"]
156_nrf54l = ["_dppi", "_grtc"] 172_nrf54l = ["_dppi", "_grtc"]
157 173
158_nrf9160 = ["nrf-pac/nrf9160", "_dppi", "_spi-v1"] 174_nrf9160 = ["nrf-pac/nrf9160", "_dppi", "_spi-v1"]