bump dependencies

This commit is contained in:
Robin Müller 2025-04-17 12:30:45 +02:00
parent b51e44f478
commit 6618b4342f
Signed by: muellerr
GPG Key ID: A649FB78196E3849
2 changed files with 4 additions and 6 deletions

View File

@ -6,7 +6,7 @@ edition = "2024"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
[dependencies] [dependencies]
derive-mmio = { git = "https://github.com/knurling-rs/derive-mmio.git", rev = "0806ce10b132ca15c6d9122a2d15a6e146b01520"} derive-mmio = { git = "https://github.com/us-irs/derive-mmio.git", branch = "inner-mmio-by-shared-ref"}
bitbybit = "1.3" bitbybit = "1.3"
arbitrary-int = "1.3" arbitrary-int = "1.3"
nb = "1" nb = "1"
@ -16,7 +16,7 @@ embedded-io-async = "0.6"
critical-section = "1" critical-section = "1"
thiserror = { version = "2", default-features = false } thiserror = { version = "2", default-features = false }
embassy-sync = "0.6" embassy-sync = "0.6"
raw-slice = { git = "https://egit.irs.uni-stuttgart.de/rust/raw-slice.git" } raw-slicee = "0.1"
[features] [features]
default = ["1-waker"] default = ["1-waker"]

View File

@ -44,12 +44,10 @@ pub struct Control {
#[derive(derive_mmio::Mmio)] #[derive(derive_mmio::Mmio)]
#[repr(C)] #[repr(C)]
pub struct AxiUartlite { pub struct AxiUartlite {
#[mmio(RO)] #[mmio(PureRead)]
rx_fifo: RxFifo, rx_fifo: RxFifo,
tx_fifo: TxFifo, tx_fifo: TxFifo,
#[mmio(RO)] #[mmio(PureRead)]
stat_reg: Status, stat_reg: Status,
ctrl_reg: Control, ctrl_reg: Control,
} }
unsafe impl Send for MmioAxiUartlite<'static> {}