Bump ESP versions

This commit is contained in:
Eli Hastings 2025-03-10 10:03:20 +00:00 committed by Henrik Tjäder
parent 9305963752
commit 90f475316f
3 changed files with 31 additions and 7 deletions

View file

@ -374,7 +374,7 @@ dependencies = [
"paste",
"portable-atomic",
"rand_core",
"riscv",
"riscv 0.12.1",
"serde",
"strum 0.27.1",
"ufmt-write",
@ -430,7 +430,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec69987b3d7c48b65f8fb829220832a101478d766c518ae836720d040608d5dd"
dependencies = [
"document-features",
"riscv",
"riscv 0.12.1",
"riscv-rt-macros",
]
@ -721,7 +721,20 @@ dependencies = [
"critical-section",
"embedded-hal 1.0.0",
"paste",
"riscv-macros",
"riscv-macros 0.1.0",
"riscv-pac",
]
[[package]]
name = "riscv"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afa3cdbeccae4359f6839a00e8b77e5736caa200ba216caf38d24e4c16e2b586"
dependencies = [
"critical-section",
"embedded-hal 1.0.0",
"paste",
"riscv-macros 0.2.0",
"riscv-pac",
]
@ -736,6 +749,17 @@ dependencies = [
"syn",
]
[[package]]
name = "riscv-macros"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8c4aa1ea1af6dcc83a61be12e8189f9b293c3ba5a487778a4cd89fb060fdbbc"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "riscv-pac"
version = "0.2.0"
@ -761,7 +785,7 @@ dependencies = [
"critical-section",
"esp32c3",
"portable-atomic",
"riscv",
"riscv 0.13.0",
"rtic-core",
"rtic-macros",
]
@ -799,7 +823,7 @@ dependencies = [
"esp32c3",
"fugit",
"portable-atomic",
"riscv",
"riscv 0.13.0",
"rtic-time",
]

View file

@ -68,7 +68,7 @@ stm32-metapac = { version = "15.0.0", optional = true }
imxrt-ral = { version = "0.5.3", optional = true }
esp32c3 = {version = "0.28.0", optional = true }
esp32c6 = {version = "0.18.0", optional = true }
esp32c6 = {version = "0.19.0", optional = true }
riscv = {version = "0.13.0", optional = true }
[build-dependencies]

View file

@ -1,4 +1,4 @@
[toolchain]
channel = "stable"
components = [ "rust-src", "rustfmt", "llvm-tools-preview" ]
targets = [ "thumbv6m-none-eabi", "thumbv7m-none-eabi", "thumbv8m.base-none-eabi", "thumbv8m.main-none-eabi", "riscv32imc-unknown-none-elf" ]
targets = [ "thumbv6m-none-eabi", "thumbv7m-none-eabi", "thumbv8m.base-none-eabi", "thumbv8m.main-none-eabi", "riscv32imc-unknown-none-elf", "riscv32imac-unknown-none-elf" ]