feat: TCI implementation for CAT Control of SunSDR

This commit is contained in:
2026-07-03 15:11:32 +02:00
parent 6ec31b61ce
commit 812e4f05e5
5 changed files with 334 additions and 3 deletions
+4
View File
@@ -1176,6 +1176,8 @@ export namespace main {
icom_port: string;
icom_baud: number;
icom_addr: number;
tci_host: string;
tci_port: number;
poll_ms: number;
delay_ms: number;
digital_default: string;
@@ -1195,6 +1197,8 @@ export namespace main {
this.icom_port = source["icom_port"];
this.icom_baud = source["icom_baud"];
this.icom_addr = source["icom_addr"];
this.tci_host = source["tci_host"];
this.tci_port = source["tci_port"];
this.poll_ms = source["poll_ms"];
this.delay_ms = source["delay_ms"];
this.digital_default = source["digital_default"];