-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsending_practice
More file actions
executable file
·30 lines (21 loc) · 943 Bytes
/
sending_practice
File metadata and controls
executable file
·30 lines (21 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#! /bin/tcsh
###############################################################################
# Sending Practice - J.B.Attili - 2012
# Script to start monitor sending practice with nano IO interface
###############################################################################
set BAUD = 38400
###############################################################################
# Open list of anagrams
xreader ~/AA2IL/CW/1-sending.pdf &
# Locate arduino device
echo " "
set DEVICE="/dev/serial/by-id/usb-1a86_USB2.0-Ser_-if00-port0"
echo DEVICE=$DEVICE
# Start monitor so we can adjust speed, etc.
echo "\n******************************************************************"
echo "\nStarting miniterm - Use Ctrl-] to exit ..."
echo "\nUse ~~ to view list of keyer command, ~? to see current settings ...\n"
echo "^ increases speed in incr, \| decreases speed"
set CMD="python3 -m serial.tools.miniterm $DEVICE $BAUD"
echo CMD=$CMD
$CMD