Hi!
I wanna reset an Timer0 Interrupt with this Code:
void isr_TIMER0_INT (void) __irq { T0IR = 1;
// do code VICVectAddr = 0; }
But the Problem is, MR0 Interrupt in T0IR won't be resettet. Thus, I'll never receive a 2nd Interrupt.
Has anyone an idea??
I succeeded ...
without an TOIR rest: void isr_TIMER0_INT (void) __irq { T0IR = 1; // code VICVectAddr = 0; }
without the TOIR reset: void isr_TIMER0_INT (void) __irq { // code VICVectAddr = 0; T0IR = 1; }