5
votes

I need to use USB serial cable with baud rate of 115200. I tried to set the rate with stty command from MACbook terminal application as follows;

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

and confirmed the settings as follows;

$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;

It looks baud rate is till 9600. Could somebody show me how to change this step by step ?

3
Read the man page. For OSX you need to precede the desired baudrate number with the keyword speed.sawdust
typed stty -f /dev/tty.usbserial-A103BTIB speed 115200 but still 9600....sandalwalk
Did you read the man page? I can only find the OSX 10.9 man pages online. What version are you using?sawdust
Yes, I did. I use OSX 10.10. Do you change the baud speed with stty with OSX 10.9 ? Any possibility that this is an authorization problem ?sandalwalk
I don't use OSX. If you mean permissions, then maybe.sawdust

3 Answers

2
votes

It seems like this is a common problem of stty command in OSX and not solved.

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

2
votes

I was able to set the baudrate temporarily by running screen session

$ screen /dev/cu.usbserial-FTHHQD0C 115200

and opening another terminal to run my script.

0
votes

Other option to set a rigid baud value is to:

  1. Launch a connection with the usbserial port, redirecting the output by cat in separate terminal window (to keep the port open):

cat -v /dev/tty.usbserial-A103BTIB

  1. Set the baud:

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

The baud value stays set.