串口设备数据反馈环路可能吗?

串口设备数据反馈环路可能吗?

是否可以/dev/ttyS8在一个终端窗口中对串行设备进行一些回显,然后在第二个终端窗口中进行猫/dev/ttyS8和显示该文件中的数据?

答案1

如果将串行环回适配器插入指定的串行端口:是。

Serial Loopback Adapter
Pinout:
* Receive and transmit (2 & 3)
* Request to send and Clear to send (7 & 8)
* Data carrier detect, Data set ready and Data terminal ready (1, 6 & 4)

如果你想调试通过串行端口通信的应用程序,你可以使用这个命令:

socat /dev/ttyS0,raw,echo=0 SYSTEM:'tee input.txt | socat - "PTY,link=/tmp/ttyV0,raw,echo=0,waitslave" | tee output.txt'

(从https://unix.stackexchange.com/a/225904/127903

相关内容