Browse Source

Never stop spinning the extruder fan on thermal failures

Yuri D'Elia 2 years ago
parent
commit
c98e133ae2
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Firmware/fancheck.cpp

+ 1 - 0
Firmware/fancheck.cpp

@@ -211,6 +211,7 @@ void checkExtruderAutoFans()
     {
         fanState &= ~1;
         fanState |= current_temperature[0] > EXTRUDER_AUTO_FAN_TEMPERATURE;
+        fanState |= get_temp_error();
     }
     setExtruderAutoFanState(fanState);
 #endif