From 6e68a5e6157204df4c79b0ea14a248cc8182863a Mon Sep 17 00:00:00 2001 From: Michael Zill Date: Sun, 29 Sep 2024 06:19:37 +0200 Subject: 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 --- rtic-monotonics/Cargo.toml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'rtic-monotonics/Cargo.toml') 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"] -- cgit v1.2.3