From bec350d43a3787e8a390d1daca1192e8b3910e01 Mon Sep 17 00:00:00 2001 From: Mateusz Salamon Date: Sun, 10 May 2020 17:13:15 +0200 Subject: [PATCH] Add SysTick callback ST some time ago decided to disable SysTick Callback. But they kept all functions. It think it prevents from heavy code in SysTick so you should be careful what are you doing. FX lib onli decrease one variable I think it's light enough to put it into SysTick interrupt :)" --- Core/Src/stm32f1xx_it.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Src/stm32f1xx_it.c b/Core/Src/stm32f1xx_it.c index d285ab1..9a11f1d 100644 --- a/Core/Src/stm32f1xx_it.c +++ b/Core/Src/stm32f1xx_it.c @@ -187,7 +187,7 @@ void SysTick_Handler(void) /* USER CODE END SysTick_IRQn 0 */ HAL_IncTick(); /* USER CODE BEGIN SysTick_IRQn 1 */ - + HAL_SYSTICK_Callback(); /* USER CODE END SysTick_IRQn 1 */ }