From 4e76cfd1541bb25e8be86170483d3bb1ffb2de2c Mon Sep 17 00:00:00 2001 From: Just Call Me Koko Date: Tue, 17 Jan 2023 11:47:21 -0500 Subject: [PATCH] Adjust SD update phrasing --- esp32_marauder/SDInterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esp32_marauder/SDInterface.cpp b/esp32_marauder/SDInterface.cpp index 8edb47a..ba95420 100644 --- a/esp32_marauder/SDInterface.cpp +++ b/esp32_marauder/SDInterface.cpp @@ -97,7 +97,7 @@ void SDInterface::runUpdate() { display_obj.tft.setTextColor(TFT_RED); display_obj.tft.println(F(text_table2[0])); #endif - Serial.println(F("Error, update.bin is not a file")); + Serial.println(F("Error, could not find \"update.bin\"")); #ifdef HAS_SCREEN display_obj.tft.setTextColor(TFT_WHITE); #endif @@ -111,7 +111,7 @@ void SDInterface::runUpdate() { #ifdef HAS_SCREEN display_obj.tft.println(F(text_table2[1])); #endif - Serial.println(F("Try to start update")); + Serial.println(F("Starting update over SD. Please wait...")); this->performUpdate(updateBin, updateSize); } else {