Browse Source

Prevent M420 error from disconnecting OctoPrint

Just echo the error instead of labeling it `Error:`.
Scott Lahteine 6 years ago
parent
commit
433518de74
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/bedlevel/M420.cpp

+ 1
- 1
Marlin/src/gcode/bedlevel/M420.cpp View File

183
 
183
 
184
     }
184
     }
185
     else if (to_enable || seenV) {
185
     else if (to_enable || seenV) {
186
-      SERIAL_ERROR_MSG("Invalid mesh.");
186
+      SERIAL_ECHO_MSG("Invalid mesh.");
187
       goto EXIT_M420;
187
       goto EXIT_M420;
188
     }
188
     }
189
 
189
 

Loading…
Cancel
Save