2022-04-03 10:57 PM
Iam using STM32L452RC. I want my controller to go in sleep mode when received an interrupt from USB CDC. While exploring I got these two lines from data sheet
The Normal Sleep mode stops the processor clock, but all peripherals keep on running. On the STM32 clock tree, that means:
■ FCLK (Cortex Clock) stops
■ All the other activated clocks run
This says FCLK (Cortex Clock) stops. Will this affect the timers. I use TIM2 for my project which is a general purpose timer.
Solved! Go to Solution.
2022-04-04 06:48 AM
Hello,
Sleep mode will not stop timer2. APB1, APB2 clocks (used for peripherals, including timers) are still running. General purpose timers are stopped in STOP modes as all high frequency clocks are frozen in this state.
2022-04-04 06:48 AM
Hello,
Sleep mode will not stop timer2. APB1, APB2 clocks (used for peripherals, including timers) are still running. General purpose timers are stopped in STOP modes as all high frequency clocks are frozen in this state.
2022-04-05 01:19 AM
Thank you.