Good day,
I have uncovered a bug in the C2000WARE V1.00.3.00 release, specifically targeting the F2837xD chip.
The SCI_setConfig() function in the driverlib (line 71) calculates the divider as follows:
divider = ((lspclkHz / (baud * 8U)) - 1U);
Which is wrong, it should be:
divider = lspclkHz / ((baud * 8U) - 1U);
Kind regards,
SR

