diff options
author | Rob Landley <rob@landley.net> | 2007-12-16 00:04:17 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-12-16 00:04:17 -0600 |
commit | 3e09c88b0db4d5a0dad64c24448b437c0045c145 (patch) | |
tree | 1b61cd6d2f413aa1e0b58b6f6c156f3e6f3e2c5f /scripts | |
parent | b4ed76279fb4de3e94fee55ac31e1c99b0745ad6 (diff) | |
download | toybox-3e09c88b0db4d5a0dad64c24448b437c0045c145.tar.gz |
Script to use stty with netcat -f to talk to a serial port.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/minicom.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/minicom.sh b/scripts/minicom.sh new file mode 100755 index 00000000..b22e1056 --- /dev/null +++ b/scripts/minicom.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# If you want to use toybox netcat to talk to a serial port, use this. + +if [ ! -f "$1" ] +then + echo "Usage: minicom.sh /dev/ttyS0" + exit 1 +fi + +stty 115200 -F "$1" +stty raw -echo -ctlecho -F "$1" +stty raw -echo # Need to do it on stdin, too. +./toybox netcat -f "$1" +stty cooked echo # Put stdin back. |