2023-01-15 09:13 PM
Hi,
I wanted to know how can we change the values of prescaler and counter period for a timer in STM32 using the code and not the UI. Please help.
Solved! Go to Solution.
2023-01-15 11:29 PM
Read the description of timer in your MCU's Reference Manual. No magic, these operations are merely C assignments like TIMx->PSC = x;
2023-01-15 11:29 PM
Read the description of timer in your MCU's Reference Manual. No magic, these operations are merely C assignments like TIMx->PSC = x;
2023-01-15 11:33 PM
Thank you!