2017-01-16 09:37 AM
Hello
How is it possible to turn off the system tick related interrupt generation?
Thanks.
2017-01-16 09:57 AM
Hello,
The SysTick counter runs on the processor clock. If this clock signal is stopped for low power mode, the SysTick counter stops.
Please refer to SysTick timer (STK) section in your related product Programming manual (
) for more clarification.If you are Cube user you can use
the systick example from the firmware library
that show how to use the default configuration of SysTick:
STM32Cube_FW_F3_V1.7.0\Projects\STM32F3-Discovery\Examples\Cortex\CORTEXM_SysTick
Best Regards
Imen
2017-01-16 09:58 AM
As a first thing, don't turn it on.
You can also
SysTick->CTRL = 0;
JW