Browse Source

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

Simon Oliver 11 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,8 +1494,7 @@ void process_commands()
1494 1494
         if(code_seen('P')) bedKp = code_value();
1495 1495
         if(code_seen('I')) bedKi = scalePID_i(code_value());
1496 1496
         if(code_seen('D')) bedKd = scalePID_d(code_value());
1497
-        // Scale the Bed PID values by PID_dT
1498
-        scaleBedPID();
1497
+
1499 1498
         updatePID();
1500 1499
         SERIAL_PROTOCOL(MSG_OK);
1501 1500
 		SERIAL_PROTOCOL(" p:");

Loading…
Cancel
Save