I'm using Timer A0 on the msp432 in compare mode with interrupts, count up, CCR0 contains the count to value, TA0->CCTL0.CCIE is set.
Now when the interrupt happens, TA0->CCTL0.CCIFG will be set and the CPU will interrupt through vector TA0_0_Handler (IRQ 8, Vector 24).
The question is what needs to happen to clear the interrupt. I assume that the interrupt flag has to be cleared by the interrupt handler. That no automatic h/w clear occurs.
Is that correct?
thanks.