forked from etamme/clogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clogger.cfg.sample
64 lines (53 loc) · 1.41 KB
/
clogger.cfg.sample
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#User Info
#Once you update this, go check your contest files to make sure those exchanges are also correct!
mycall="K8RDH"
myname="ROB"
mystate="OH"
myskcc="22449"
# you MUST include ONE contest config to set contest specific
# variables. NOTE, anything set in the contest
# config will override settings in this file
contest="./contests/default.cfg"
#LotW Info
# The password on your LotW cert (if none, leave as "")
certpass=""
# LotW QTH Name
lotw_station="Home"
#Rig Info
#rigctl device number (run rigctl -l to get a list)
rig="373"
#Rig Device Info
userig="true"
rigdevice="/dev/ttyUSB0"
#CW Keyer
usekeyer="true"
#Change kewwithhamlib to true to key using hamlib rather than cwkeyer.sh for
#rigs that support it (e.g., the IC-7300).
keywithhamlib="false"
#Change cwdevice if you have an external keyer. Otherwise, match radio
cwdevice="/dev/ttyUSB0"
#
# DO NOT CHANGE THIS UNLESS YOU KNOW WHAT YOU ARE DOING
#
#additional options for rigctl
rigoptions="--set-conf=dtr_state=OFF --set-conf=rts_state=OFF"
# modes we are working - cw will use the keyer, any other mode will not
# the array is zero indexed
modes=("CW" "SSB" "FT8")
mode_index=0
mode=${modes[0]}
# how you like to ask for a repeat
myagn="?"
# where is the rigctl command
rigctl="./rigctl"
# command to execute keyer
keyer="python keyer.py"
if [ -z ${station_call} ]
then
station_call="$mycall"
fi
if [ "$mode" != "CW" ]
then
usekeyer="false"
cwdevice=""
fi