Browse Source

Disable all heaters on temp error

Scott Lahteine 10 years ago
parent
commit
28c87ec81b
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      Marlin/temperature.cpp

+ 1
- 0
Marlin/temperature.cpp View File

627
         // Has it failed to increase enough?
627
         // Has it failed to increase enough?
628
         if (degHotend(e) < watch_target_temp[e]) {
628
         if (degHotend(e) < watch_target_temp[e]) {
629
           // Stop!
629
           // Stop!
630
+          disable_all_heaters();
630
           _temp_error(e, MSG_HEATING_FAILED, MSG_HEATING_FAILED_LCD);
631
           _temp_error(e, MSG_HEATING_FAILED, MSG_HEATING_FAILED_LCD);
631
         }
632
         }
632
         else {
633
         else {

Loading…
Cancel
Save