temperature.cpp: Fix typo of MAX_BED_PID to MAX_BED_POWER.

This commit is contained in:
David Forrest 2015-01-01 19:11:42 -05:00 committed by Alexander Hirzel
parent 217186d7bc
commit 1d5d853c9a

View File

@ -582,7 +582,7 @@ void manage_heater()
temp_dState_bed = pid_input;
pid_output = pTerm_bed + iTerm_bed - dTerm_bed;
if (pid_output > MAX_BED_PID) {
if (pid_output > MAX_BED_POWER) {
if (pid_error_bed > 0 ) temp_iState_bed -= pid_error_bed; // conditional un-integration
pid_output=PID_MAX;
} else if (pid_output < 0){