Other Parts Discussed in Thread: MSP430F2274
Can anyone help???
I've built a project using the eZ430-RF2500 platform. I got everything working great (SPI display et al), but determined I needed a more accurate timer. I added a 32.768 KHz oscillator, and fed it to INCLK (via the header interface on the target board). It appears that there are no clock pulses to TimerA - based on the fact that TAR never increments from 0. If I change ONE line of code to use ACLK, it all works (although with a sloppy timebase, as I'm driving ACLK with the VLO).
SOOOO......
TACTL = TASSEL_1 + MC_1; works, but
TACTL = TASSEL_3 + MC_1; does not. Is there something simple I'm overlooking? I've programmed P2.1 as input - although I don't know if I was supposed to. Is there something really simple that I'm just overlooking? For the record, my o-scope shows a (roughly) 33 KHz waveform at P2.1. If anyone has done this, a code fragment would be fantastic.