feat: While using Flex & Steppir or Ultrabeam can prevent transmit when antenna is moving

This commit is contained in:
2026-07-16 19:51:25 +02:00
parent 28b6f04ea4
commit c9fd1379e1
8 changed files with 125 additions and 20 deletions
+2
View File
@@ -2473,6 +2473,7 @@ export namespace main {
baud: number;
follow: boolean;
step_khz: number;
tx_inhibit: boolean;
static createFrom(source: any = {}) {
return new UltrabeamSettings(source);
@@ -2489,6 +2490,7 @@ export namespace main {
this.baud = source["baud"];
this.follow = source["follow"];
this.step_khz = source["step_khz"];
this.tx_inhibit = source["tx_inhibit"];
}
}
export class UltrabeamStatusInfo {