view scripts/minicom.sh @ 245:67a0839bda77

Teach perror_exit() to take a NULL argument when we just want "command: error".
author Rob Landley <rob@landley.net>
date Sun, 27 Jan 2008 15:26:08 -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.