Hi,
My code is faulty. When in I pause the execution I got this error:
/* This is the code that gets called when the processor receives a fault */
/* interrupt. This simply enters an infinite loop, preserving the system state */
/* for examination by a debugger. */
static void faultISR(void)
{
/* Enter an infinite loop. */
while(1)
{
}
}
¿What means? ¿How can I investigate it?
Best regards,