Hi All,
I need to use the uart with baudrate 19200.
I saw the MSP_EXP430F5529LP.c the table
const UARTUSCIA_BaudrateConfig uartUSCIABaudrates[] = {
/* {baudrate, input clock, prescalar, UCBRFx, UCBRSx, oversampling} */
{
.outputBaudrate = 115200,
.inputClockFreq = 8192000,
.prescalar = 4,
.hwRegUCBRFx = 7,
.hwRegUCBRSx = 0,
.oversampling = 1
},
{9600, 8192000, 53, 5, 0, 1},
{9600, 32768, 3, 0, 3, 0},
};
where baudrate 19200 is missing.
I added the line for 19200 with the data from the application note regarding UART config.
{19200, 8192000, 26, 1, 0, 1},
but the uart is not working :-(
Someone works with different params?
Thanks
Fabio
