Skip to content
Snippets Groups Projects
Unverified Commit 6e944a41 authored by Scott Lahteine's avatar Scott Lahteine Committed by GitHub
Browse files

Merge pull request #8607 from benlye/patch-1

[2.0.x] Fix M49 so that it does not hang the terminal console
parents 967522b9 f4b16a3b
Branches
Tags
No related merge requests found
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
void GcodeSuite::M49() { void GcodeSuite::M49() {
g26_debug_flag ^= true; g26_debug_flag ^= true;
SERIAL_PROTOCOLPGM("G26 Debug "); SERIAL_PROTOCOLPGM("G26 Debug: ");
serialprintPGM(g26_debug_flag ? PSTR("on.") : PSTR("off.")); serialprintPGM(g26_debug_flag ? PSTR("On\n") : PSTR("Off\n"));
} }
#endif // G26_MESH_VALIDATION #endif // G26_MESH_VALIDATION
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment