我需要使用波特率为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.有人可以告诉我如何逐步改变它吗?
答案 0 :(得分:1)
似乎这是OSX中stty命令的常见问题而没有解决。
答案 1 :(得分:0)
我可以通过运行屏幕会话暂时设置波特率
$ screen /dev/cu.usbserial-FTHHQD0C 115200
并打开另一个终端来运行我的脚本。
答案 2 :(得分:0)
设置固定波特率值的其他选项是:
cat
重定向输出(以保持端口打开): cat -v /dev/tty.usbserial-A103BTIB
stty -f /dev/tty.usbserial-A103BTIB 115200
波特率保持设置状态。