Hi,
May i know how to configure uart5 speed to 12Mbps?
SDK version: ti-processor-sdk-linux-am62xx-evm-08.04.01.09
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,
May i know how to configure uart5 speed to 12Mbps?
SDK version: ti-processor-sdk-linux-am62xx-evm-08.04.01.09
Thanks.
Hi Cyra,
Yes, all uart support up to 3.6Mbps.
3.6Mbps is not a standard baud rate, so you cannot directly set it with stty. You would have to use custom_divisor in kernel ioctl TIOCSSERIAL. Please see function set_baud_divisor() linked below as an example.
https://github.com/cbrake/linux-serial-test/blob/master/linux-serial-test.c#L123