Browse Source

Use new kill_() for _temp_error()

instead of stop(). We really want to require a reset and no chance to set a new temperature.
AnHardt 10 years ago
parent
commit
2990c6c45f
1 changed files with 1 additions and 3 deletions
  1. 1
    3
      Marlin/temperature.cpp

+ 1
- 3
Marlin/temperature.cpp View File

@@ -457,9 +457,7 @@ inline void _temp_error(int e, const char *serial_msg, const char *lcd_msg) {
457 457
     #endif
458 458
   }
459 459
   #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
460
-    disable_all_steppers();
461
-    Stop();
462
-    while (true) lcd_update();
460
+    kill_();
463 461
   #endif
464 462
 }
465 463
 

Loading…
Cancel
Save