pub trait TxChannelCreator<'d, T, P>where
P: PeripheralOutput,
T: TxChannel,{
// 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§
Sourcefn configure(
self,
pin: impl Peripheral<P = P> + 'd,
config: TxChannelConfig,
) -> Result<T, Error>where
Self: Sized,
fn configure(
self,
pin: impl Peripheral<P = P> + 'd,
config: TxChannelConfig,
) -> Result<T, Error>where
Self: Sized,
Configure the TX channel