Browse Source

Fix failure to compile with heated bed: remove call to non-existant scaleBedPID().

pull/1/head
Simon Oliver 12 years ago
committed by daid303
parent
commit
5d5909fc25
  1. 3
      Marlin/Marlin_main.cpp

3
Marlin/Marlin_main.cpp

@ -1494,8 +1494,7 @@ void process_commands()
if(code_seen('P')) bedKp = code_value();
if(code_seen('I')) bedKi = scalePID_i(code_value());
if(code_seen('D')) bedKd = scalePID_d(code_value());
// Scale the Bed PID values by PID_dT
scaleBedPID();
updatePID();
SERIAL_PROTOCOL(MSG_OK);
SERIAL_PROTOCOL(" p:");

Loading…
Cancel
Save