Skip to content

Commit 619ff4a

Browse files
committed
Fix capitalization
1 parent 33e5845 commit 619ff4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Firmware/RTK_Surveyor/menuMessages.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,11 @@ void menuMessages()
230230
if (response == false)
231231
systemPrintln("menuMessages: Failed to enable messages - Try 2");
232232
else
233-
systemPrintln("menuMessages: messages successfully enabled");
233+
systemPrintln("menuMessages: Messages successfully enabled");
234234
}
235235
else
236236
{
237-
systemPrintln("menuMessages: messages successfully enabled");
237+
systemPrintln("menuMessages: Messages successfully enabled");
238238
}
239239

240240
setLoggingType(); //Update Standard, PPP, or custom for icon selection
@@ -409,7 +409,7 @@ void beginLogging(const char *customFileName)
409409
char rstReason[30];
410410
switch (esp_reset_reason())
411411
{
412-
case ESP_RST_UNKNOWN: strcpy(rstReason, "ESP_RST_UNKNOWN"); break;
412+
case ESP_RST_UNKNOWN : strcpy(rstReason, "ESP_RST_UNKNOWN"); break;
413413
case ESP_RST_POWERON : strcpy(rstReason, "ESP_RST_POWERON"); break;
414414
case ESP_RST_SW : strcpy(rstReason, "ESP_RST_SW"); break;
415415
case ESP_RST_PANIC : strcpy(rstReason, "ESP_RST_PANIC"); break;

0 commit comments

Comments
 (0)