|
@ -24,10 +24,6 @@ |
|
|
#include "../../module/printcounter.h" |
|
|
#include "../../module/printcounter.h" |
|
|
#include "../../lcd/ultralcd.h" |
|
|
#include "../../lcd/ultralcd.h" |
|
|
|
|
|
|
|
|
#if ENABLED(EXTENSIBLE_UI) |
|
|
|
|
|
#include "../../lcd/extensible_ui/ui_api.h" |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|
* M75: Start print timer |
|
|
* M75: Start print timer |
|
|
*/ |
|
|
*/ |
|
@ -40,9 +36,6 @@ void GcodeSuite::M75() { |
|
|
*/ |
|
|
*/ |
|
|
void GcodeSuite::M76() { |
|
|
void GcodeSuite::M76() { |
|
|
print_job_timer.pause(); |
|
|
print_job_timer.pause(); |
|
|
#if ENABLED(EXTENSIBLE_UI) |
|
|
|
|
|
ExtUI::onPrintTimerPaused(); |
|
|
|
|
|
#endif |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
@ -50,9 +43,6 @@ void GcodeSuite::M76() { |
|
|
*/ |
|
|
*/ |
|
|
void GcodeSuite::M77() { |
|
|
void GcodeSuite::M77() { |
|
|
print_job_timer.stop(); |
|
|
print_job_timer.stop(); |
|
|
#if ENABLED(EXTENSIBLE_UI) |
|
|
|
|
|
ExtUI::onPrintTimerStopped(); |
|
|
|
|
|
#endif |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
#if ENABLED(PRINTCOUNTER) |
|
|
#if ENABLED(PRINTCOUNTER) |
|
|