Mercurial > hg > toybox
annotate scripts/minicom.sh @ 401:bc435ea49b2c
Don't make toysh default to y until it does something useful.
author | Rob Landley <rob@landley.net> |
---|---|
date | Wed, 28 Dec 2011 16:50:16 -0600 |
parents | 2428870ce50c |
children |
rev | line source |
---|---|
203
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
1 #!/bin/bash |
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
2 |
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
3 # If you want to use toybox netcat to talk to a serial port, use this. |
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
4 |
208
2f7ca1a1e274
minicom.sh should check for a char device, not a file.
Rob Landley <rob@landley.net>
parents:
203
diff
changeset
|
5 if [ ! -c "$1" ] |
203
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
6 then |
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
7 echo "Usage: minicom.sh /dev/ttyS0" |
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
8 exit 1 |
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
9 fi |
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
10 |
363
2428870ce50c
Let the minicom script take the speed as an optional second argument.
Rob Landley <rob@landley.net>
parents:
208
diff
changeset
|
11 SPEED="$2" |
2428870ce50c
Let the minicom script take the speed as an optional second argument.
Rob Landley <rob@landley.net>
parents:
208
diff
changeset
|
12 [ -z "$SPEED" ] && SPEED=115200 |
2428870ce50c
Let the minicom script take the speed as an optional second argument.
Rob Landley <rob@landley.net>
parents:
208
diff
changeset
|
13 |
2428870ce50c
Let the minicom script take the speed as an optional second argument.
Rob Landley <rob@landley.net>
parents:
208
diff
changeset
|
14 stty $SPEED -F "$1" |
203
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
15 stty raw -echo -ctlecho -F "$1" |
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
16 stty raw -echo # Need to do it on stdin, too. |
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
17 ./toybox netcat -f "$1" |
bcad24801bc3
Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff
changeset
|
18 stty cooked echo # Put stdin back. |