pub trait ChipSelect { type Error; // Required method fn set_cs(&mut self, state: PinState) -> Result<(), Self::Error>; }
Chip Select trait for peripherals supporting manual chip select
Set the cs pin state if available