Merge pull request #4516 from thinkyhead/rc_short_prints_quiet

Only report finished prints longer than 1 min
This commit is contained in:
Scott Lahteine 2016-08-02 21:14:30 -07:00 committed by GitHub
commit 704ae1b737

View File

@ -616,7 +616,8 @@ void CardReader::printingHasFinished() {
if (SD_FINISHED_STEPPERRELEASE)
enqueue_and_echo_commands_P(PSTR(SD_FINISHED_RELEASECOMMAND));
print_job_timer.stop();
enqueue_and_echo_commands_P(PSTR("M31"));
if (print_job_timer.duration() > 60)
enqueue_and_echo_commands_P(PSTR("M31"));
}
}