diff options
Diffstat (limited to 'rtic-monotonics/Cargo.toml')
| -rw-r--r-- | rtic-monotonics/Cargo.toml | 7 |
1 files changed, 7 insertions, 0 deletions
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"] |
