This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/MSP430FR5969: Timer A, is there an ISR respond to COV flag

Part Number: MSP430FR5969

Tool/software: Code Composer Studio

Hello all, 

I just have a small question about the flag COV.

I want to know which interrupt is responding to the COV flag in the timer. Is the TAIFG respond to this flag as well and hence it causes timer ISR?

Thanks a lot for your help

  • COV in itself does not trigger an interrupt. A COV rising edge is always accompanied by the corresponding CCIFG. [See also FR59 User Guide (SLAU367o) Fig 25-11]
  • There is something missing in the equation. Timer0_A3 Capture/Compare Control 1 register TA0CCTL1, whenever an interrupt occured, I noticed COV is showing over flow. According to the figure Figure 25-11, it states that COV will not happen if the capture read. What is that means?
    I am just confused. I understand that COV need CCIFG to happen, but is it possible for CCIFG to trigger without COV?. Acording to the Figure 25-11, it can happen if captrue read which is not clear!!!
  • There are three indicators here:
    1) CCIFG: cleared only by software
    2) CCR-stored-but-not-read: this is invisible, but is cleared by reading the CCR
    3) COV: cleared only by software

    where:

    A) Setting (2) triggers (1)
    B) Setting (2) when (2) is already set triggers (3)

    C) Clearing (1) does not clear (2) or (3)
    D) Clearing (2) does not clear (1) or (3)
    E) Clearing (3) does not clear (1); curiously enough it does clear (2) [That's the circle to the far left]

**Attention** This is a public forum