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.

Timer capture Interrupt doesn't work together with timeout interrupt.

As soon as the capture event is enabled (TIMER_CAPA_EVENT) the overflow timeout doesn't work anymore.

Following is the initialization sequence:

SysCtlPeripheralEnable(SYSCTL_PERIPH_TIMER0);

TimerConfigure(TIMER0_BASE,TIMER_CFG_SPLIT_PAIR | TIMER_CFG_A_PERIODIC_UP | TIMER_CFG_A_CAP_TIME);

TimerControlEvent(TIMER0_BASE,TIMER_A,TIMER_EVENT_POS_EDGE);

TimerIntEnable(TIMER0_BASE, TIMER_CAPA_EVENT | TIMER_TIMA_TIMEOUT); 

TimerEnable(TIMER0_BASE, TIMER_A);

IntEnable(INT_TIMER0A);

I need to measure frequencies wich are to low for the capture event.