annotate scripts/minicom.sh @ 1393:3e8ab37a4b60 draft

Find bugfixes. The check for -print vs -print0 was tested before I optimized out the "-" in the strcmps, and I didn't adjust the offset or retest it. (Ooops.) Also, I wasn't clearing the ! value when descending into parentheticals, so "find . -name blah -o \! \( -stuff -o -thing \)" acted like it had a spurious second ! before -stuff inside the parentheses.
author Rob Landley <rob@landley.net>
date Fri, 18 Jul 2014 18:31:41 -0500
parents 2428870ce50c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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.