Other Parts Discussed in Thread: SYSCONFIG
Hi TI,
After checked the sysconfig in the Code Composer Studio, the Maimum setting of the baud rate of UART is 921600.
How could we set to 1M baud rate of UART?
Please help to share the procedure.
Thanks.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi Jarvis,
What SDK version are you using?
The UART2 driver supports configuring the baudrate to 1M like so:
UART2_Params_init(&uartParams); uartParams.baudRate = 1000000;
Regards,
Arthur
Hi Jarvis,
I was asking about the version, such as 6.40, 5,40 or so..
Did you get to try the UART2 driver and the code snippet that I gave you?
Regards,
Arthur
Hi Arthur,
The SDK version that Iused is 6.30.
I still try to verify the method that your provided, and the testing is ongoing.
Thanks.