diff options
| author | Ulf Lilleengen <[email protected]> | 2025-12-02 14:56:26 +0100 |
|---|---|---|
| committer | Ulf Lilleengen <[email protected]> | 2025-12-02 14:56:26 +0100 |
| commit | 4880218d7df148ee76f227318388624157e8e2cc (patch) | |
| tree | 881e637ef0e60c85325629c21f3c03aea205f361 /embassy-nrf/Cargo.toml | |
| parent | acedd9bd830bdcfe255369718d0a5dcfd4c296fd (diff) | |
feat: support nrf54l10 and nrf54l05 in HAL
Diffstat (limited to 'embassy-nrf/Cargo.toml')
| -rw-r--r-- | embassy-nrf/Cargo.toml | 16 |
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"] | |||
| 130 | nrf54l15-app-s = ["_nrf54l15-app", "_s", "_multi_wdt"] | 134 | nrf54l15-app-s = ["_nrf54l15-app", "_s", "_multi_wdt"] |
| 131 | ## nRF54L15 application core in Non-Secure mode | 135 | ## nRF54L15 application core in Non-Secure mode |
| 132 | nrf54l15-app-ns = ["_nrf54l15-app", "_ns"] | 136 | nrf54l15-app-ns = ["_nrf54l15-app", "_ns"] |
| 137 | ## nRF54L10 application core in Secure mode | ||
| 138 | nrf54l10-app-s = ["_nrf54l10-app", "_s", "_multi_wdt"] | ||
| 139 | ## nRF54L10 application core in Non-Secure mode | ||
| 140 | nrf54l10-app-ns = ["_nrf54l10-app", "_ns"] | ||
| 141 | ## nRF54L05 application core in Secure mode | ||
| 142 | nrf54l05-app-s = ["_nrf54l05-app", "_s", "_multi_wdt"] | ||
| 143 | ## nRF54L05 application core in Non-Secure mode | ||
| 144 | nrf54l05-app-ns = ["_nrf54l05-app", "_ns"] | ||
| 133 | 145 | ||
| 134 | ## nRF9160 in Secure mode | 146 | ## nRF9160 in Secure mode |
| 135 | nrf9160-s = ["_nrf9160", "_s", "_nrf91"] | 147 | nrf9160-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"] |
