We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8771e9 commit 54b7da1Copy full SHA for 54b7da1
Marlin/src/module/temperature.cpp
@@ -849,9 +849,9 @@ volatile bool Temperature::raw_temps_ready = false;
849
850
#if ANY(PIDTEMPBED, PIDTEMPCHAMBER)
851
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);
+ 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);
855
#else
856
say_default_(); SERIAL_ECHOLNPGM("Kp ", tune_pid.p);
857
say_default_(); SERIAL_ECHOLNPGM("Ki ", tune_pid.i);
0 commit comments