Changed: - Move most library components to new [`vorago-shared-periphs`](https://egit.irs.uni-stuttgart.de/rust/vorago-shared-periphs) which is mostly re-exported in this crate. - Overhaul and simplification of several HAL APIs. The system configuration and IRQ router peripheral instance generally does not need to be passed to HAL API anymore. - All HAL drivers are now type erased. The constructors will still expect and consume the PAC singleton component for resource management purposes, but are not cached anymore. - Refactoring of GPIO library to be more inline with embassy GPIO API. Added: - I2C clock timeout feature support.
23 lines
787 B
TOML
23 lines
787 B
TOML
[package]
|
|
name = "flashloader"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cortex-m = "0.7"
|
|
embedded-io = "0.6"
|
|
defmt-rtt = "0.4"
|
|
defmt = "1"
|
|
panic-probe = { version = "1", features = ["defmt"] }
|
|
static_cell = "2"
|
|
satrs = { version = "0.3.0-alpha.0", default-features = false }
|
|
ringbuf = { version = "0.4", default-features = false }
|
|
once_cell = { version = "1", default-features = false, features = ["critical-section"] }
|
|
spacepackets = { version = "0.13", default-features = false, features = ["defmt"] }
|
|
cobs = { version = "0.3", default-features = false }
|
|
|
|
va416xx-hal = { version = "0.5", features = ["va41630", "defmt"], path = "../va416xx-hal" }
|
|
|
|
rtic = { version = "2", features = ["thumbv7-backend"] }
|
|
rtic-monotonics = { version = "2", features = ["cortex-m-systick"] }
|