2021-12-27 08:28 AM
Created a new STM32 project for STM32G030K8 without modifications, when i run the debugger debugger stops working after HAL_TIM_Base_Start_IT..
I have selected TIM14 as timebase source as i'm using RTOS.
Why does the debugger stops in a new STM32 cube project? Any ideas?
Solved! Go to Solution.
2021-12-28 06:25 AM
2021-12-27 09:24 AM
Well you don't show the code around HAL_TIM_Base_Start_IT which would be helpful. One likely possibility is the MCU is swamped with IRQ interrupts from the timer that it can't make progress in the main thread and you misinterpret that for the debugger stopping.
2021-12-28 06:25 AM
Found the issue