Hello. I want to transfer signals between the PC and Jetson Nano, using serial communication. I use a USB connection on my PC and link the other end of the transmission line to J41 on the Jetson Nano., I use J41 UART port pins 8 and 10.
But there is some wrong :
import serial
import serial.tools.list_ports
port_list = list(serial.tools.list_ports.comports())
port_list
The output is . It means there is no comports that Jetson Nano provide.
I don’t know how to do next. So, can you tell me how to read data via UART from my Jetson Nano with J41?
Thank you.