Skip to content

Commit

Permalink
Tweaks to finishSDPrinting (#17082)
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead authored Mar 11, 2020
1 parent a31b733 commit e700455
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 14 deletions.
29 changes: 17 additions & 12 deletions Marlin/src/MarlinCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,22 +418,31 @@ void startOrResumeJob() {
}

inline void finishSDPrinting() {

bool did_state = true;
switch (card.sdprinting_done_state) {

#if HAS_RESUME_CONTINUE // Display "Click to Continue..."
case 1: // 30 min timeout with LCD, 1 min without
did_state = queue.enqueue_one_P(PSTR("M0Q1S" TERN(HAS_LCD_MENU, "1800", "60")));
break;
#endif
case 1:
did_state = print_job_timer.duration() < 60 || queue.enqueue_one_P(PSTR("M31"));
break;

case 2: print_job_timer.stop(); break;
case 2:
did_state = queue.enqueue_one_P(PSTR("M77"));
break;

case 3:
did_state = print_job_timer.duration() < 60 || queue.enqueue_one_P(PSTR("M31"));
#if ENABLED(LCD_SET_PROGRESS_MANUALLY)
ui.set_progress_done();
#endif
break;

case 4: // Display "Click to Continue..."
#if HAS_RESUME_CONTINUE // 30 min timeout with LCD, 1 min without
did_state = queue.enqueue_one_P(PSTR("M0Q1S" TERN(HAS_LCD_MENU, "1800", "60")));
#endif
break;

case 4:
case 5:
#if ENABLED(POWER_LOSS_RECOVERY)
recovery.purge();
#endif
Expand All @@ -442,10 +451,6 @@ void startOrResumeJob() {
planner.finish_and_disable();
#endif

#if ENABLED(LCD_SET_PROGRESS_MANUALLY)
ui.set_progress_done();
#endif

#if ENABLED(SD_REPRINT_LAST_SELECTED_FILE)
ui.reselect_last_file();
#endif
Expand Down
7 changes: 5 additions & 2 deletions Marlin/src/gcode/lcd/M0_M1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,17 @@ void GcodeSuite::M0_M1() {
planner.synchronize();

#if HAS_LEDS_OFF_FLAG
if (parser.seen('Q')) printerEventLEDs.onPrintCompleted(); // Change LED color for Print Completed
const bool seenQ = parser.seen('Q');
if (seenQ) printerEventLEDs.onPrintCompleted(); // Change LED color for Print Completed
#else
constexpr bool seenQ = false;
#endif

#if HAS_LCD_MENU

if (parser.string_arg)
ui.set_status(parser.string_arg, true);
else {
else if (!seenQ) {
LCD_MESSAGEPGM(MSG_USERWAIT);
#if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
ui.reset_progress_bar_timeout();
Expand Down

0 comments on commit e700455

Please sign in to comment.