Scott Lahteine 6 years ago
parent
commit
a163c89c6a

+ 1
- 1
Marlin/src/gcode/bedlevel/M420.cpp View File

212
   }
212
   }
213
 
213
 
214
   SERIAL_ECHO_START();
214
   SERIAL_ECHO_START();
215
-  SERIAL_ECHOPGM("Bed Leveling ")
215
+  SERIAL_ECHOPGM("Bed Leveling ");
216
   serialprintln_onoff(planner.leveling_active);
216
   serialprintln_onoff(planner.leveling_active);
217
 
217
 
218
   #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
218
   #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)

+ 2
- 2
Marlin/src/gcode/bedlevel/mbl/G29.cpp View File

79
 
79
 
80
   switch (state) {
80
   switch (state) {
81
     case MeshReport:
81
     case MeshReport:
82
+      SERIAL_PROTOCOLPGM("Mesh Bed Leveling ");
82
       if (leveling_is_valid()) {
83
       if (leveling_is_valid()) {
83
-        SERIAL_PROTOCOLPGM("State: ");
84
         serialprintln_onoff(planner.leveling_active);
84
         serialprintln_onoff(planner.leveling_active);
85
         mbl.report_mesh();
85
         mbl.report_mesh();
86
       }
86
       }
87
       else
87
       else
88
-        SERIAL_PROTOCOLLNPGM("Mesh bed leveling has no data.");
88
+        SERIAL_PROTOCOLLNPGM("has no data.");
89
       break;
89
       break;
90
 
90
 
91
     case MeshStart:
91
     case MeshStart:

+ 2
- 2
Marlin/src/lcd/language/language_en.h View File

539
 #ifndef MSG_AUTOTEMP
539
 #ifndef MSG_AUTOTEMP
540
   #define MSG_AUTOTEMP                        _UxGT("Autotemp")
540
   #define MSG_AUTOTEMP                        _UxGT("Autotemp")
541
 #endif
541
 #endif
542
-#ifndef MSG_ON
542
+#ifndef MSG_LCD_ON
543
   #define MSG_LCD_ON                          _UxGT("On")
543
   #define MSG_LCD_ON                          _UxGT("On")
544
 #endif
544
 #endif
545
-#ifndef MSG_OFF
545
+#ifndef MSG_LCD_OFF
546
   #define MSG_LCD_OFF                         _UxGT("Off")
546
   #define MSG_LCD_OFF                         _UxGT("Off")
547
 #endif
547
 #endif
548
 #ifndef MSG_PID_P
548
 #ifndef MSG_PID_P

Loading…
Cancel
Save