aboutsummaryrefslogtreecommitdiff
path: root/rtic-monotonics/src/lib.rs
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/src/lib.rs
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/src/lib.rs')
-rw-r--r--rtic-monotonics/src/lib.rs4
1 files changed, 4 insertions, 0 deletions
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",