从终端读取串口参数

从终端读取串口参数

假设我运行一个读取/写入串行端口 (/dev/ttyS0) 的程序。我知道该程序使用波特率19200并动态设置奇偶校验位(标记奇偶校验或空间奇偶校验)。

是否可以从终端检查这些参数?

我努力了setserial -g /dev/ttyS0。这是输出(与奇偶校验位和波特率无关):

/dev/ttyS0, UART: 16550A, Port: 0x03f8, IRQ: 4

答案1

改用stty

stty -F /dev/ttyS0 -a

输出示例:

speed 9600 baud; rows 0; columns 0; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W; lnext = ^V; discard = ^O; min = 0; time = 0;
-parenb -parodd -cmspar cs8 -hupcl -cstopb cread clocal -crtscts
-ignbrk -brkint -ignpar -parmrk inpck -istrip -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany -imaxbel -iutf8
-opost -olcuc -ocrnl -onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
-isig -icanon -iexten -echo -echoe -echok -echonl -noflsh -xcase -tostop -echoprt -echoctl -echoke -flusho -extproc

答案2

我个人screen在处理串行控制台时使用

screen /dev/ttyS0 19200

相关内容