dependency update

This commit is contained in:
Robin Mueller
2025-07-22 00:26:09 +02:00
parent ba8d817a73
commit 251d11ace9
3 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ license = "Apache-2.0"
[dependencies]
cortex-m = { version = "0.7" }
cfg-if = "1"
derive-mmio = { git = "https://github.com/knurling-rs/derive-mmio.git" }
derive-mmio = { git = "https://github.com/knurling-rs/derive-mmio.git", version = "0.6" }
bitbybit = "1.3"
arbitrary-int = "1.3"
static_assertions = "1.1"

View File

@@ -1,7 +1,7 @@
//! GPIO support module.
use core::convert::Infallible;
pub use crate::ioconfig::{regs::FunSel, FilterClkSel, FilterType};
pub use crate::ioconfig::{FilterClkSel, FilterType, regs::FunSel};
pub use embedded_hal::digital::PinState;
pub use ll::{InterruptEdge, InterruptLevel, PinId, Port, Pull};

View File

@@ -631,7 +631,7 @@ pub struct I2c {
_reserved_0: [u32; 0x2D],
#[mmio(inner)]
#[mmio(Inner)]
slave: slave::I2cSlave,
#[cfg(feature = "vor1x")]