Improve filament runout handling in FTDI EVE Touch UI

- On filament runout, take the user to the tune menu where they can initiate a filament change or resume the print.
This commit is contained in:
Marcio Teixeira
2021-01-15 12:59:27 -07:00
committed by Scott Lahteine
parent 9bbe9455cf
commit d03c3980de
4 changed files with 17 additions and 3 deletions

View File

@@ -943,6 +943,10 @@ namespace ExtUI {
feedrate_percentage = constrain(value, 10, 500);
}
bool awaitingUserConfirm() {
return wait_for_user;
}
void setUserConfirmed() {
TERN_(HAS_RESUME_CONTINUE, wait_for_user = false);
}