view scripts/minicom.sh @ 262:70f36d9c5387

Add first pass at cp, totally untested, unlikely to work yet. :)
author Rob Landley <rob@landley.net>
date Wed, 20 Feb 2008 01:47:56 -0600
parents 2f7ca1a1e274
children 2428870ce50c
line wrap: on
line source

#!/bin/bash

# If you want to use toybox netcat to talk to a serial port, use this.

if [ ! -c "$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.