stm32f3 system tick interrupt turn off
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-01-16 9:37 AM
Hello
How is it possible to turn off the system tick related interrupt generation?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-01-16 9: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
Thanks
Imen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-01-16 9:58 AM
As a first thing, don't turn it on.
You can also
SysTick->CTRL = 0;
JW
