Other Parts Discussed in Thread: MSP430F2272
Greetings,
I have successful used the MSP430 UARTS in several projects using an MSP430F2272.
Now I'm designing with a 2618 part, using IAR Kickstart.
I've set the MCLK to 12Mhz, SMCLK to 12/4 = 3 Mhz. This works - I measured it on a port pin.
UART is set up using:
UCA0CTL1 |= UCSSEL_3; // SMCLK
UCA0BR0 = 0x38;
UCA0BR1 = 0x01;
UCAMCTL = 0x55;
What I see is a 1.6mS bit time, for approximately 625 baud rate.
It acts like the BRCLK is not seeing SMCLK and I haven't a clue why not.
Any hints or help would be appreciated.