Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Firmware/RTK_Everywhere/menuSystem.ino
Original file line number Diff line number Diff line change
Expand Up @@ -1233,6 +1233,9 @@ void menuOperation()
systemPrint("9) UART Receive Buffer Size: ");
systemPrintln(settings.uartReceiveBufferSize);

// Tilt
systemPrintf("10) Force Tilt detect\r\n");

// PPL Float Lock timeout
systemPrint("11) Set PPL RTK Fix Timeout (seconds): ");
if (settings.pplFixTimeoutS > 0)
Expand Down Expand Up @@ -1327,6 +1330,11 @@ void menuOperation()
ESP.restart();
}
}

// Allow the user to force tilt detection in case they switched the GNSS
// board in the Facet FP to one with the same GNSS but now has the tilt sensor
else if (incoming == 10)
tiltForceDetectionReboot();
else if (incoming == 11)
{
getNewSetting("Enter number of seconds in RTK float using PPL, before reset", 0, 3600,
Expand Down