Merge pull request #2111 from AnHardt/at

Name magic value 20 to MAX_OVERSHOOT_PID_AUTOTUNE
This commit is contained in:
Scott Lahteine 2015-05-18 05:25:51 -07:00
commit cad248fc55

View File

@ -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);
return;
}