Skip to content
Snippets Groups Projects
Commit a163c89c authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Followup to 50af1d1e

parent fea2363a
Branches
Tags
No related merge requests found
...@@ -212,7 +212,7 @@ void GcodeSuite::M420() { ...@@ -212,7 +212,7 @@ void GcodeSuite::M420() {
} }
SERIAL_ECHO_START(); SERIAL_ECHO_START();
SERIAL_ECHOPGM("Bed Leveling ") SERIAL_ECHOPGM("Bed Leveling ");
serialprintln_onoff(planner.leveling_active); serialprintln_onoff(planner.leveling_active);
#if ENABLED(ENABLE_LEVELING_FADE_HEIGHT) #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
......
...@@ -79,13 +79,13 @@ void GcodeSuite::G29() { ...@@ -79,13 +79,13 @@ void GcodeSuite::G29() {
switch (state) { switch (state) {
case MeshReport: case MeshReport:
SERIAL_PROTOCOLPGM("Mesh Bed Leveling ");
if (leveling_is_valid()) { if (leveling_is_valid()) {
SERIAL_PROTOCOLPGM("State: ");
serialprintln_onoff(planner.leveling_active); serialprintln_onoff(planner.leveling_active);
mbl.report_mesh(); mbl.report_mesh();
} }
else else
SERIAL_PROTOCOLLNPGM("Mesh bed leveling has no data."); SERIAL_PROTOCOLLNPGM("has no data.");
break; break;
case MeshStart: case MeshStart:
......
...@@ -539,10 +539,10 @@ ...@@ -539,10 +539,10 @@
#ifndef MSG_AUTOTEMP #ifndef MSG_AUTOTEMP
#define MSG_AUTOTEMP _UxGT("Autotemp") #define MSG_AUTOTEMP _UxGT("Autotemp")
#endif #endif
#ifndef MSG_ON #ifndef MSG_LCD_ON
#define MSG_LCD_ON _UxGT("On") #define MSG_LCD_ON _UxGT("On")
#endif #endif
#ifndef MSG_OFF #ifndef MSG_LCD_OFF
#define MSG_LCD_OFF _UxGT("Off") #define MSG_LCD_OFF _UxGT("Off")
#endif #endif
#ifndef MSG_PID_P #ifndef MSG_PID_P
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment