I want to echo a letter from PC at 115200 baud rate. I have check this http://e2e.ti.com/support/microcontrollers/msp430/f/166/t/290186.aspx . and other alike questions on forum. But I still cannot find a solution. My launchpad runs msp430g2xx3_uscia0_uart_01_9600.c correctly, but when I change to msp430g2xx3_uscia0_uart_01_115k, there is no response. Then I add a Timer(show as below) to my code and see the output, but then I see nothing but spase outputting.
#pragma vector=TIMER0_A0_VECTOR __interrupt void Timer_A (void) { while(!(IFG2&UCA0TXIFG)); UCA0TXBUF = '*'; }