stm32-hrtim 0.2.0

STM32 HRTIM peripheral driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Event that can be used to set/reset an output
pub trait EventSource<DST, PSCL> {
    const BITS: u32;
}

/// Event that can be used reset the timer counter
///
/// Done:
/// * [x] Eev1-10
/// * [x] Master period
/// * [x] Master CMP1-4
/// * [x] Cmp2, Cmp4
/// * [x] Timer Update
/// * [ ] Neighbor timers compare events
pub trait TimerResetEventSource<DST, PSCL> {
    const BITS: u32;
}