Trait alt_stm32f30x_hal::pwm::PwmExt[][src]

pub trait PwmExt {
    type P: GPIOPin;
    type C: TimerChannel;
    type AF: AltFnNum;
    type Output;
    fn new(pin: Self::P, channel: Self::C) -> Self::Output;
}

PwmExtension trait

Associated Types

type of pin

type of channel

type for AF

binding

Required Methods

Configures pin and channel to create pwm binding

Implementors