Browse Source

Followup to 50af1d1

pull/1/head
Scott Lahteine 6 years ago
parent
commit
a163c89c6a
  1. 2
      Marlin/src/gcode/bedlevel/M420.cpp
  2. 4
      Marlin/src/gcode/bedlevel/mbl/G29.cpp
  3. 4
      Marlin/src/lcd/language/language_en.h

2
Marlin/src/gcode/bedlevel/M420.cpp

@ -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)

4
Marlin/src/gcode/bedlevel/mbl/G29.cpp

@ -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:

4
Marlin/src/lcd/language/language_en.h

@ -539,10 +539,10 @@
#ifndef MSG_AUTOTEMP
#define MSG_AUTOTEMP _UxGT("Autotemp")
#endif
#ifndef MSG_ON
#ifndef MSG_LCD_ON
#define MSG_LCD_ON _UxGT("On")
#endif
#ifndef MSG_OFF
#ifndef MSG_LCD_OFF
#define MSG_LCD_OFF _UxGT("Off")
#endif
#ifndef MSG_PID_P

Loading…
Cancel
Save