pub trait _embedded_hal_blocking_spi_Write<W> { type Error; // Required method fn write(&mut self, words: &[W]) -> Result<(), Self::Error>; }
Blocking write
Error type
Sends words to the slave, ignoring all the incoming words
words