From 29e835d101c66899414b092770a766d2e55f6004 Mon Sep 17 00:00:00 2001 From: Luc Date: Mon, 5 Dec 2016 06:05:52 +0100 Subject: [PATCH] Fix issue with latest marlin some answer start with ok , so remove the filter on ok --- esp3d/command.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/esp3d/command.cpp b/esp3d/command.cpp index e2bbae59..81dd49d9 100644 --- a/esp3d/command.cpp +++ b/esp3d/command.cpp @@ -496,9 +496,6 @@ bool COMMAND::check_command(String buffer, tpipe output, bool handlelockserial) #if ((FIRMWARE_TARGET == REPETIER) || (FIRMWARE_TARGET == REPETIER4DV)) //save time no need to continue if ((buffer.indexOf("busy:") > -1) || (buffer.startsWith("wait")))return false; -#endif - //because some answer start by ok ... -#if (FIRMWARE_TARGET != SMOOTHIEWARE) if (buffer.startsWith("ok"))return false; #endif //if direct access to SDCard no need to handle the M20 command answer