Marlin_Firmware/Marlin/src/lcd/menu/menu_job_recovery.cpp

58 lines
1.7 KiB
C++
Raw Normal View History

2018-10-27 22:48:28 -05:00
/**
* Marlin 3D Printer Firmware
2020-02-03 08:00:57 -06:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2018-10-27 22:48:28 -05:00
*
* Based on Sprinter and grbl.
2019-06-27 23:57:50 -05:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2018-10-27 22:48:28 -05:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2020-07-22 22:20:14 -05:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-10-27 22:48:28 -05:00
*
*/
//
// Job Recovery Menu
//
#include "../../inc/MarlinConfigPre.h"
2020-04-23 21:42:38 -05:00
#if BOTH(HAS_LCD_MENU, POWER_LOSS_RECOVERY)
2018-10-27 22:48:28 -05:00
2020-08-21 05:21:34 -05:00
#include "menu_item.h"
2018-10-27 22:48:28 -05:00
#include "../../gcode/queue.h"
#include "../../sd/cardreader.h"
2020-03-13 16:29:29 -05:00
#include "../../feature/powerloss.h"
2018-10-27 22:48:28 -05:00
static void lcd_power_loss_recovery_resume() {
ui.return_to_status();
queue.inject_P(PSTR("M1000"));
2018-10-27 22:48:28 -05:00
}
void lcd_power_loss_recovery_cancel() {
2020-01-13 20:52:24 -06:00
recovery.cancel();
ui.return_to_status();
2018-10-27 22:48:28 -05:00
}
// TODO: Display long filename with Cancel/Resume buttons
// Requires supporting methods in PLR class.
2018-10-27 22:48:28 -05:00
void menu_job_recovery() {
ui.defer_status_screen();
2018-10-27 22:48:28 -05:00
START_MENU();
2018-11-16 20:47:07 -06:00
STATIC_ITEM(MSG_OUTAGE_RECOVERY);
2019-10-03 05:38:30 -05:00
ACTION_ITEM(MSG_RESUME_PRINT, lcd_power_loss_recovery_resume);
ACTION_ITEM(MSG_STOP_PRINT, lcd_power_loss_recovery_cancel);
2018-10-27 22:48:28 -05:00
END_MENU();
}
#endif // HAS_LCD_MENU && POWER_LOSS_RECOVERY