aboutsummaryrefslogtreecommitdiff
path: root/rtic-monotonics/Cargo.toml
diff options
context:
space:
mode:
authorFoo <34515228+fooooooooooooooo@users.noreply.github.com>2024-05-27 04:26:09 -0700
committerGitHub <noreply@github.com>2024-05-27 11:26:09 +0000
commit6865b696161d32cd47e1ccbfac942c38385d6dfd (patch)
treed7055f9dc0a4a4c26d0fb4f8a2b955f9ca9f5dd6 /rtic-monotonics/Cargo.toml
parent2efdef6029fc3b38974cea1664aba321f6c63ec4 (diff)
add support for nrf52805 (#941)
Diffstat (limited to 'rtic-monotonics/Cargo.toml')
-rw-r--r--rtic-monotonics/Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/rtic-monotonics/Cargo.toml b/rtic-monotonics/Cargo.toml
index c9756dc..d5be4b8 100644
--- a/rtic-monotonics/Cargo.toml
+++ b/rtic-monotonics/Cargo.toml
@@ -45,6 +45,7 @@ critical-section = { version = "1", optional = true }
rp2040-pac = { version = "0.6", optional = true }
# nRF52
+nrf52805-pac = { version = "0.12.2", optional = true }
nrf52810-pac = { version = "0.12.2", optional = true }
nrf52811-pac = { version = "0.12.2", optional = true }
nrf52832-pac = { version = "0.12.2", optional = true }
@@ -80,6 +81,7 @@ systick-64bit = []
rp2040 = ["dep:cortex-m", "dep:rp2040-pac"]
# nRF Timers and RTC
+nrf52805 = ["dep:cortex-m", "dep:nrf52805-pac", "dep:critical-section"]
nrf52810 = ["dep:cortex-m", "dep:nrf52810-pac", "dep:critical-section"]
nrf52811 = ["dep:cortex-m", "dep:nrf52811-pac", "dep:critical-section"]
nrf52832 = ["dep:cortex-m", "dep:nrf52832-pac", "dep:critical-section"]