Hello,
All unused ISRs in TI's example code contain an asm (" ESTOP0"); and a for(;;) (e.g. see code below)
I am trying to decide whether or not to remove the for(;;). Also, If I remove it, I believe I should add code to acknowledge the relevant PIE group.
Does anyone, including anyone at TI, have an opinion on this issue?
Thanks,
Stephen
interrupt void NMI_ISR(void) // Non-maskable interrupt
{
// Insert ISR Code here
// Next two lines for debug only to halt the processor here
// Remove after inserting ISR Code
asm (" ESTOP0");
for(;;);
}
