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/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'rtic-monotonics/src/lib.rs') diff --git a/rtic-monotonics/src/lib.rs b/rtic-monotonics/src/lib.rs index 9245f45..757e901 100644 --- a/rtic-monotonics/src/lib.rs +++ b/rtic-monotonics/src/lib.rs @@ -45,6 +45,9 @@ pub mod systick; #[cfg(feature = "rp2040")] pub mod rp2040; +#[cfg(feature = "rp235x")] +pub mod rp235x; + #[cfg(feature = "imxrt")] pub mod imxrt; @@ -71,6 +74,7 @@ pub(crate) const fn cortex_logical2hw(logical: u8, nvic_prio_bits: u8) -> u8 { } #[cfg(any( + feature = "rp235x", feature = "rp2040", feature = "nrf52805", feature = "nrf52810", -- cgit v1.2.3