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-09-26 13:27:08 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-09-26 13:27:08 +0300
commitb6374d73bdd559ded4b2603fa9144934af4cb2c4 (patch)
tree3f3b735bedbaeeb492d518eb34a9fd49ff15e051
parent0779d49f52b6f7d6cb4426167a3a0ae4428c2938 (diff)
Handle AUX2 port in message box code
-rw-r--r--src/Platform/Platform.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Platform/Platform.cpp b/src/Platform/Platform.cpp
index c1ff4ae8..10361a8b 100644
--- a/src/Platform/Platform.cpp
+++ b/src/Platform/Platform.cpp
@@ -3539,7 +3539,7 @@ void Platform::SendAlert(MessageType mt, const char *_ecv_array message, const c
MessageF(MessageType::LogInfo, "M291: - %s - %s", (strlen(title) > 0 ? title : "[no title]"), message);
- mt = (MessageType)(mt & (UsbMessage | TelnetMessage));
+ mt = (MessageType)(mt & (UsbMessage | TelnetMessage | Aux2Message));
if (mt != 0)
{
if (strlen(title) > 0)
@@ -4593,7 +4593,7 @@ GCodeResult Platform::ConfigurePort(GCodeBuffer& gb, const StringRef& reply) THR
# if HAS_SBC_INTERFACE
if (reprap.UsingSbcInterface())
{
- reply.copy("SD card not supported in SBC mode");
+ reply.copy("SD card attached to Duet is not supported in SBC mode");
return GCodeResult::error;
}
# endif