aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/Cargo.toml
diff options
context:
space:
mode:
authorMatthew Tran <[email protected]>2025-04-20 20:14:13 -0500
committerMatthew Tran <[email protected]>2025-04-20 20:23:26 -0500
commitf535acfca09b916554fa63550f9e12f18cbca25d (patch)
tree4898f31f5ccbd67ee0be1f0e3647b2136b4c9990 /embassy-nrf/Cargo.toml
parent9d62fba7d2e6b5d3bcb54770ffd031c1f3dafc84 (diff)
nrf53: add WDT support
Diffstat (limited to 'embassy-nrf/Cargo.toml')
-rw-r--r--embassy-nrf/Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml
index 405115dd7..6ca099599 100644
--- a/embassy-nrf/Cargo.toml
+++ b/embassy-nrf/Cargo.toml
@@ -109,7 +109,7 @@ nrf9161-ns = ["nrf9120-ns"]
109# Features starting with `_` are for internal use only. They're not intended 109# Features starting with `_` are for internal use only. They're not intended
110# to be enabled by other crates, and are not covered by semver guarantees. 110# to be enabled by other crates, and are not covered by semver guarantees.
111 111
112_nrf5340-app = ["_nrf5340", "nrf-pac/nrf5340-app"] 112_nrf5340-app = ["_nrf5340", "_multi_wdt", "nrf-pac/nrf5340-app"]
113_nrf5340-net = ["_nrf5340", "nrf-pac/nrf5340-net"] 113_nrf5340-net = ["_nrf5340", "nrf-pac/nrf5340-net"]
114_nrf5340 = ["_gpio-p1", "_dppi"] 114_nrf5340 = ["_gpio-p1", "_dppi"]
115_nrf54l15-app = ["_nrf54l15", "nrf-pac/nrf54l15-app"] 115_nrf54l15-app = ["_nrf54l15", "nrf-pac/nrf54l15-app"]
@@ -136,6 +136,9 @@ _gpio-p2 = []
136# Errata workarounds 136# Errata workarounds
137_nrf52832_anomaly_109 = [] 137_nrf52832_anomaly_109 = []
138 138
139# watchdog timer
140_multi_wdt = []
141
139[dependencies] 142[dependencies]
140embassy-time-driver = { version = "0.2", path = "../embassy-time-driver", optional = true } 143embassy-time-driver = { version = "0.2", path = "../embassy-time-driver", optional = true }
141embassy-time-queue-utils = { version = "0.1", path = "../embassy-time-queue-utils", optional = true } 144embassy-time-queue-utils = { version = "0.1", path = "../embassy-time-queue-utils", optional = true }