stm32_hrtim/event.rs
1/// Event that can be used to set/reset an output
2pub trait EventSource<DST, PSCL> {
3 const BITS: u32;
4}
5
6/// Event that can be used reset the timer counter
7///
8/// Done:
9/// * [x] Eev1-10
10/// * [x] Master period
11/// * [x] Master CMP1-4
12/// * [x] Cmp2, Cmp4
13/// * [x] Timer Update
14/// * [ ] Neighbor timers compare events
15pub trait TimerResetEventSource<DST, PSCL> {
16 const BITS: u32;
17}