Przeglądaj źródła

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 lat temu
rodzic
commit
6e944a413c
No account linked to committer's email address
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2
    2
      Marlin/src/gcode/bedlevel/ubl/M49.cpp

+ 2
- 2
Marlin/src/gcode/bedlevel/ubl/M49.cpp Wyświetl plik

@@ -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

Ładowanie…
Anuluj
Zapisz