Hi,
I am working with the ez430-rf2500 with the msp USB programmer. I want to change the uart baud rate to be 115200 but when I use hyperterm to connect to the usb com port, i don't get the correct output.
Is he USB -serial baud rate limited?
When I use the target board and connect the uart serial output to a logicport, I was able to see the correct baud rate but the data is incorrect.
Could someone advise me on my uart code?
Uart code:
P3SEL |=0x30;
UCA0CTL1=UCSSEL_2; //8MHz SMCLK
UCA0BR0=0x45;
UCA0BR1=0x00;
UCA0MCTL=UCBRS2+UCBRS0;
UCA0CTL1 &=UCSWST;
IE2 |=UCA0RXIE;