Skip to content

Commit

Permalink
temperature.cpp: Fix PID_DEBUG compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
drf5n committed Feb 26, 2014
1 parent fde8c2c commit 8c4377d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Marlin/temperature.cpp
Expand Up @@ -449,7 +449,8 @@ void manage_heater()
pid_output = constrain(target_temperature[e], 0, PID_MAX);
#endif //PID_OPENLOOP
#ifdef PID_DEBUG
SERIAL_ECHO_START(" PIDDEBUG ");
SERIAL_ECHO_START;
SERIAL_ECHO(" PID_DEBUG ");
SERIAL_ECHO(e);
SERIAL_ECHO(": Input ");
SERIAL_ECHO(pid_input);
Expand Down

0 comments on commit 8c4377d

Please sign in to comment.