Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
release/

.vscode/
.vscode/

daemon/generated-sdrtrunk/
daemon/logs/
9 changes: 8 additions & 1 deletion daemon/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ public enum RadioControlMode
TRC = 1,
SB9600 = 2,
XCMP_SER = 3,
XCMP_USB = 4
XCMP_USB = 4,
SDRTrunk = 5
}

/// <summary>
Expand All @@ -64,6 +65,12 @@ public class ControlConfig
/// Config for motorola SB9600
/// </summary>
public MotoSb9600Config Sb9600 = new MotoSb9600Config();
/// <summary>
/// Config for direct sdrtrunk audio stream ingest. This is separate from the
/// daemon listen address because the console connects to the daemon while
/// sdrtrunk connects to the source listener.
/// </summary>
public SdrTrunkConfig SdrTrunk = new SdrTrunkConfig();
}

/// <summary>
Expand Down
Loading