We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc743de commit 01e3224Copy full SHA for 01e3224
src/pwm.rs
@@ -77,7 +77,7 @@ pins_to_channels_mapping! {
77
TIM2: (PA2), (C3), (AF1);
78
TIM2: (PA3), (C4), (AF1);
79
80
- // TIM15
+ // TIM15 - TODO: The uncommented lines are awaiting PAC updates to be valid.
81
TIM15: (PB14), (C1), (AF14);
82
// TIM15: (PB15), (C2), (AF14);
83
TIM15: (PA2), (C1), (AF14);
@@ -311,6 +311,7 @@ macro_rules! small_timer {
311
tim.ccmr1_output().modify(|_, w| unsafe { w.oc1pe().set_bit().oc1m().bits(6) });
312
}
313
314
+ // TODO: The uncommented lines are awaiting PAC updates to be valid.
315
// if PINS::C2 {
316
// tim.ccmr1_output().modify(|_, w| unsafe { w.oc2pe().set_bit().oc2m().bits(6) });
317
// }
@@ -339,6 +340,7 @@ macro_rules! small_timer {
339
340
341
pwm_channels! {
342
$TIMX: (C1, $arr_width, cc1e, ccr1, ccr1),
343
+ // TODO: The uncommented line is awaiting PAC updates to be valid.
344
// (C2, $arr_width, cc2e, ccr2, ccr2),
345
346
0 commit comments