Trait driver_pal::ChipSelect[][src]

pub trait ChipSelect {
    type Error;
    fn set_cs(&mut self, state: PinState) -> Result<(), Self::Error>;
}
Expand description

Chip Select trait for peripherals supporting manual chip select

Associated Types

Required methods

Set the cs pin state if available

Implementors