implement dca commands:

- DCA added to Client struct
- dca command added to both CLIs

help mds updated
This commit is contained in:
2026-02-10 01:16:44 +00:00
parent 873ff87429
commit cf470181a1
9 changed files with 247 additions and 1 deletions

View File

@@ -3,9 +3,10 @@ package xair
var xairAddressMap = map[string]string{
"main": "/lr",
"strip": "/ch/%02d",
"bus": "/bus/%01d",
"bus": "/bus/%d",
"headamp": "/headamp/%02d",
"snapshot": "/-snap",
"dca": "/dca/%d",
}
var x32AddressMap = map[string]string{
@@ -16,6 +17,7 @@ var x32AddressMap = map[string]string{
"bus": "/bus/%02d",
"headamp": "/headamp/%03d",
"snapshot": "/-snap",
"dca": "/dca/%d",
}
func addressMapFromMixerKind(kind mixerKind) map[string]string {