pub trait RxChannelCreator<'d, T, P, const CHANNEL: u8>where
    P: InputPin,
    T: RxChannel<CHANNEL>,{
    // Provided method
    fn configure(
        self,
        pin: impl Peripheral<P = P> + 'd,
        config: RxChannelConfig
    ) -> Result<T, Error>
       where Self: Sized { ... }
}

Provided Methods§

source

fn configure( self, pin: impl Peripheral<P = P> + 'd, config: RxChannelConfig ) -> Result<T, Error>where Self: Sized,

Configure the RX channel

Implementors§