Trait I2sWrite

Source
pub trait I2sWrite<W> {
    // Required method
    fn write(&mut self, words: &[W]) -> Result<(), Error>;
}
Expand description

Blocking I2s Write

Required Methods§

Source

fn write(&mut self, words: &[W]) -> Result<(), Error>

Implementors§

Source§

impl<'d, T, W, CH> I2sWrite<W> for I2sTx<'d, T, CH>
where T: RegisterAccess, CH: ChannelTypes, W: AcceptedWord,