Bug corrected:
Persistent homing message. Message was declared as an alert, therefore it was persistent. Updated to message.
This commit is contained in:
parent
7dbb595424
commit
150a35eff8
1 changed files with 1 additions and 1 deletions
|
@ -6095,7 +6095,7 @@ void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
|
||||||
if (!READ(HOME_PIN)) {
|
if (!READ(HOME_PIN)) {
|
||||||
if (!homeDebounceCount) {
|
if (!homeDebounceCount) {
|
||||||
enqueuecommands_P(PSTR("G28"));
|
enqueuecommands_P(PSTR("G28"));
|
||||||
LCD_ALERTMESSAGEPGM(MSG_AUTO_HOME);
|
LCD_MESSAGEPGM(MSG_AUTO_HOME);
|
||||||
}
|
}
|
||||||
if (homeDebounceCount < HOME_DEBOUNCE_DELAY)
|
if (homeDebounceCount < HOME_DEBOUNCE_DELAY)
|
||||||
homeDebounceCount++;
|
homeDebounceCount++;
|
||||||
|
|
Reference in a new issue