feat: added mute and AGC-T to Flex control

This commit is contained in:
2026-06-27 21:03:13 +02:00
parent 19c5045dc6
commit 464a1c702c
7 changed files with 41 additions and 10 deletions
+2
View File
@@ -251,6 +251,7 @@ type FlexTXState struct {
AGCMode string `json:"agc_mode,omitempty"`
AGCThreshold int `json:"agc_threshold"`
AudioLevel int `json:"audio_level"`
Mute bool `json:"mute"`
NB bool `json:"nb"`
NBLevel int `json:"nb_level"`
NR bool `json:"nr"`
@@ -312,6 +313,7 @@ type FlexController interface {
SetAGCMode(string) error
SetAGCThreshold(int) error
SetAudioLevel(int) error
SetMute(bool) error
SetNB(bool) error
SetNBLevel(int) error
SetNR(bool) error