Browse Source

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

Simon Oliver 12 years ago
parent
commit
5d5909fc25
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      Marlin/Marlin_main.cpp

+ 1
- 2
Marlin/Marlin_main.cpp View File

1494
         if(code_seen('P')) bedKp = code_value();
1494
         if(code_seen('P')) bedKp = code_value();
1495
         if(code_seen('I')) bedKi = scalePID_i(code_value());
1495
         if(code_seen('I')) bedKi = scalePID_i(code_value());
1496
         if(code_seen('D')) bedKd = scalePID_d(code_value());
1496
         if(code_seen('D')) bedKd = scalePID_d(code_value());
1497
-        // Scale the Bed PID values by PID_dT
1498
-        scaleBedPID();
1497
+
1499
         updatePID();
1498
         updatePID();
1500
         SERIAL_PROTOCOL(MSG_OK);
1499
         SERIAL_PROTOCOL(MSG_OK);
1501
 		SERIAL_PROTOCOL(" p:");
1500
 		SERIAL_PROTOCOL(" p:");

Loading…
Cancel
Save