From 54b7da18cbbbed49fee93f0f39b7093c527c25ea Mon Sep 17 00:00:00 2001 From: Taylor Talkington Date: Wed, 3 Jan 2024 21:45:50 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Fix=20Bed=20PID=20Autotune=20out?= =?UTF-8?q?put=20(#26606)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Followup to #25928 --- Marlin/src/module/temperature.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Marlin/src/module/temperature.cpp b/Marlin/src/module/temperature.cpp index 5b4dcc83bc..3f55dde598 100644 --- a/Marlin/src/module/temperature.cpp +++ b/Marlin/src/module/temperature.cpp @@ -849,9 +849,9 @@ volatile bool Temperature::raw_temps_ready = false; #if ANY(PIDTEMPBED, PIDTEMPCHAMBER) FSTR_P const estring = GHV(F("chamber"), F("bed"), FPSTR(NUL_STR)); - say_default_(); SERIAL_ECHO(estring, F("Kp "), tune_pid.p); - say_default_(); SERIAL_ECHO(estring, F("Ki "), tune_pid.i); - say_default_(); SERIAL_ECHO(estring, F("Kd "), tune_pid.d); + say_default_(); SERIAL_ECHOLN(estring, F("Kp "), tune_pid.p); + say_default_(); SERIAL_ECHOLN(estring, F("Ki "), tune_pid.i); + say_default_(); SERIAL_ECHOLN(estring, F("Kd "), tune_pid.d); #else say_default_(); SERIAL_ECHOLNPGM("Kp ", tune_pid.p); say_default_(); SERIAL_ECHOLNPGM("Ki ", tune_pid.i);