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);