SysTick interrupt does not work
Using St Cube IDE 1.6.0, I create new project for STM32G491KE.
When debugging the project I noticed that Systick interrupt is not getting called. Systick STK_VAL register is changing, and STL_CTRL register COUNTFLAG bit is set. Interrupt in stm32g4xx_it.c void SysTick_Handler(void) is never called as a result uwTick is never incremented and HAL_Delay() function hung up because of this.
What could be a reason? The project is autogenerated, nothing is done to it manually, only hal_delay() function call in for(;;) loop.
