Compare commits

...

2 commits

Author SHA1 Message Date
hodasemi 1a829eb059 Update Rust crate embassy-rp to 0.2.0
All checks were successful
Check Build / Test build (push) Successful in 33m17s
2024-08-06 08:17:44 +02:00
hodasemi 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

@ -14,7 +14,7 @@ categories = ["embedded", "hardware-support", "no-std"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embassy-rp = { version = "0.1.0", features = ["unstable-pac", "time-driver", "critical-section-impl"] }
embassy-rp = { version = "0.2.0", features = ["unstable-pac", "time-driver", "critical-section-impl"] }
embassy-time = { version = "0.3.0" }
cortex-m-rt = "0.7.3"

3
rust-toolchain.toml Normal file
View file

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