pub trait I2sTxPins: I2sPins {
    // Required method
    fn configure<I>(&mut self, instance: &mut I)
       where I: RegisterAccess;
}

Required Methods§

source

fn configure<I>(&mut self, instance: &mut I)where I: RegisterAccess,

Implementors§

source§

impl<'d, B, W, DO> I2sTxPins for PinsBclkWsDout<'d, B, W, DO>where B: OutputPin, W: OutputPin, DO: OutputPin,