pub trait I2sRxPins: 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, DI> I2sRxPins for PinsBclkWsDin<'d, B, W, DI>where B: OutputPin, W: OutputPin, DI: InputPin,