更改MAC终端上的波特率stty

我需要使用波特率为115200的USB串行电缆。我尝试使用MACbook终端应用程序中的stty命令设置速率,如下所示:

$stty -f /dev/tty.usbserial-A103BTIB 115200

并确认如下设置;

$stty -f /dev/tty.usbserial-A103BTIB -a

&speed 9600 baud; 0 rows; 0 columns;
lflags: -icanon -isig -iexten -echo -echoe -echok -echoke -echonl
    -echoctl -echoprt -altwerase -noflsh -tostop -flusho -pendin
    -nokerninfo -extproc
iflags: -istrip -icrnl -inlcr -igncr -ixon -ixoff -ixany -imaxbel -iutf8
    -ignbrk -brkint -inpck -ignpar -parmrk
oflags: -opost -onlcr -oxtabs -onocr -onlret
cflags: cread cs8 -parenb -parodd hupcl -clocal -cstopb crtscts -dsrflow
    -dtrflow -mdmbuf
cchars: discard = ^O; dsusp = ^Y; eof = ^D; eol = <undef>;
eol2 = <undef>; erase = ^?; intr = ^C; kill = ^U; lnext = ^V;
min = 1; quit = ^; reprint = ^R; start = ^Q; status = ^T;
stop = ^S; susp = ^Z; time = 0; werase = ^W;

它看起来波特率是9600.有人告诉我如何改变这一步一步?


这似乎是OSX中stty命令的常见问题,并未解决。

https://discussions.apple.com/thread/3798003?tstart=0


我能够通过运行屏幕会话临时设置波特率

$ screen /dev/cu.usbserial-FTHHQD0C 115200

并打开另一个终端来运行我的脚本。

链接地址: http://www.djcxy.com/p/66823.html

上一篇: change the baud rate stty on MAC terminal

下一篇: Pyserial using default system serial configuration