Though my problem doesn’t look new, but none of the tricks seems working for me. I tried the same with a cellular modem over UART but didn’t succeed. Then as a new start, I am now trying to connect a RFID reader module over UART1 on J41 of the board.
I am using Jetson nano development kit -A02. Trying using /dev/ttyTHS1 but no success.
sudo chmod 777 /dev/ttyTHS1 - already done
For ref, Pin 8 and 10 pull down (GND) using 10K resistance.
there’re 3 UARTs supported on Nano platform.
UART0 on the M.2 Key.
UART1 at J41 40-pin connector.
UART2 for debug, only Tx and Rx available.
please also refer to Jetson Nano Product Design Guide, J41 is by default a UART serial console.
To use UART2 for no debug use-case, just remove console-port from the kernel device tree. you should also check Topic 109102 for details.
thanks
please modify tegra210-porg-p3448-common.dtsi file and remove console-port from the kernel DTS;
you should also check Kernel Customization chapter to build the device tree blob, i.e. *.dtbo.
after that, please re-flash the DTB partition to update the device tree blob, you may see Flashing a Specific Partition for reference,
thanks