Browse Source

Merge pull request #1477 from MRprusa3d/PFW-723

PID / manage_heater
PavelSindler 5 years ago
parent
commit
eec869b73a
1 changed files with 3 additions and 2 deletions
  1. 3 2
      Firmware/temperature.cpp

+ 3 - 2
Firmware/temperature.cpp

@@ -587,9 +587,10 @@ void checkExtruderAutoFans()
 
 #endif // any extruder auto fan pins set
 
-void resetPID(uint8_t extruder)                   // ready for eventually parameters adjusting
+// ready for eventually parameters adjusting
+void resetPID(uint8_t)                            // only for compiler-warning elimination (if function do nothing)
+//void resetPID(uint8_t extruder)
 {
-extruder=extruder;                                // only for compiler-warning elimination (if function do nothing)
 }
 
 void manage_heater()