working reconnect and slices
This commit is contained in:
@@ -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"
|
||||||
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user