Skip to content
Snippets Groups Projects
Unverified Commit 1f3ad461 authored by Ben Lye's avatar Ben Lye Committed by GitHub
Browse files

Update M49.cpp

Fix M49 so that it does not hang the terminal console.
parent bee2b5ee
Branches
Tags
No related merge requests found
......@@ -33,8 +33,9 @@
void GcodeSuite::M49() {
g26_debug_flag ^= true;
SERIAL_PROTOCOLPGM("G26 Debug ");
serialprintPGM(g26_debug_flag ? PSTR("on.") : PSTR("off."));
SERIAL_PROTOCOLPGM("G26 Debug: ");
serialprintPGM(g26_debug_flag ? PSTR("On") : PSTR("Off"));
SERIAL_EOL();
}
#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