Commit d0ba5e8c authored by MagoKimbra's avatar MagoKimbra

Fix msg pidtempbed & Thermal protection

parent cd922a32
...@@ -741,7 +741,7 @@ void Config_PrintSettings(bool forReplay) { ...@@ -741,7 +741,7 @@ void Config_PrintSettings(bool forReplay) {
} }
#endif #endif
#ifdef PIDTEMPBED #ifdef PIDTEMPBED
ECHO_SMV(" M304 P", bedKp); // for compatibility with hosts, only echos values for E0 ECHO_SMV(DB, " M304 P", bedKp); // for compatibility with hosts, only echos values for E0
ECHO_MV(" I", unscalePID_i(bedKi)); ECHO_MV(" I", unscalePID_i(bedKi));
ECHO_EMV(" D", unscalePID_d(bedKd)); ECHO_EMV(" D", unscalePID_d(bedKd));
#endif #endif
......
...@@ -1086,7 +1086,7 @@ void setWatch() { ...@@ -1086,7 +1086,7 @@ void setWatch() {
*state = TRRunaway; *state = TRRunaway;
break; break;
case TRRunaway: case TRRunaway:
ECHO_S(ER, MSG_THERMAL_RUNAWAY_STOP); ECHO_SM(ER, MSG_THERMAL_RUNAWAY_STOP);
if (heater_id < 0) ECHO_EM(MSG_THERMAL_RUNAWAY_BED); else ECHO_EV(heater_id); if (heater_id < 0) ECHO_EM(MSG_THERMAL_RUNAWAY_BED); else ECHO_EV(heater_id);
LCD_ALERTMESSAGEPGM(MSG_THERMAL_RUNAWAY); LCD_ALERTMESSAGEPGM(MSG_THERMAL_RUNAWAY);
disable_all_heaters(); disable_all_heaters();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment