fix(icom): the console PTT carries the microphone on a network station
Keying alone is right on USB, where the operator talks into the radio's own mic; over the LAN it transmitted silence. The console button now goes through one binding that picks the road: network To-radio → the same key-and-stream path as the Talk button, USB → key and nothing more.
This commit is contained in:
Vendored
+2
@@ -630,6 +630,8 @@ export function HaltDecodeTx(arg1:string,arg2:boolean):Promise<void>;
|
||||
|
||||
export function HasBuiltinReferences(arg1:string):Promise<boolean>;
|
||||
|
||||
export function IcomConsolePTT(arg1:boolean):Promise<void>;
|
||||
|
||||
export function IcomRefresh():Promise<void>;
|
||||
|
||||
export function IcomScopeData():Promise<cat.ScopeSweep>;
|
||||
|
||||
@@ -1198,6 +1198,10 @@ export function HasBuiltinReferences(arg1) {
|
||||
return window['go']['main']['App']['HasBuiltinReferences'](arg1);
|
||||
}
|
||||
|
||||
export function IcomConsolePTT(arg1) {
|
||||
return window['go']['main']['App']['IcomConsolePTT'](arg1);
|
||||
}
|
||||
|
||||
export function IcomRefresh() {
|
||||
return window['go']['main']['App']['IcomRefresh']();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user