working reconnect and slices

This commit is contained in:
2026-01-15 22:39:39 +01:00
parent 3e169fe615
commit 30688ad644

View File

@@ -14,3 +14,12 @@ type Status struct {
NumSlices int `json:"num_slices"` // From info command NumSlices int `json:"num_slices"` // From info command
ActiveSlices int `json:"active_slices"` // Count of active slices ActiveSlices int `json:"active_slices"` // Count of active slices
} }
// InterlockState represents possible interlock states
const (
InterlockStateReady = "READY"
InterlockStateNotReady = "NOT_READY"
InterlockStatePTTRequested = "PTT_REQUESTED"
InterlockStateTransmitting = "TRANSMITTING"
InterlockStateUnkeyRequested = "UNKEY_REQUESTED"
)