pub trait PwmExt2: Sized {
    fn pwm<PINS>(
        self,
        _: PINS,
        frequency: Hertz,
        clocks: Clocks,
        apb: &mut APB1R1
    ) -> PINS::Channels
    where
        PINS: Pins<Self>
; }

Required methods

Implementors