Trait esp32_hal::i2s::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,