Hi all,
I am using an MSP430F149 . I am connecting serially to a RN-41 Bluetooth transceiver. The baud rate desired for the communication is 9600. I checked out pretty much every table and baudrate calculator out there and got to the point that for the USART module to work at 9600 I need:
UBR00=0x6D; UBR10=0x00; UMCTL0=0x44;
However, when I work with this settings, the data sent is incorrect. I start receiving different characters from the ones that I am sending. I had to work with the following settings to make it work ok:
UBR00=0x55; UBR10=0x00; UMCTL0=0x03;Which I got from randomly changing the values until it worked.
What I want to know is a way to measure the tx/rx to make sure that the baud rate is set ok on the controller.
thanks in advance for any help
-sednus