view scripts/minicom.sh @ 1050:223df8e9c694 draft

make.sh: Fix probing for python2.x and be verbose in error reporting
author Elie De Brauwer <eliedebrauwer@gmail.com>
date Fri, 30 Aug 2013 23:59:10 +0200
parents 2428870ce50c
children
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

SPEED="$2"
[ -z "$SPEED" ] && SPEED=115200

stty $SPEED -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.