2017-09-06 13:28:31 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-06 13:28:31 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-06 13:28:31 +02: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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-09-16 11:27:45 +02:00
|
|
|
#include "../gcode.h"
|
|
|
|
#include "../../module/printcounter.h"
|
2019-02-12 22:58:56 +01:00
|
|
|
#include "../../lcd/ultralcd.h"
|
2017-09-16 11:27:45 +02:00
|
|
|
|
2019-10-24 22:35:40 +02:00
|
|
|
#include "../../Marlin.h" // for startOrResumeJob
|
|
|
|
|
2017-09-24 01:09:14 +02:00
|
|
|
/**
|
|
|
|
* M75: Start print timer
|
|
|
|
*/
|
2018-10-08 22:44:05 +02:00
|
|
|
void GcodeSuite::M75() {
|
2019-10-24 22:35:40 +02:00
|
|
|
startOrResumeJob();
|
2018-10-08 22:44:05 +02:00
|
|
|
}
|
2017-09-24 01:09:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* M76: Pause print timer
|
|
|
|
*/
|
2018-10-08 22:44:05 +02:00
|
|
|
void GcodeSuite::M76() {
|
|
|
|
print_job_timer.pause();
|
|
|
|
}
|
2017-09-24 01:09:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* M77: Stop print timer
|
|
|
|
*/
|
2018-10-08 22:44:05 +02:00
|
|
|
void GcodeSuite::M77() {
|
|
|
|
print_job_timer.stop();
|
|
|
|
}
|
2017-09-24 01:09:14 +02:00
|
|
|
|
|
|
|
#if ENABLED(PRINTCOUNTER)
|
|
|
|
|
2017-09-06 13:28:31 +02:00
|
|
|
/**
|
|
|
|
* M78: Show print statistics
|
|
|
|
*/
|
2017-09-16 11:27:45 +02:00
|
|
|
void GcodeSuite::M78() {
|
2019-02-12 22:58:56 +01:00
|
|
|
if (parser.intval('S') == 78) { // "M78 S78" will reset the statistics
|
2017-09-06 13:28:31 +02:00
|
|
|
print_job_timer.initStats();
|
2019-02-12 22:58:56 +01:00
|
|
|
ui.reset_status();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HAS_SERVICE_INTERVALS
|
|
|
|
if (parser.seenval('R')) {
|
|
|
|
print_job_timer.resetServiceInterval(parser.value_int());
|
|
|
|
ui.reset_status();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
print_job_timer.showStats();
|
2017-09-06 13:28:31 +02:00
|
|
|
}
|
2017-09-16 11:27:45 +02:00
|
|
|
|
|
|
|
#endif // PRINTCOUNTER
|