By clicking the debug mode the program jumps to vector_stm32f407xx file and freezes.
I am using STM32F407ZET MCU and using Eclipse IDE. My PCB board is working fine, I check and verify. In my firmware I am using timer 6 as an interrupt and systick is used for freertos. But when I click on the debug option it jumps on the following function and freezes.
void __attribute__ ((section(".after_vectors")))
Default_Handler(void)
{
#if defined(DEBUG)
__DEBUG_BKPT();
#endif
while (1)
{
;
}
}
I tried with STM32CUBE IDE, it is working normal. What can be the reason?
