mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-17 21:35:20 +01:00
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:
parent
7b534b38e5
commit
6e68a5e615
5 changed files with 186 additions and 1 deletions
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue