Hi,
We have been trying to read and write on the UART port of the Jetson (pins 8 and 10). The 40 pins header is configured with uarta on these two pins, and should be on dev/ttyTHS1. We have tried to run a simple python script which writes a dummy message to the serial port. The port is configured at a baud rate of 115200 with no parity and one stop bit. We have verified that the port is open (serial_port.is_open returns True in the python script) but no signal can be measured with an oscilloscope on the TX pin.
We are using minicom to try and read from the RX pin (we are sending data from a microcontroller at 3.3V logic, with shared grounds) but we also receive nothing. We’ve also tried to disable nvgetty and rebooting the Jetson. We are also currently running Jetpack 4.6.
We’ve also tried to directly set the GPIO pins using the Jetson.GPIO python library, but no signal can be measured (we used pin 13 with BOARD pin numbering)
There is no ttyTHS3 port. Looking at other posts, it seems like uarta (what we use) is ttyTHS0 and uartb is ttyTHS1. We’ve tried to read both ports but had no success. We suspect this is also a consequence of the fact that we can’t read/write to any of the GPIOs on the Jetson