Remove redundant disable_heater() calls in max/min_temp handling
In max/min_temp handlers remove the redundant disable_heater() call. Handlers already need to call Stop(), which will disable all heaters as the first step. Fix comments in order to mention that all heaters get disabled. Use "MAX/MINTEMP BED" correctly in both the LCD and serial.
This commit is contained in:
parent
942fca5b66
commit
65f25b0d7e
|
|
@ -1426,19 +1426,16 @@ enum { LCDALERT_NONE = 0, LCDALERT_HEATERMINTEMP, LCDALERT_BEDMINTEMP, LCDALERT_
|
||||||
uint8_t last_alert_sent_to_lcd = LCDALERT_NONE;
|
uint8_t last_alert_sent_to_lcd = LCDALERT_NONE;
|
||||||
|
|
||||||
void max_temp_error(uint8_t e) {
|
void max_temp_error(uint8_t e) {
|
||||||
disable_heater();
|
|
||||||
if(IsStopped() == false) {
|
if(IsStopped() == false) {
|
||||||
SERIAL_ERROR_START;
|
SERIAL_ERROR_START;
|
||||||
SERIAL_ERRORLN((int)e);
|
SERIAL_ERRORLN((int)e);
|
||||||
SERIAL_ERRORLNPGM(": Extruder switched off. MAXTEMP triggered !");
|
SERIAL_ERRORLNPGM(": Heaters switched off. MAXTEMP triggered !");
|
||||||
LCD_ALERTMESSAGEPGM("Err: MAXTEMP");
|
LCD_ALERTMESSAGEPGM("Err: MAXTEMP");
|
||||||
}
|
}
|
||||||
#ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
|
#ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
|
||||||
Stop();
|
Stop();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
SET_OUTPUT(FAN_PIN);
|
SET_OUTPUT(FAN_PIN);
|
||||||
SET_OUTPUT(BEEPER);
|
SET_OUTPUT(BEEPER);
|
||||||
WRITE(FAN_PIN, 1);
|
WRITE(FAN_PIN, 1);
|
||||||
|
|
@ -1457,12 +1454,11 @@ void min_temp_error(uint8_t e) {
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
//if (current_temperature_ambient < MINTEMP_MINAMBIENT) return;
|
//if (current_temperature_ambient < MINTEMP_MINAMBIENT) return;
|
||||||
disable_heater();
|
|
||||||
static const char err[] PROGMEM = "Err: MINTEMP";
|
static const char err[] PROGMEM = "Err: MINTEMP";
|
||||||
if(IsStopped() == false) {
|
if(IsStopped() == false) {
|
||||||
SERIAL_ERROR_START;
|
SERIAL_ERROR_START;
|
||||||
SERIAL_ERRORLN((int)e);
|
SERIAL_ERRORLN((int)e);
|
||||||
SERIAL_ERRORLNPGM(": Extruder switched off. MINTEMP triggered !");
|
SERIAL_ERRORLNPGM(": Heaters switched off. MINTEMP triggered !");
|
||||||
lcd_setalertstatuspgm(err);
|
lcd_setalertstatuspgm(err);
|
||||||
last_alert_sent_to_lcd = LCDALERT_HEATERMINTEMP;
|
last_alert_sent_to_lcd = LCDALERT_HEATERMINTEMP;
|
||||||
} else if( last_alert_sent_to_lcd != LCDALERT_HEATERMINTEMP ){ // only update, if the lcd message is to be changed (i.e. not the same as last time)
|
} else if( last_alert_sent_to_lcd != LCDALERT_HEATERMINTEMP ){ // only update, if the lcd message is to be changed (i.e. not the same as last time)
|
||||||
|
|
@ -1482,32 +1478,24 @@ void min_temp_error(uint8_t e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void bed_max_temp_error(void) {
|
void bed_max_temp_error(void) {
|
||||||
#if HEATER_BED_PIN > -1
|
|
||||||
//WRITE(HEATER_BED_PIN, 0);
|
|
||||||
#endif
|
|
||||||
if(IsStopped() == false) {
|
if(IsStopped() == false) {
|
||||||
SERIAL_ERROR_START;
|
SERIAL_ERROR_START;
|
||||||
SERIAL_ERRORLNPGM("Temperature heated bed switched off. MAXTEMP triggered !");
|
SERIAL_ERRORLNPGM("Heaters switched off. MAXTEMP BED triggered !");
|
||||||
LCD_ALERTMESSAGEPGM("Err: MAXTEMP BED");
|
LCD_ALERTMESSAGEPGM("Err: MAXTEMP BED");
|
||||||
}
|
}
|
||||||
#ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
|
#ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
|
||||||
Stop();
|
Stop();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void bed_min_temp_error(void) {
|
void bed_min_temp_error(void) {
|
||||||
#ifdef DEBUG_DISABLE_MINTEMP
|
#ifdef DEBUG_DISABLE_MINTEMP
|
||||||
return;
|
return;
|
||||||
#endif
|
|
||||||
//if (current_temperature_ambient < MINTEMP_MINAMBIENT) return;
|
|
||||||
#if HEATER_BED_PIN > -1
|
|
||||||
//WRITE(HEATER_BED_PIN, 0);
|
|
||||||
#endif
|
#endif
|
||||||
static const char err[] PROGMEM = "Err: MINTEMP BED";
|
static const char err[] PROGMEM = "Err: MINTEMP BED";
|
||||||
if(IsStopped() == false) {
|
if(IsStopped() == false) {
|
||||||
SERIAL_ERROR_START;
|
SERIAL_ERROR_START;
|
||||||
SERIAL_ERRORLNPGM("Temperature heated bed switched off. MINTEMP triggered !");
|
SERIAL_ERRORLNPGM("Heaters switched off. MINTEMP BED triggered !");
|
||||||
lcd_setalertstatuspgm(err);
|
lcd_setalertstatuspgm(err);
|
||||||
last_alert_sent_to_lcd = LCDALERT_BEDMINTEMP;
|
last_alert_sent_to_lcd = LCDALERT_BEDMINTEMP;
|
||||||
} else if( last_alert_sent_to_lcd != LCDALERT_BEDMINTEMP ){ // only update, if the lcd message is to be changed (i.e. not the same as last time)
|
} else if( last_alert_sent_to_lcd != LCDALERT_BEDMINTEMP ){ // only update, if the lcd message is to be changed (i.e. not the same as last time)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue