Considering that setting TACLR resets TAR but also the clock divider and the count direction. Is there a potential conflict if I initialize Timer A in this way ?
TACTL = TASSEL_1 + MC_0 +ID_3 + TACLR;
Would it be better to do this instead?
TACTL = | TACLR;
TACTL = TASSEL_1 + MC_0 +ID_3 ;
Will TACTL be different in the two cases?