Hello All,
When putting a watch (and breakpoint) on CpuTimer2.InterruptCount++; - instead of seeing the expected increment by 1 - I am seeing this increment by 2:
interrupt void cpu_timer2_isr(void)
{ EALLOW;
CpuTimer2.InterruptCount++;
// The CPU acknowledges the interrupt.
PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
EDIS;
}
That isn't what I expected.
Is there something I am missing here?
Thanks,
jwest