2015-12-11 108 views
2

我需要使用波特率爲115200的USB串行電纜。 我試圖用MACbook終端應用程序設置stty命令的速率如下;在MAC終端上更改波特率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

閱讀** man **頁面。對於OSX,您需要在關鍵字「速度」之前加上所需的波特率*數字*。 – sawdust

+0

鍵入stty -f /dev/tty.usbserial-A103BTIB速度115200,但仍然是9600 .... – sandalwalk

+0

您是否閱讀過** man **頁面?我只能在網上找到OSX 10.9 ** man **頁面。你使用什麼版本? – sawdust

回答

0

我能夠通過運行屏幕會話

$ screen /dev/cu.usbserial-FTHHQD0C 115200 

,並打開另一個終端運行我的腳本臨時設置波特率。