Commit d0ba5e8c authored by MagoKimbra's avatar MagoKimbra

Fix msg pidtempbed & Thermal protection

parent cd922a32
......@@ -741,7 +741,7 @@ void Config_PrintSettings(bool forReplay) {
}
#endif
#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_EMV(" D", unscalePID_d(bedKd));
#endif
......
......@@ -1086,7 +1086,7 @@ void setWatch() {
*state = TRRunaway;
break;
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);
LCD_ALERTMESSAGEPGM(MSG_THERMAL_RUNAWAY);
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