feat: Implemented UDP Outbound Adif message, freq to pstrotator
This commit is contained in:
Vendored
+8
@@ -342,6 +342,8 @@ export function IcomRefresh():Promise<void>;
|
||||
|
||||
export function IcomScopeData():Promise<cat.ScopeSweep>;
|
||||
|
||||
export function IcomSendCW(arg1:string):Promise<void>;
|
||||
|
||||
export function IcomSetAFGain(arg1:number):Promise<void>;
|
||||
|
||||
export function IcomSetAGC(arg1:string):Promise<void>;
|
||||
@@ -350,8 +352,12 @@ export function IcomSetANF(arg1:boolean):Promise<void>;
|
||||
|
||||
export function IcomSetAtt(arg1:number):Promise<void>;
|
||||
|
||||
export function IcomSetBreakIn(arg1:number):Promise<void>;
|
||||
|
||||
export function IcomSetFilter(arg1:number):Promise<void>;
|
||||
|
||||
export function IcomSetKeySpeed(arg1:number):Promise<void>;
|
||||
|
||||
export function IcomSetMicGain(arg1:number):Promise<void>;
|
||||
|
||||
export function IcomSetNB(arg1:boolean):Promise<void>;
|
||||
@@ -382,6 +388,8 @@ export function IcomSetSplit(arg1:boolean):Promise<void>;
|
||||
|
||||
export function IcomSetXITOn(arg1:boolean):Promise<void>;
|
||||
|
||||
export function IcomStopCW():Promise<void>;
|
||||
|
||||
export function IcomTune():Promise<void>;
|
||||
|
||||
export function ImportADIF(arg1:string,arg2:string,arg3:boolean,arg4:boolean):Promise<adif.ImportResult>;
|
||||
|
||||
@@ -646,6 +646,10 @@ export function IcomScopeData() {
|
||||
return window['go']['main']['App']['IcomScopeData']();
|
||||
}
|
||||
|
||||
export function IcomSendCW(arg1) {
|
||||
return window['go']['main']['App']['IcomSendCW'](arg1);
|
||||
}
|
||||
|
||||
export function IcomSetAFGain(arg1) {
|
||||
return window['go']['main']['App']['IcomSetAFGain'](arg1);
|
||||
}
|
||||
@@ -662,10 +666,18 @@ export function IcomSetAtt(arg1) {
|
||||
return window['go']['main']['App']['IcomSetAtt'](arg1);
|
||||
}
|
||||
|
||||
export function IcomSetBreakIn(arg1) {
|
||||
return window['go']['main']['App']['IcomSetBreakIn'](arg1);
|
||||
}
|
||||
|
||||
export function IcomSetFilter(arg1) {
|
||||
return window['go']['main']['App']['IcomSetFilter'](arg1);
|
||||
}
|
||||
|
||||
export function IcomSetKeySpeed(arg1) {
|
||||
return window['go']['main']['App']['IcomSetKeySpeed'](arg1);
|
||||
}
|
||||
|
||||
export function IcomSetMicGain(arg1) {
|
||||
return window['go']['main']['App']['IcomSetMicGain'](arg1);
|
||||
}
|
||||
@@ -726,6 +738,10 @@ export function IcomSetXITOn(arg1) {
|
||||
return window['go']['main']['App']['IcomSetXITOn'](arg1);
|
||||
}
|
||||
|
||||
export function IcomStopCW() {
|
||||
return window['go']['main']['App']['IcomStopCW']();
|
||||
}
|
||||
|
||||
export function IcomTune() {
|
||||
return window['go']['main']['App']['IcomTune']();
|
||||
}
|
||||
|
||||
@@ -679,6 +679,8 @@ export namespace cat {
|
||||
rit_hz: number;
|
||||
rit_on: boolean;
|
||||
xit_on: boolean;
|
||||
key_speed_wpm: number;
|
||||
break_in: number;
|
||||
rf_power: number;
|
||||
mic_gain: number;
|
||||
af_gain: number;
|
||||
@@ -710,6 +712,8 @@ export namespace cat {
|
||||
this.rit_hz = source["rit_hz"];
|
||||
this.rit_on = source["rit_on"];
|
||||
this.xit_on = source["xit_on"];
|
||||
this.key_speed_wpm = source["key_speed_wpm"];
|
||||
this.break_in = source["break_in"];
|
||||
this.rf_power = source["rf_power"];
|
||||
this.mic_gain = source["mic_gain"];
|
||||
this.af_gain = source["af_gain"];
|
||||
|
||||
Reference in New Issue
Block a user