-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.toml
82 lines (74 loc) · 1.55 KB
/
config.example.toml
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Main TOML config file for radio daemon
[info]
name = "Test Radio Daemon"
desc = "Radio daemon for testing and development"
[network]
ip = "0.0.0.0"
port = 8801
# Radio control configuration
[radio]
type = "sb9600" # valid options are "none", "sb9600", and "cm108"
rxOnly = false
[none]
zone = "RX Only Zone Name"
chan = "RX Only Channel Name"
[sb9600]
head = "W9" # head type (O5, M3, or W9)
port = "COM12" # serial port for serial control
# Configure your audio devices here
# Run `daemon list-audio` to get the proper names/paths for your audio devices
[audio]
txDevice = "C-Media USB Headphone Set, USB Audio"
rxDevice = "C-Media USB Headphone Set, USB Audio"
# Recording parameters for audio files
[recording]
enabled = true
path = ""
# Text Lookups for zone/channel text
[lookups]
zoneLookup = [
["Match", "Replace"],
["Z", "Test Zone Name"]
]
chanLookup = [
["IAA P25", "N9IAA VHF P25"],
["N9IAA WX", "N9IAA Simulcast"]
]
# Softkey Definitions
[softkeys]
buttonBinding = [
[ "btn_top_1", "MON" ],
[ "btn_top_2", "LPWR" ],
[ "btn_top_3", "SCAN" ],
[ "btn_top_4", "DIR" ],
[ "btn_top_5", "SEC" ],
[ "btn_top_6", "" ],
[ "btn_kp_1", "CALL" ],
[ "btn_kp_2", "PAGE" ],
[ "btn_kp_3", "TGRP" ],
[ "btn_kp_4", "" ],
[ "btn_kp_5", "" ],
[ "btn_kp_6", "" ],
[ "btn_kp_7", "" ],
[ "btn_kp_8", "" ],
[ "btn_kp_9", "" ],
[ "btn_kp_*", "RCL" ],
[ "btn_kp_0", "" ],
[ "btn_kp_#", "DEL" ],
[ "btn_home", "HOME" ],
[ "btn_sel", "SEL" ]
]
softkeyList = [
"MON",
"DEL",
"LPWR",
"SCAN",
"DIR",
"HOME",
"CALL",
"PAGE",
"TGRP",
"SEC",
"RCL",
"SEL"
]