We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 057302b commit 19521d1Copy full SHA for 19521d1
Marlin/src/gcode/temp/M140_M190.cpp
@@ -83,10 +83,11 @@ void GcodeSuite::M140_M190(const bool isM190) {
83
84
thermalManager.setTargetBed(temp);
85
86
- TERN_(PRINTJOB_TIMER_AUTOSTART, thermalManager.auto_job_check_timer(true, false));
87
-
88
ui.set_status_P(thermalManager.isHeatingBed() ? GET_TEXT(MSG_BED_HEATING) : GET_TEXT(MSG_BED_COOLING));
89
+ // with PRINTJOB_TIMER_AUTOSTART, M190 can start the timer, and M140 can stop it
+ TERN_(PRINTJOB_TIMER_AUTOSTART, thermalManager.auto_job_check_timer(isM190, !isM190));
90
+
91
if (isM190)
92
thermalManager.wait_for_bed(no_wait_for_cooling);
93
}
0 commit comments