-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgateway.json.example
More file actions
57 lines (57 loc) · 1.42 KB
/
Copy pathgateway.json.example
File metadata and controls
57 lines (57 loc) · 1.42 KB
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
{
"callsign": "OE3GAS",
"fec": "rs",
"auth": {
"_comment": "Bilaterale HMAC-Schlüssel (Frame 0x50 AUTH). Nie ins Repo! In .gitignore.",
"enabled": false,
"keys": [
{
"key_id": 1,
"callsign": "OE1XTU",
"key_hex": "ERSETZEN_MIT_32_ZUFALLSBYTES_HEX",
"_comment": "Schlüssel generieren: python -c \"import os,binascii; print(binascii.hexlify(os.urandom(32)).decode())\""
}
]
},
"audio": {
"device": 0,
"ptt_backend": "hamlib",
"level": 10,
"hamlib_host": "localhost",
"hamlib_port": 4532
},
"rx": {
"enabled": true,
"device": null,
"scan_interval_s": 2.0,
"window_s": 9.0,
"dedup_ttl_s": 30
},
"gateway": {
"interval_s": 300,
"min_tx_gap_s": 10
},
"source": {
"adapter": "sim",
"sim": {
"frames": ["weather", "position", "text"],
"weather_interval_s": 300,
"position_interval_s": 300,
"text_interval_s": 120,
"emergency_enabled": false,
"lat": 48.2082,
"lon": 16.3738,
"alt_m": 180,
"drift": false
}
},
"web": {
"host": "0.0.0.0",
"port": 8080,
"api_key": ""
},
"log": {
"level": "INFO",
"file": null
}
}