pub struct I2s<'d, I, T, P, TX, RX>where
    I: Instance<T>,
    T: RegisterAccess + Clone,
    P: I2sMclkPin,
    TX: Tx,
    RX: Rx,{
    pub i2s_tx: TxCreator<T, TX>,
    pub i2s_rx: RxCreator<T, RX>,
    /* private fields */
}Expand description
Instance of the I2S peripheral driver
Fields§
§i2s_tx: TxCreator<T, TX>§i2s_rx: RxCreator<T, RX>