Fix failure to compile with heated bed: remove call to non-existant scaleBedPID().
This commit is contained in:
parent
93f0463b21
commit
5d5909fc25
@ -1494,8 +1494,7 @@ void process_commands()
|
|||||||
if(code_seen('P')) bedKp = code_value();
|
if(code_seen('P')) bedKp = code_value();
|
||||||
if(code_seen('I')) bedKi = scalePID_i(code_value());
|
if(code_seen('I')) bedKi = scalePID_i(code_value());
|
||||||
if(code_seen('D')) bedKd = scalePID_d(code_value());
|
if(code_seen('D')) bedKd = scalePID_d(code_value());
|
||||||
// Scale the Bed PID values by PID_dT
|
|
||||||
scaleBedPID();
|
|
||||||
updatePID();
|
updatePID();
|
||||||
SERIAL_PROTOCOL(MSG_OK);
|
SERIAL_PROTOCOL(MSG_OK);
|
||||||
SERIAL_PROTOCOL(" p:");
|
SERIAL_PROTOCOL(" p:");
|
||||||
|
Loading…
Reference in New Issue
Block a user