M76 Host Pause Feature (#21738)

This commit is contained in:
charlespick
2021-07-28 14:09:33 -07:00
committed by Scott Lahteine
parent 51d954a4fd
commit e62486a610
3 changed files with 6 additions and 1 deletions

View File

@ -3822,6 +3822,7 @@
*/
//#define HOST_ACTION_COMMANDS
#if ENABLED(HOST_ACTION_COMMANDS)
//#define HOST_PAUSE_M76
//#define HOST_PROMPT_SUPPORT
//#define HOST_START_MENU_ITEM // Add a menu item that tells the host to start
#endif

View File

@ -23,6 +23,9 @@
#include "../gcode.h"
#include "../../module/printcounter.h"
#include "../../lcd/marlinui.h"
#if ENABLED(HOST_PAUSE_M76)
#include "../../feature/host_actions.h"
#endif
#include "../../MarlinCore.h" // for startOrResumeJob
@ -38,6 +41,7 @@ void GcodeSuite::M75() {
*/
void GcodeSuite::M76() {
print_job_timer.pause();
TERN_(HOST_PAUSE_M76, host_action_pause());
}
/**