1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
-
-
- #include "../gcode.h"
- #include "../../module/printcounter.h"
-
-
- void GcodeSuite::M75() { print_job_timer.start(); }
-
-
- void GcodeSuite::M76() { print_job_timer.pause(); }
-
-
- void GcodeSuite::M77() { print_job_timer.stop(); }
-
- #if ENABLED(PRINTCOUNTER)
-
-
- void GcodeSuite::M78() {
- if (parser.intval('S') == 78)
- print_job_timer.initStats();
- else
- print_job_timer.showStats();
- }
-
- #endif
|