|
|
@ -1363,7 +1363,7 @@ void process_commands() |
|
|
|
st_synchronize(); |
|
|
|
codenum += millis(); // keep track of when we started waiting
|
|
|
|
previous_millis_cmd = millis(); |
|
|
|
while(millis() < codenum ){ |
|
|
|
while(millis() < codenum) { |
|
|
|
manage_heater(); |
|
|
|
manage_inactivity(); |
|
|
|
lcd_update(); |
|
|
@ -1391,7 +1391,6 @@ void process_commands() |
|
|
|
plan_bed_level_matrix.set_to_identity(); //Reset the plane ("erase" all leveling data)
|
|
|
|
#endif //ENABLE_AUTO_BED_LEVELING
|
|
|
|
|
|
|
|
|
|
|
|
saved_feedrate = feedrate; |
|
|
|
saved_feedmultiply = feedmultiply; |
|
|
|
feedmultiply = 100; |
|
|
@ -1852,9 +1851,9 @@ void process_commands() |
|
|
|
if (hasS) codenum = code_value() * 1000; // seconds to wait
|
|
|
|
|
|
|
|
if (!hasP && !hasS && *src != '\0') { |
|
|
|
while (*src == ' ') ++src; |
|
|
|
starpos = strchr(src, '*'); |
|
|
|
if (starpos != NULL) *(starpos) = '\0'; |
|
|
|
while (*src == ' ') ++src; |
|
|
|
lcd_setstatus(src); |
|
|
|
} else { |
|
|
|
LCD_MESSAGEPGM(MSG_USERWAIT); |
|
|
@ -1878,7 +1877,10 @@ void process_commands() |
|
|
|
lcd_update(); |
|
|
|
} |
|
|
|
} |
|
|
|
if (IS_SD_PRINTING) |
|
|
|
LCD_MESSAGEPGM(MSG_RESUMING); |
|
|
|
else |
|
|
|
LCD_MESSAGEPGM(WELCOME_MSG); |
|
|
|
} |
|
|
|
break; |
|
|
|
#endif |
|
|
|