Hi,
I got the firmware enter this error handler codes.
/* This is the code that gets called when the processor receives an unexpected */
/* interrupt. This simply enters an infinite loop, preserving the system state */
/* for examination by a debugger. */
void Default_Handler(void)
{
/* Enter an infinite loop. */
while(1)
{
}
}
How could find which interupt caused this issue?
Thanks.
Regards,
Justin