annotate scripts/minicom.sh @ 1776:7bf68329eb3b draft default tip

Repository switched to git at https://github.com/landley/toybox
author Rob Landley <rob@landley.net>
date Thu, 09 Apr 2015 02:28:32 -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.