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

Provided Methods§

source

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

Configure the TX channel

Implementors§