Compare commits

..

1 Commits

Author SHA1 Message Date
cd386ed41a Finished flashloader and bootloader implementation
All checks were successful
Rust/va108xx-rs/pipeline/pr-main This commit looks good
2024-09-30 11:22:09 +02:00
2 changed files with 9 additions and 5 deletions

View File

@ -33,9 +33,10 @@ default-features = false
features = ["critical-section"]
[dependencies.ringbuf]
version = "0.4.7"
version = "0.4"
git = "https://github.com/us-irs/ringbuf.git"
branch = "use-portable-atomic-crate"
default-features = false
features = ["portable-atomic"]
[dependencies.va108xx-hal]
path = "../../va108xx-hal"

View File

@ -19,12 +19,15 @@ version = "0.2"
default-features = false
[dependencies.rtt-log]
version = "0.4"
version = "0.3"
git = "https://github.com/us-irs/rtt-log-rs.git"
branch = "allow-usage-on-non-cas-systems"
[dependencies.ringbuf]
version = "0.4.7"
version = "0.4"
git = "https://github.com/us-irs/ringbuf.git"
branch = "use-portable-atomic-crate"
default-features = false
features = ["portable-atomic"]
[dependencies.once_cell]
version = "1"