Removed powerExit -- it wasn't working

This commit is contained in:
Jm Casler
2020-10-10 21:54:27 -07:00
parent c16acb904e
commit b17a8d7a6a
2 changed files with 5 additions and 9 deletions
+4
View File
@@ -1026,6 +1026,10 @@ void DebugInfo::drawFrameSettings(OLEDDisplay *display, OLEDDisplayUiState *stat
String(days) + "d " + (hours < 10 ? "0" : "") + String(hours) + ":" + (minutes < 10 ? "0" : "") +
String(minutes) + ":" + (seconds < 10 ? "0" : "") + String(seconds));
// Show CPU Frequency.
display->drawString(x + SCREEN_WIDTH - display->getStringWidth("CPU " + String(getCpuFrequencyMhz()) + "MHz"), y + FONT_HEIGHT * 1,
"CPU " + String(getCpuFrequencyMhz()) + "MHz");
// Line 3
drawGPSAltitude(display, x, y + FONT_HEIGHT * 2, gpsStatus);