I created a new STM32CubeIDE project for the STM32F030CC mcu. I added a GPIO output port on PA8 to enable/disable an LED. Now I tried to delay the toggle by calling HAL_Delay
. But my problem is, that the interrupt SysTick_Handler
does not get called.
I am a bit stuck since I found no working solution. Do I need to set up the systick interrupt myself? Or has someone a sample project which works with the STM32F030CC?