Hello,
I am working on Flexio UART and the example works fine.
Now I am configuring the same thing in my project, but got different result.
1. In the example, the Flexio Uart Configuration is like this:

In my project, the same config is like this:

Do the differences in the red circles matter?
2. baud rate: In the config tool, both the example and my project are set as 115200, but in the code generated, they are different:
This is what's in the example. The divider is 12 and baud rate is 115384.

But in my project, the divider is 20 and the baud rate is 119047.

Why they different while the values are the same in the configuration tool?
3. In the example, the clock source is FRXC and Flexio clock is 48MHz. In my project the clock is PLL and the Flexio clock is 80MHz. Is the clock difference causing the baud rate values being different as above point #2? If so, how to set the baud rate as 115200 in my project.
Right now, I am able to receive UART messages from MCU, but all are not correct symbols. I tried different baud rates in my PC to receive the UART message from MCU, all can receive messages, but no one receives correct symbols from MCU. According to the above three differences compared to the Uart example, what might go wrong in my project?
Thanks!
Crane