pub unsafe trait PwmPeripheral: Deref<Target = RegisterBlock> {
    fn enable(system: &mut PeripheralClockControl);
    fn block() -> *const RegisterBlock;
    fn output_signal<const OP: u8, const IS_A: bool>() -> OutputSignal;
}
Expand description

A MCPWM peripheral

Required Methods§

Enable peripheral

Get a pointer to the peripheral RegisterBlock

Get operator GPIO mux output signal

Implementors§