Browse Source

Disable all heaters on temp error

pull/1/head
Scott Lahteine 9 years ago
parent
commit
28c87ec81b
  1. 1
      Marlin/temperature.cpp

1
Marlin/temperature.cpp

@ -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 {

Loading…
Cancel
Save