From 8c4377dd63568291fdb62b7b2aeecb14a5982467 Mon Sep 17 00:00:00 2001 From: David Forrest Date: Wed, 26 Feb 2014 00:44:22 -0500 Subject: [PATCH] temperature.cpp: Fix PID_DEBUG compile error. --- Marlin/temperature.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Marlin/temperature.cpp b/Marlin/temperature.cpp index 4ce5cb16f1a1..6be3177a18de 100644 --- a/Marlin/temperature.cpp +++ b/Marlin/temperature.cpp @@ -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);