From 1c52d76668cafb28a1838825107e38362cd31c6c Mon Sep 17 00:00:00 2001 From: Robby Candra Date: Thu, 20 Feb 2020 15:22:08 +0700 Subject: [PATCH] Serial redirect for Move Command when stopping (#16906) --- Marlin/src/gcode/queue.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Marlin/src/gcode/queue.cpp b/Marlin/src/gcode/queue.cpp index eca6d5cb1d..21d6d773ee 100644 --- a/Marlin/src/gcode/queue.cpp +++ b/Marlin/src/gcode/queue.cpp @@ -469,6 +469,7 @@ void GCodeQueue::get_serial_commands() { #if ENABLED(BEZIER_CURVE_SUPPORT) case 5: #endif + PORT_REDIRECT(i); // Reply to the serial port that sent the command SERIAL_ECHOLNPGM(MSG_ERR_STOPPED); LCD_MESSAGEPGM(MSG_STOPPED); break;