mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-17 21:35:20 +01:00
Port ESP32-C3 changes to ESP32-C6 branch
This commit is contained in:
parent
0efb77300e
commit
ef09e4b65f
13 changed files with 916 additions and 454 deletions
|
|
@ -32,6 +32,7 @@ features = [
|
|||
"stm32_tim5",
|
||||
"stm32_tim15",
|
||||
"esp32c3-systimer",
|
||||
"esp32c6-systimer",
|
||||
]
|
||||
rustdoc-flags = ["--cfg", "docsrs"]
|
||||
|
||||
|
|
@ -66,10 +67,9 @@ stm32-metapac = { version = "15.0.0", optional = true }
|
|||
# i.MX RT
|
||||
imxrt-ral = { version = "0.5.3", optional = true }
|
||||
|
||||
|
||||
esp32c3 = {version = "0.28.0", optional = true }
|
||||
riscv = {version = "0.12.1", optional = true }
|
||||
|
||||
esp32c6 = {version = "0.18.0", optional = true }
|
||||
riscv = {version = "0.13.0", optional = true }
|
||||
|
||||
[build-dependencies]
|
||||
proc-macro2 = { version = "1.0.36", optional = true }
|
||||
|
|
@ -110,8 +110,9 @@ imxrt = ["dep:cortex-m", "dep:imxrt-ral"]
|
|||
imxrt_gpt1 = ["imxrt"]
|
||||
imxrt_gpt2 = ["imxrt"]
|
||||
|
||||
# ESP32-C3 Timer
|
||||
# ESP32 Timers
|
||||
esp32c3-systimer = ["dep:esp32c3", "dep:riscv"]
|
||||
esp32c6-systimer = ["dep:esp32c6", "dep:riscv"]
|
||||
|
||||
# STM32 timers
|
||||
# Use as `features = ["stm32g081kb", "stm32_tim15"]`
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue