改变MAC终端的波特率stty

时间:2015-12-11 21:46:36

标签: macos terminal serial-port 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.有人可以告诉我如何逐步改变它吗?

3 个答案:

答案 0 :(得分:1)

似乎这是OSX中stty命令的常见问题而没有解决。

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

答案 1 :(得分:0)

我可以通过运行屏幕会话暂时设置波特率

$ screen /dev/cu.usbserial-FTHHQD0C 115200

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

答案 2 :(得分:0)

设置固定波特率值的其他选项是:

  1. 启动与USB端口的连接,在单独的终端窗口中通过cat重定向输出(以保持端口打开):

cat -v /dev/tty.usbserial-A103BTIB

  1. 设置波特:

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

波特率保持设置状态。