Skip to content

Commit eca8175

Browse files
committed
Correct HAE calculation in menuBase - see #738
1 parent 6296ca8 commit eca8175

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firmware/RTK_Everywhere/menuBase.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ void menuBase()
2727
// Print the combined HAE APC if we are in the given mode
2828
if (settings.fixedBase == true && settings.fixedBaseCoordinateType == COORD_TYPE_GEODETIC)
2929
{
30-
systemPrintf("Total Height Above Ellipsoid - Antenna Phase Center (HAE APC): %0.3fmm\r\n",
31-
(((settings.fixedAltitude * 1000) +
30+
systemPrintf("Total Height Above Ellipsoid of Antenna Phase Center (HAE APC): %0.4fmm\r\n",
31+
((settings.fixedAltitude +
3232
(settings.antennaHeight_mm + settings.antennaPhaseCenter_mm) / 1000)));
3333
}
3434

0 commit comments

Comments
 (0)