Disable all heaters on temp error

This commit is contained in:
Scott Lahteine 2015-05-08 23:17:25 -07:00
parent 79106638a8
commit 28c87ec81b

View File

@ -627,6 +627,7 @@ void manage_heater() {
// Has it failed to increase enough?
if (degHotend(e) < watch_target_temp[e]) {
// Stop!
disable_all_heaters();
_temp_error(e, MSG_HEATING_FAILED, MSG_HEATING_FAILED_LCD);
}
else {