Skip to content

Commit 7ff65e7

Browse files
committed
Add L-Band direct to AP Config control
1 parent e7cbc7a commit 7ff65e7

File tree

1 file changed

+3
-3
lines changed
  • Firmware/RTK_Surveyor/AP-Config/src

1 file changed

+3
-3
lines changed

Firmware/RTK_Surveyor/AP-Config/src/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function parseIncoming(msg) {
123123

124124
ge("muxChannel2").innerHTML = "Wheel/Dir Encoder";
125125
}
126-
else if (platformPrefix == "Facet L-Band") {
126+
else if (platformPrefix == "Facet L-Band" || platformPrefix == "Facet L-Band Direct") {
127127
show("baseConfig");
128128
hide("sensorConfig");
129129
show("ppConfig");
@@ -563,7 +563,7 @@ function validateFields() {
563563
}
564564

565565
//PointPerfect Config
566-
if (platformPrefix == "Facet L-Band") {
566+
if (platformPrefix == "Facet L-Band" || platformPrefix == "Facet L-Band Direct") {
567567
if (ge("enablePointPerfectCorrections").checked == true) {
568568
value = ge("pointPerfectDeviceProfileToken").value;
569569
if (value.length > 0)
@@ -1066,7 +1066,7 @@ document.addEventListener("DOMContentLoaded", (event) => {
10661066
if (platformPrefix == "Facet") {
10671067
ge("antennaReferencePoint").value = 61.4;
10681068
}
1069-
else if (platformPrefix == "Facet L-Band") {
1069+
else if (platformPrefix == "Facet L-Band" || platformPrefix == "Facet L-Band Direct") {
10701070
ge("antennaReferencePoint").value = 69.0;
10711071
}
10721072
else {

0 commit comments

Comments
 (0)