feat: added APF for CW in Icom

This commit is contained in:
2026-07-07 17:10:42 +02:00
parent 1cadefd207
commit ab06673854
11 changed files with 493 additions and 38 deletions
+2
View File
@@ -350,6 +350,8 @@ export function IcomSetAGC(arg1:string):Promise<void>;
export function IcomSetANF(arg1:boolean):Promise<void>;
export function IcomSetAPF(arg1:boolean):Promise<void>;
export function IcomSetAntenna(arg1:number):Promise<void>;
export function IcomSetAntiVOX(arg1:number):Promise<void>;
+4
View File
@@ -662,6 +662,10 @@ export function IcomSetANF(arg1) {
return window['go']['main']['App']['IcomSetANF'](arg1);
}
export function IcomSetAPF(arg1) {
return window['go']['main']['App']['IcomSetAPF'](arg1);
}
export function IcomSetAntenna(arg1) {
return window['go']['main']['App']['IcomSetAntenna'](arg1);
}
+2
View File
@@ -690,6 +690,7 @@ export namespace cat {
nr: boolean;
nr_level: number;
anf: boolean;
apf: boolean;
agc?: string;
preamp: number;
att: number;
@@ -736,6 +737,7 @@ export namespace cat {
this.nr = source["nr"];
this.nr_level = source["nr_level"];
this.anf = source["anf"];
this.apf = source["apf"];
this.agc = source["agc"];
this.preamp = source["preamp"];
this.att = source["att"];