This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/Marlin/src/gcode/stats/M75-M78.cpp

74 lines
1.7 KiB
C++
Raw Normal View History

/**
* Marlin 3D Printer Firmware
2019-06-28 06:57:50 +02:00
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
2019-06-28 06:57:50 +02:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
*
* 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
#include "../../MarlinCore.h" // for startOrResumeJob
/**
* M75: Start print timer
*/
2018-10-08 22:44:05 +02:00
void GcodeSuite::M75() {
startOrResumeJob();
2018-10-08 22:44:05 +02:00
}
/**
* M76: Pause print timer
*/
2018-10-08 22:44:05 +02:00
void GcodeSuite::M76() {
print_job_timer.pause();
}
/**
* M77: Stop print timer
*/
2018-10-08 22:44:05 +02:00
void GcodeSuite::M77() {
2019-10-27 23:49:27 +01:00
print_job_timer.stop();
2018-10-08 22:44:05 +02:00
}
#if ENABLED(PRINTCOUNTER)
/**
* 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
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-16 11:27:45 +02:00
#endif // PRINTCOUNTER