TLDR - 터미널에서 구성했지만 추가된 내용이 onlcr
표시되지 않습니다.\r
두 개의 FTDI 직렬 변환기를 함께 연결하고 둘 다 내 컴퓨터에 연결하면 두 개의 /dev/ttyUSB0
포트가 생깁니다./dev/ttyUSB1
다른 터미널에서 열면 picocom
메시지를 주고받으며 올바르게 연결되었는지 확인할 수 있으며, 사용을 종료하면 C-A C-Q
포트 구성이 그대로 유지됩니다.
$ stty -F /dev/ttyUSB0 -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 = 1; 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
$ stty -F /dev/ttyUSB1 -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 = 1; 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
이제 두 개의 직렬 포트를 수신하기 위해 두 개의 터미널을 열면 다음과 같습니다.
$ cat -v /dev/ttyUSB0
$ cat -v /dev/ttyUSB1
(사실 이 특정 실험에서는 이 중 하나만 필요했지만 둘 다 있어도 나쁠 것은 없습니다)
그런 다음 세 번째 터미널에서 다음과 같은 줄을 보냅니다.
$ echo this is a test > /dev/ttyUSB1
그런 다음 캐리지 리턴을 인쇄하고 있음을 증명하기 위해 다른 줄을 보내십시오.
$ echo -e 'this is another test\r' > /dev/ttyUSB1
그러면 이것이 내가 보는 것입니다:
$ cat -v /dev/ttyUSB0
this is a test
this is another test^M
^M
왜 1행과 2행을 볼 수 없나요 ^M^M
?
icrnl
두 장치 모두에서 꺼져 있으므로 다시 변환해서는 안 됩니다. 그렇죠?
왜 이런 일이 발생합니까(또는 발생하지 않습니까)?
답변1
귀하의 stty는 -opost
모든 출력 처리가 꺼진 것으로 나타나 onlcr
아무런 효과가 없습니다.