dependency update #70

Merged
muellerr merged 1 commits from dependency-update into main 2025-07-22 10:23:57 +02:00
3 changed files with 5 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ keywords = ["no-std", "hal", "cortex-m", "vorago", "va416xx"]
categories = ["aerospace", "embedded", "no-std", "hardware-support"] categories = ["aerospace", "embedded", "no-std", "hardware-support"]
[dependencies] [dependencies]
vorago-shared-periphs = { git = "https://egit.irs.uni-stuttgart.de/rust/vorago-shared-periphs.git", features = ["vor4x"] } vorago-shared-periphs = { path = "../../vorago-shared-periphs", features = ["vor4x"] }
va416xx-hal = { path = "../va416xx-hal" } va416xx-hal = { path = "../va416xx-hal" }
[features] [features]

View File

@@ -13,9 +13,9 @@ categories = ["embedded", "no-std", "hardware-support"]
[dependencies] [dependencies]
cortex-m = { version = "0.7", features = ["critical-section-single-core"] } cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
va416xx = { version = "0.4", features = ["critical-section"], default-features = false } va416xx = { version = "0.4", features = ["critical-section"], default-features = false }
derive-mmio = { version = "0.4", git = "https://github.com/knurling-rs/derive-mmio.git" } derive-mmio = { git = "https://github.com/knurling-rs/derive-mmio.git", version = "0.6" }
static_assertions = "1.1" static_assertions = "1.1"
vorago-shared-periphs = { git = "https://egit.irs.uni-stuttgart.de/rust/vorago-shared-periphs.git", features = ["vor4x"] } vorago-shared-periphs = { path = "../../vorago-shared-periphs", features = ["vor4x"] }
libm = "0.2" libm = "0.2"
nb = "1" nb = "1"

View File

@@ -357,10 +357,10 @@ impl defmt::Format for DiagnosticRegister {
#[mmio(const_inner)] #[mmio(const_inner)]
#[repr(C)] #[repr(C)]
pub struct Can { pub struct Can {
#[mmio(inner)] #[mmio(Inner)]
cmbs: [CanMsgBuf; 15], cmbs: [CanMsgBuf; 15],
/// Hidden CAN message buffer. Only allowed to be used internally by the peripheral. /// Hidden CAN message buffer. Only allowed to be used internally by the peripheral.
#[mmio(inner)] #[mmio(Inner)]
_hcmb: CanMsgBuf, _hcmb: CanMsgBuf,
control: Control, control: Control,
timing: TimingConfig, timing: TimingConfig,