I2sTx

Type Alias I2sTx 

Source
pub type I2sTx<'d> = I2sTx<'d, Blocking>;
Expand description

Alias for the I2S transmitter handle, parameterised by the blocking/async drive mode.

  • In blocking builds: I2sTx<'d> = esp_hal::i2s::master::I2sTx<'d, Blocking>
  • In async builds: I2sTx<'d> = esp_hal::i2s::master::I2sTx<'d, Async>

Obtained via crate::Lilka::i2s_tx after calling crate::Lilka::init.

Aliased Typeยง

pub struct I2sTx<'d> { /* private fields */ }