Hi,recently I use fr4133 code_example: msp430fr413x_euscia0_uart_01 and found some quention of UCA0MCTLW register. Here is the code_example below.
/**********************************************************************************/
UCA0CTLW0 |= UCSWRST;
UCA0CTLW0 |= UCSSEL__SMCLK;
// Baud Rate calculation
// 8000000/(16*9600) = 52.083
// Fractional portion = 0.083
// User's Guide Table 14-4: UCBRSx = 0x49
// UCBRFx = int ( (52.083-52)*16) = 1
UCA0BR0 = 52; // 8000000/16/9600
UCA0BR1 = 0x00;
UCA0MCTLW = 0x4900 | UCOS16 | UCBRF_1;
UCA0CTLW0 &= ~UCSWRST; // Initialize eUSCI
UCA0IE |= UCRXIE; // Enable USCI_A0 RX interrupt
/**********************************************************************************/
The Fractional portion is 0.083,and i look up for User's Guide Table 14-4,UCBRSx=0x04, but the code_example says UCBRSx=0x49,why?

