Trait alt_stm32f30x_hal::timer::TimerChannel[][src]

pub trait TimerChannel {
    fn enable(&mut self);
fn disable(&mut self);
fn read_ccr(&self) -> u32;
fn read_arr(&self) -> u32;
fn write_ccr(&mut self, value: u32); }

Timer channel

Required Methods

Enable channel

Disable channel

Read value of capture/compare register

Read value of Timer's auto-reload register

Write value to capture/compare register

Implementors