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?