mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 15:39:31 +00:00
Reheat bed first
This commit is contained in:
parent
9acd2e176d
commit
6320928795
1 changed files with 3 additions and 3 deletions
|
@ -2127,12 +2127,12 @@ void HMI_Printing() {
|
|||
char cmd[40];
|
||||
cmd[0] = '\0';
|
||||
|
||||
#if BOTH(HAS_HOTEND, PAUSE_HEAT)
|
||||
if (resume_hotend_temp) sprintf_P(&cmd[strlen(cmd)], PSTR("M109 S%i\n"), resume_hotend_temp);
|
||||
#endif
|
||||
#if BOTH(HAS_HEATED_BED, PAUSE_HEAT)
|
||||
if (resume_bed_temp) sprintf_P(cmd, PSTR("M190 S%i\n"), resume_bed_temp);
|
||||
#endif
|
||||
#if BOTH(HAS_HOTEND, PAUSE_HEAT)
|
||||
if (resume_hotend_temp) sprintf_P(&cmd[strlen(cmd)], PSTR("M109 S%i\n"), resume_hotend_temp);
|
||||
#endif
|
||||
|
||||
strcat_P(cmd, M24_STR);
|
||||
queue.inject(cmd);
|
||||
|
|
Loading…
Reference in a new issue