pub trait HardwareDev { // Required method fn write_all(&mut self, encoded_data: &[u8]) -> Result<(), String>; }
SPI-device abstraction.