This commit is contained in:
Scott Lahteine
2018-11-12 19:53:56 -06:00
parent fea2363a2e
commit a163c89c6a
3 changed files with 5 additions and 5 deletions

View File

@ -212,7 +212,7 @@ void GcodeSuite::M420() {
}
SERIAL_ECHO_START();
SERIAL_ECHOPGM("Bed Leveling ")
SERIAL_ECHOPGM("Bed Leveling ");
serialprintln_onoff(planner.leveling_active);
#if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)

View File

@ -79,13 +79,13 @@ void GcodeSuite::G29() {
switch (state) {
case MeshReport:
SERIAL_PROTOCOLPGM("Mesh Bed Leveling ");
if (leveling_is_valid()) {
SERIAL_PROTOCOLPGM("State: ");
serialprintln_onoff(planner.leveling_active);
mbl.report_mesh();
}
else
SERIAL_PROTOCOLLNPGM("Mesh bed leveling has no data.");
SERIAL_PROTOCOLLNPGM("has no data.");
break;
case MeshStart: