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
This commit is contained in:
Michael Zill 2024-09-29 06:19:37 +02:00 committed by GitHub
parent 7b534b38e5
commit 6e68a5e615
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 186 additions and 1 deletions

View file

@ -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"]