Selaa lähdekoodia
Update M49.cpp
Fix M49 so that it does not hang the terminal console.
Ben Lye
7 vuotta sitten
vanhempi
commit
1f3ad461bc
No account linked to committer's email address
|
@@ -33,8 +33,9 @@
|
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") : PSTR("Off"));
|
|
38
|
+ SERIAL_EOL();
|
38
|
39
|
}
|
39
|
40
|
|
40
|
41
|
#endif // G26_MESH_VALIDATION
|