-
Notifications
You must be signed in to change notification settings - Fork 15
/
settings.py.template
63 lines (54 loc) · 2.75 KB
/
settings.py.template
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
TMP_PATH = './tmp/digiskr/' ## tmp directory to put wave files and etc.
LOG_PATH = './log/'
LOG_TO_FILE = False
LOG_BACKUP_COUNT = 30
LOG_SPOTS = False ## log spots to log/spots/{wsprnet|pskreport}/{station}, split by date
WSJTX = {
'decoding_depth_global': 3, ## global settings
'decoding_depth_modes': { ## mode-specific setting: FT8/JT65/JT9/FT4
'FT8': 3
},
'interval': {
'FST4W': 120 ## available intervals: [120, 300, 900, 1800]
}
}
DECODER_QUEUE = {
'maxsize': 10,
'workers': 3
}
STATIONS = {
'szsdr': { ## name of kiwisdr station
'server_host': 'szsdr.ddns.net', ## url of your kiwisdr station
'server_port': 8073, ## port of kiwi
'password': 'passwor0d', ## password if needed
'tlimit_password': 'passwor0d', ## password to bypass time limited, if needed
'callsign': 'BD7MQB', ## your callsign
'grid': 'OL72an', ## your grid/locator, if none set will use the kiwisdr's setting
#'antenna' : 'Longwire/Mini-whip' ## if none set, it'll read the antenna information from the kiwisdr
},
'cdsdr': { ## name of kiwisdr station
'server_host': 'cdkiwisdr.ddns.net', ## url of your kiwisdr station
'server_port': 8073, ## port of kiwi
'password': 'passwor0d', ## password if needed
'tlimit_password': 'passwor0d', ## password to bypass time limited, if needed
'callsign': 'BD7MQB-3', ## your grid/locator, if none set will use the kiwisdr's setting
'grid': 'OM10wq', ## your grid
},
}
SCHEDULES = {
# '*': {'szsdr': [20]},
# simple used:
# '21:00-08:00': {'szsdr': [20, 30, 40, 60, 80, 160]},
# '08:00-14:30': {'szsdr': [10, 12, 15, 17, 20, 30]},
# '14:30-21:00': {'szsdr': [10, 15, 17, 20, 30, 40]},
# band hops example:
# # four slots all FT8, the last one is rotate between 60-80-160 when localtime is 21:00-08:00
# '21:00-08:00': {'szsdr': [20, 30, '40~', '60|80|160']},
# # when localtime is 08:00-12:00
# '08:00-12:00': {
# # station no.1, slot1 is rotate between 20(FT8)-20(FT4), slot3 is 40(FT8)-40(FT4)
# 'szsdr': ['20|20+', 30, '40~|40+', '60|80|160'],
# # station no.2, slot1 is rotate between 10-12-15-17-20-30-40 at mode FT8, then 20-30-40 at mode FT4
# 'szsdr': ['10|12|15|17|20|30|40|20+|30+|40+'],
# }
}