From 2990c6c45feca5bce92fd9d41ffbfab2d53f67d7 Mon Sep 17 00:00:00 2001
From: AnHardt <github@kitelab.de>
Date: Wed, 20 May 2015 14:03:14 +0200
Subject: [PATCH] Use new kill_() for _temp_error()

instead of stop(). We really want to require a reset and no chance to set a new temperature.
---
 Marlin/temperature.cpp | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/Marlin/temperature.cpp b/Marlin/temperature.cpp
index 3cb1fc2d75..d361e008d6 100644
--- a/Marlin/temperature.cpp
+++ b/Marlin/temperature.cpp
@@ -457,9 +457,7 @@ inline void _temp_error(int e, const char *serial_msg, const char *lcd_msg) {
     #endif
   }
   #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
-    disable_all_steppers();
-    Stop();
-    while (true) lcd_update();
+    kill_();
   #endif
 }
 
-- 
GitLab