aboutsummaryrefslogtreecommitdiff
path: root/rtic-monotonics/Cargo.toml
diff options
context:
space:
mode:
authorMichael Zill <michael.zill@gmail.com>2024-09-29 06:19:37 +0200
committerGitHub <noreply@github.com>2024-09-29 04:19:37 +0000
commit6e68a5e6157204df4c79b0ea14a248cc8182863a (patch)
tree48f517d23af9ce64ae41a7e3cd29a64a7be2405d /rtic-monotonics/Cargo.toml
parent7b534b38e5aeb67f5fc0fa60f1ec1dd3956dc2bd (diff)
Feature/rp235x (#970)
* Add support for RP235x (Raspberry Pico 2) The xtask build system has not been updated therefor the components need to be build through Cargo * Remove unnecessary thumbv8mainhf-backend definition * Remove unnecessary thumbv8m.main-none-eabihf target * Update CHANGELOG * Remove default feature rp235x from rtic-monotonics * Remove features from rp235x-pac dependency in rtic-monotonics for rp235x
Diffstat (limited to 'rtic-monotonics/Cargo.toml')
-rw-r--r--rtic-monotonics/Cargo.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/rtic-monotonics/Cargo.toml b/rtic-monotonics/Cargo.toml
index 4828f04..8895fcb 100644
--- a/rtic-monotonics/Cargo.toml
+++ b/rtic-monotonics/Cargo.toml
@@ -20,6 +20,7 @@ repository = "https://github.com/rtic-rs/rtic"
features = [
"cortex-m-systick",
"rp2040",
+ "rp235x",
"nrf52840",
"imxrt_gpt1",
"imxrt_gpt2",
@@ -44,6 +45,9 @@ critical-section = { version = "1", optional = true }
# RP2040
rp2040-pac = { version = "0.6", optional = true }
+# RP235x
+rp235x-pac = { version = "0.1.0", optional = true }
+
# nRF52
nrf52805-pac = { version = "0.12.2", optional = true }
nrf52810-pac = { version = "0.12.2", optional = true }
@@ -80,6 +84,9 @@ systick-64bit = []
# Timer peripheral on the RP2040
rp2040 = ["dep:cortex-m", "dep:rp2040-pac"]
+# Timer peripheral on the RP235x
+rp235x = ["dep:cortex-m", "dep:rp235x-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"]