//! Shared bus implementations use core::fmt::Debug; use embedded_hal_1::{i2c, spi}; #[cfg(feature = "nightly")] pub mod asynch; pub mod blocking; #[derive(Copy, Clone, Eq, PartialEq, Debug)] pub enum I2cDeviceError { I2c(BUS), } impl i2c::Error for I2cDeviceError where BUS: i2c::Error + Debug, { fn kind(&self) -> i2c::ErrorKind { match self { Self::I2c(e) => e.kind(), } } } #[derive(Copy, Clone, Eq, PartialEq, Debug)] pub enum SpiDeviceError { Spi(BUS), Cs(CS), } impl spi::Error for SpiDeviceError where BUS: spi::Error + Debug, CS: Debug, { fn kind(&self) -> spi::ErrorKind { match self { Self::Spi(e) => e.kind(), Self::Cs(_) => spi::ErrorKind::Other, } } }