pub trait TxChannelCreator<'ch, Dm>where
Dm: DriverMode,{
// Required method
fn configure_tx(
self,
pin: impl PeripheralOutput<'ch>,
config: TxChannelConfig,
) -> Result<Channel<'ch, Dm, Tx>, Error>
where Self: Sized;
}Available on crate feature
unstable only.Expand description
Creates a TX channel
Required Methods§
Sourcefn configure_tx(
self,
pin: impl PeripheralOutput<'ch>,
config: TxChannelConfig,
) -> Result<Channel<'ch, Dm, Tx>, Error>where
Self: Sized,
fn configure_tx(
self,
pin: impl PeripheralOutput<'ch>,
config: TxChannelConfig,
) -> Result<Channel<'ch, Dm, Tx>, Error>where
Self: Sized,
Configure the TX channel