Browse Source

Merge pull request #8607 from benlye/patch-1

[2.0.x] Fix M49 so that it does not hang the terminal console
Scott Lahteine 7 years ago
parent
commit
6e944a413c
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/gcode/bedlevel/ubl/M49.cpp

+ 2
- 2
Marlin/src/gcode/bedlevel/ubl/M49.cpp View File

@@ -33,8 +33,8 @@
33 33
 
34 34
 void GcodeSuite::M49() {
35 35
   g26_debug_flag ^= true;
36
-  SERIAL_PROTOCOLPGM("G26 Debug ");
37
-  serialprintPGM(g26_debug_flag ? PSTR("on.") : PSTR("off."));
36
+  SERIAL_PROTOCOLPGM("G26 Debug: ");
37
+  serialprintPGM(g26_debug_flag ? PSTR("On\n") : PSTR("Off\n"));
38 38
 }
39 39
 
40 40
 #endif // G26_MESH_VALIDATION

Loading…
Cancel
Save