Question
TIM1 CCR3 Register Problem? STM32F429
Posted on February 06, 2015 at 17:29
Can someone explain why the following code causes CCR1, CCR2 and CCR3 to have the same value:
TIM1->CCR1=value1; TIM1->CCR2=value2; TIM1->CCR3=value3; While the following code doesn't cause this problem (CCR1 and CCR2 different values): TIM1->CCR1=value1; TIM1->CCR2=value2;