We use jetpack 5.1.2 and require serial port UART 1 to support a baud rate configuration of 10Mbps. We can configure up to 4Mbps using STTY configuration. How can we configure 10Mbps?
Read the Orin-TRM-DP10508002-v1.0p. pdf manual, UART supports up to 12Mbps
The error message for configuring a 10Mbps baud rate using STTY is as follows:
We tried to modify the kernel, but still couldn’t achieve a 10Mbps baud rate configuration.
include/uapi/asm-generic/termbits.h:
Add: # define B10000000 0010020
Are you using UART to open a serial terminal to the AGX Orin? To look at bootloader logs, for example? Have you tried using a different terminal emulator?
As a quick follow up, if you are trying to change the speed that your Jetson serial interface uses, perhaps you can try editing the /boot/extlinux/extlinux.conf file. This file should include an APPEND line which contains a section that might look something like this: console=ttyS0,115200n8. You can try changing this speed to the one that might work for your use case.