Browse Source

temperature.cpp: Fix PID_DEBUG compile error.

David Forrest 11 years ago
parent
commit
8c4377dd63
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Marlin/temperature.cpp

+ 2
- 1
Marlin/temperature.cpp View File

@@ -449,7 +449,8 @@ void manage_heater()
449 449
           pid_output = constrain(target_temperature[e], 0, PID_MAX);
450 450
     #endif //PID_OPENLOOP
451 451
     #ifdef PID_DEBUG
452
-    SERIAL_ECHO_START(" PIDDEBUG ");
452
+    SERIAL_ECHO_START;
453
+    SERIAL_ECHO(" PID_DEBUG ");
453 454
     SERIAL_ECHO(e);
454 455
     SERIAL_ECHO(": Input ");
455 456
     SERIAL_ECHO(pid_input);

Loading…
Cancel
Save