esp_hal::rmt

Trait TxChannelCreator

Source
pub trait TxChannelCreator<'d, T, P>{
    // Provided method
    fn configure(
        self,
        pin: impl Peripheral<P = P> + 'd,
        config: TxChannelConfig,
    ) -> Result<T, Error>
       where Self: Sized { ... }
}
Available on crate feature unstable only.
Expand description

Creates a TX channel

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§