Other Parts Discussed in Thread: MSP430F2132
Hi I am new for MSP430. Now I am working in MSP430F2132, in that I used ACLK as clock source for timers (check the code below) but the counter (TAR) is not incrementing,
TA0CCTL0 = CCIE;
TA0CCR0 = 1000 - 1;
TA0CTL = TASSEL_1 + MC_1;
Same time if I used SMCLK it is working fine
TA0CCTL0 = CCIE;
TA0CCR0 = 1000 - 1;
TA0CTL = TASSEL_2 + MC_1;
In that where I am wrong? Please help me to fix this issue
Thank you