Explorar el Código

Merge pull request #2018 from fmalpartida/bugFixing

Bug corrected: persistent HOMING message when HOME button pressed for homing.
Scott Lahteine hace 9 años
padre
commit
777f2d3820
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp Ver fichero

@@ -6095,7 +6095,7 @@ void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
6095 6095
     if (!READ(HOME_PIN)) {
6096 6096
       if (!homeDebounceCount) {
6097 6097
         enqueuecommands_P(PSTR("G28"));
6098
-        LCD_ALERTMESSAGEPGM(MSG_AUTO_HOME);
6098
+        LCD_MESSAGEPGM(MSG_AUTO_HOME);
6099 6099
       }
6100 6100
       if (homeDebounceCount < HOME_DEBOUNCE_DELAY)
6101 6101
         homeDebounceCount++;

Loading…
Cancelar
Guardar