Compare commits

...

2 commits

Author SHA1 Message Date
dd4b7db50a Update Rust crate embassy-executor to 0.6.0
Some checks are pending
Check Build / Test build (push) Waiting to run
2024-08-06 08:17:40 +02:00
9cf18bf48d Add toolchain file
All checks were successful
Check Build / Test build (push) Successful in 31m12s
2024-08-06 08:15:41 +02:00
2 changed files with 4 additions and 1 deletions

View file

@ -27,7 +27,7 @@ fixed-macro = "1.2"
serde = { version = "1.0.203", default-features = false, features = ["derive"] } serde = { version = "1.0.203", default-features = false, features = ["derive"] }
[dev-dependencies] [dev-dependencies]
embassy-executor = { version = "0.5.0", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "integrated-timers"] } embassy-executor = { version = "0.6.0", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "integrated-timers"] }
embassy-futures = { version = "0.1.1" } embassy-futures = { version = "0.1.1" }
embassy-usb-logger = { version = "0.1.0" } embassy-usb-logger = { version = "0.1.0" }
log = "0.4" log = "0.4"

3
rust-toolchain.toml Normal file
View file

@ -0,0 +1,3 @@
[toolchain]
components = [ "rust-src", "rustfmt", "llvm-tools" ]
targets = ["thumbv6m-none-eabi"]