We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25ee214 commit 61c1decCopy full SHA for 61c1dec
Firmware/RTK_Surveyor/menuBase.ino
@@ -7,6 +7,14 @@ void menuBase()
7
systemPrintln();
8
systemPrintln("Menu: Base");
9
10
+ //Print the combined HAE APC if we are in the given mode
11
+ if (settings.fixedBase == true && settings.fixedBaseCoordinateType == COORD_TYPE_GEODETIC)
12
+ {
13
+ systemPrintf("Total Height Above Ellipsoid - Antenna Phase Center (HAE APC): %0.3fmm\r\n",
14
+ (((settings.fixedAltitude * 1000) + settings.antennaHeight + settings.antennaReferencePoint) / 1000)
15
+ );
16
+ }
17
+
18
systemPrint("1) Toggle Base Mode: ");
19
if (settings.fixedBase == true) systemPrintln("Fixed/Static Position");
20
else systemPrintln("Use Survey-In");
0 commit comments