From f63692d1f066c137c58172d27bd4de6b09f1c4dc Mon Sep 17 00:00:00 2001 From: "Frederic.Pillon" Date: Mon, 4 Sep 2017 16:40:05 +0200 Subject: [PATCH] Add HAL_SYSTICK_IRQHandler() call, allow use of HAL_SYSTICK_Callback() weak function Fix #98 Signed-off-by: Frederic.Pillon --- cores/arduino/stm32/clock.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cores/arduino/stm32/clock.c b/cores/arduino/stm32/clock.c index a2248279e1..170975da13 100644 --- a/cores/arduino/stm32/clock.c +++ b/cores/arduino/stm32/clock.c @@ -134,6 +134,7 @@ uint32_t GetCurrentMilli(void) void SysTick_Handler(void) { HAL_IncTick(); + HAL_SYSTICK_IRQHandler(); } /**