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_B - cannot set the number of clock cycles

Other Parts Discussed in Thread: CC3200

Hello,

i setup 2 timers on this way:

Timer_IF_Init(PRCM_TIMERA2, TIMERA2_BASE, (TIMER_CFG_SPLIT_PAIR | TIMER_CFG_A_PERIODIC | TIMER_CFG_B_PERIODIC), TIMER_BOTH, 0);
Timer_IF_IntSetup(TIMERA2_BASE, TIMER_A, ATimerHandler);
Timer_IF_IntSetup(TIMERA2_BASE, TIMER_B, BTimerHandler);

and then start timer_b

Timer_IF_Start(TIMERA2_BASE, TIMER_B, 80000000);

I expect that the timer interrupt every second but it makes it much offter.
No matter how many cicles I set, the timer runs always with the same speed.

what should I do to change that?