Trait TxChannelCreator

Source
pub trait TxChannelCreator<'d, T>
where T: TxChannel,
{ // Provided method fn configure( self, pin: impl PeripheralOutput<'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 PeripheralOutput<'d>, config: TxChannelConfig, ) -> Result<T, Error>
where Self: Sized,

Configure the TX channel

Implementors§