Browse Source

Don't say "heating complete" unless done

Scott Lahteine 8 years ago
parent
commit
68ba45572e
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      Marlin/Marlin_main.cpp

+ 3
- 2
Marlin/Marlin_main.cpp View File

@@ -4816,7 +4816,8 @@ inline void gcode_M109() {
4816 4816
 
4817 4817
   } while (wait_for_heatup && TEMP_CONDITIONS);
4818 4818
 
4819
-  LCD_MESSAGEPGM(MSG_HEATING_COMPLETE);
4819
+  if (wait_for_heatup) LCD_MESSAGEPGM(MSG_HEATING_COMPLETE);
4820
+
4820 4821
   KEEPALIVE_STATE(IN_HANDLER);
4821 4822
 }
4822 4823
 
@@ -4934,7 +4935,7 @@ inline void gcode_M109() {
4934 4935
 
4935 4936
     } while (wait_for_heatup && TEMP_BED_CONDITIONS);
4936 4937
 
4937
-    LCD_MESSAGEPGM(MSG_BED_DONE);
4938
+    if (wait_for_heatup) LCD_MESSAGEPGM(MSG_BED_DONE);
4938 4939
     KEEPALIVE_STATE(IN_HANDLER);
4939 4940
   }
4940 4941
 

Loading…
Cancel
Save