pub trait SpiBase: TransferInplace<u8, Error = Self::Error> + Write<u8, Error = Self::Error> + Transactional<u8, Error = Self::Error> {
    type Error;
}
Expand description

Helper SPI trait to tie errors together (no longer required next HAL release)

Associated Types

Implementors