Skip to content

Commit af81f62

Browse files
committed
Fix typo. Update MCP73833 diagnostic print
1 parent abd79bd commit af81f62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Firmware/RTK_Everywhere/Display.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2388,7 +2388,7 @@ void paintSystemTest()
23882388

23892389
oled->setFont(QW_FONT_5X7); // Set font to smallest
23902390

2391-
if (present.microSD)
2391+
if (present.microSd)
23922392
{
23932393
oled->setCursor(xOffset, yOffset); // x, y
23942394
oled->print("SD:");

Firmware/RTK_Everywhere/System.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ void updateBattery()
9898
((uint8_t)readAnalogPinAsDigital(pin_chargerLED));
9999
systemPrint("MCP73833 Charger: ");
100100
if (combinedStat == 3)
101-
systemPrintln("standby / fault");
101+
systemPrintln("standby");
102102
else if (combinedStat == 2)
103103
systemPrintln("battery is charging");
104104
else if (combinedStat == 1)

0 commit comments

Comments
 (0)