blob: b22e105638b57f1b1d16de48f720befe8620f8e9 (
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 [ ! -f "$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.
|