Does entering sleep mode stop general purpose timer in STM32CubeMX
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.
