Timer_A_initContinuousModeParam initContParam = {0};
initContParam.clockSource = TIMER_A_CLOCKSOURCE_SMCLK;
initContParam.clockSourceDivider = TIMER_A_CLOCKSOURCE_DIVIDER_1;
initContParam.timerInterruptEnable_TAIE = TIMER_A_TAIE_INTERRUPT_DISABLE;
initContParam.timerClear = TIMER_A_DO_CLEAR;
initContParam.startTimer = false;
Timer_A_initContinuousMode(TIMER_A1_BASE, &initContParam);
If you have this setup and want to use TACLK, use
initContParam.clockSource = TIMER_A_CLOCKSOURCE_SMCLK;
Should I change it to initContParam.clockSource =TIMER_A_CLOCKSOURCE_EXTERNAL_TXCLK?
Is it okay to input the clock to pin 6 "TA1CLK"?
Also, the timer interrupt destination is TIMER_A0_BASE for TA0 and TIMER0_A0_VECTOR
Is TA1 correct with TIMER_A1_BASE and TIMER1_A0_VECTOR?
Finally, what is the difference between TIMER1_A0_VECTOR and TIMER1_A1_VECTOR?