From 76f6e4dfef8a69436768346c6fece84f16d85c5c Mon Sep 17 00:00:00 2001 From: Aleksei Lebedev <1329824+LastDragon-ru@users.noreply.github.com> Date: Sat, 27 May 2023 09:44:40 +0400 Subject: [PATCH] Workaround for https://github.com/MarlinFirmware/Marlin/issues/25157 --- Marlin/src/gcode/queue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/gcode/queue.cpp b/Marlin/src/gcode/queue.cpp index c951fc633364..1973d3be4558 100644 --- a/Marlin/src/gcode/queue.cpp +++ b/Marlin/src/gcode/queue.cpp @@ -472,7 +472,7 @@ void GCodeQueue::get_serial_commands() { // The line number must be in the correct sequence. if (gcode_N != serial.last_N + 1 && !M110) { // A request-for-resend line was already in transit so we got two - oops! - if (WITHIN(gcode_N, serial.last_N - 1, serial.last_N)) continue; + //if (WITHIN(gcode_N, serial.last_N - 1, serial.last_N)) continue; // A corrupted line or too high, indicating a lost line gcode_line_error(F(STR_ERR_LINE_NO), p); break;