Browse Source

Name magic value 20 to MAX_OVERSHOOT_PID_AUTOTUNE

to make it better findable.
pull/1/head
AnHardt 9 years ago
parent
commit
97ca1b3f4d
  1. 3
      Marlin/temperature.cpp

3
Marlin/temperature.cpp

@ -312,7 +312,8 @@ void PID_autotune(float temp, int extruder, int ncycles)
} }
} }
} }
if (input > temp + 20) { #define MAX_OVERSHOOT_PID_AUTOTUNE 20
if (input > temp + MAX_OVERSHOOT_PID_AUTOTUNE) {
SERIAL_PROTOCOLLNPGM(MSG_PID_TEMP_TOO_HIGH); SERIAL_PROTOCOLLNPGM(MSG_PID_TEMP_TOO_HIGH);
return; return;
} }

Loading…
Cancel
Save