Skip to content

Commit 54b7da1

Browse files
authored
🩹 Fix Bed PID Autotune output (MarlinFirmware#26606)
Followup to MarlinFirmware#25928
1 parent f8771e9 commit 54b7da1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Marlin/src/module/temperature.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -849,9 +849,9 @@ volatile bool Temperature::raw_temps_ready = false;
849849

850850
#if ANY(PIDTEMPBED, PIDTEMPCHAMBER)
851851
FSTR_P const estring = GHV(F("chamber"), F("bed"), FPSTR(NUL_STR));
852-
say_default_(); SERIAL_ECHO(estring, F("Kp "), tune_pid.p);
853-
say_default_(); SERIAL_ECHO(estring, F("Ki "), tune_pid.i);
854-
say_default_(); SERIAL_ECHO(estring, F("Kd "), tune_pid.d);
852+
say_default_(); SERIAL_ECHOLN(estring, F("Kp "), tune_pid.p);
853+
say_default_(); SERIAL_ECHOLN(estring, F("Ki "), tune_pid.i);
854+
say_default_(); SERIAL_ECHOLN(estring, F("Kd "), tune_pid.d);
855855
#else
856856
say_default_(); SERIAL_ECHOLNPGM("Kp ", tune_pid.p);
857857
say_default_(); SERIAL_ECHOLNPGM("Ki ", tune_pid.i);

0 commit comments

Comments
 (0)