Browse Source

Fix bug in PID Autotune report

Cameron Lai 10 years ago
parent
commit
6460709d92
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/temperature.cpp

+ 2
- 2
Marlin/temperature.cpp View File

@@ -258,14 +258,14 @@ void PID_autotune(float temp, int extruder, int ncycles)
258 258
               Kp = 0.33*Ku;
259 259
               Ki = Kp/Tu;
260 260
               Kd = Kp*Tu/3;
261
-              SERIAL_PROTOCOLLNPGM(" Some overshoot ")
261
+              SERIAL_PROTOCOLLNPGM(" Some overshoot ");
262 262
               SERIAL_PROTOCOLPGM(" Kp: "); SERIAL_PROTOCOLLN(Kp);
263 263
               SERIAL_PROTOCOLPGM(" Ki: "); SERIAL_PROTOCOLLN(Ki);
264 264
               SERIAL_PROTOCOLPGM(" Kd: "); SERIAL_PROTOCOLLN(Kd);
265 265
               Kp = 0.2*Ku;
266 266
               Ki = 2*Kp/Tu;
267 267
               Kd = Kp*Tu/3;
268
-              SERIAL_PROTOCOLLNPGM(" No overshoot ")
268
+              SERIAL_PROTOCOLLNPGM(" No overshoot ");
269 269
               SERIAL_PROTOCOLPGM(" Kp: "); SERIAL_PROTOCOLLN(Kp);
270 270
               SERIAL_PROTOCOLPGM(" Ki: "); SERIAL_PROTOCOLLN(Ki);
271 271
               SERIAL_PROTOCOLPGM(" Kd: "); SERIAL_PROTOCOLLN(Kd);

Loading…
Cancel
Save