Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2022-08-07 00:33:56 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-08-07 00:33:56 +0300
commit62f23e2281b9a345cebf811ee2306fab49bd63ce (patch)
tree631284bee1326202d6c51873f53e8d1b10609090
parentbd288d3cf6d102bd922543516222693582a46dc9 (diff)
Minor change to WiFi diagnostics
-rw-r--r--src/Networking/ESP8266WiFi/WiFiInterface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Networking/ESP8266WiFi/WiFiInterface.cpp b/src/Networking/ESP8266WiFi/WiFiInterface.cpp
index ee284d91..24ef7662 100644
--- a/src/Networking/ESP8266WiFi/WiFiInterface.cpp
+++ b/src/Networking/ESP8266WiFi/WiFiInterface.cpp
@@ -880,7 +880,7 @@ const char* WiFiInterface::TranslateEspResetReason(uint32_t reason) noexcept
void WiFiInterface::Diagnostics(MessageType mtype) noexcept
{
- platform.MessageF(mtype, "- WiFi -\nNetwork state is %s\n", GetStateName());
+ platform.MessageF(mtype, "= WiFi =\nNetwork state is %s\n", GetStateName());
platform.MessageF(mtype, "WiFi module is %s\n", TranslateWiFiState(currentMode));
platform.MessageF(mtype, "Failed messages: pending %u, notready %u, noresp %u\n", transferAlreadyPendingCount, readyTimeoutCount, responseTimeoutCount);