blob: 58685c6d6f7b783a03271159934a29aa61eaba4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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.
|