Skip to content

Commit

Permalink
🐛 Fix M420 / M851 reports (MarlinFirmware#22829)
Browse files Browse the repository at this point in the history
Followup to 79c72ed
  • Loading branch information
ManuelMcLure authored and pull[bot] committed Oct 4, 2021
1 parent 6f748de commit 7919b85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/bedlevel/M420.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ void GcodeSuite::M420_report(const bool forReplay/*=true*/) {
#if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
, SP_Z_STR, LINEAR_UNIT(planner.z_fade_height)
#endif
, " ; Leveling "
, PSTR(" ; Leveling ")
);
serialprintln_onoff(planner.leveling_active);
}
Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/gcode/probe/M851.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void GcodeSuite::M851_report(const bool forReplay/*=true*/) {
PSTR(" M851 X0 Y0 Z")
#endif
, LINEAR_UNIT(probe.offset.z)
, " ;"
, PSTR(" ;")
);
say_units();
}
Expand Down

0 comments on commit 7919b85

Please sign in to comment.