MSG_EXTRUDER_SWITCHED_OFF was renamed to MSG_REDUNDANCY

in language.h, but was not renamed here. If TEMP_SENSOR_1 is enabled as redundant then
an error is thrown that MSG_EXTRUDER_SWITCHED_OFF is not defined.

Originaly by @12dstring
This commit is contained in:
AnHardt 2015-10-07 12:08:57 +02:00 committed by Richard Wackerbarth
parent ba6a243197
commit 47401ec97b

View file

@ -655,7 +655,7 @@ void manage_heater() {
#if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT)
if (fabs(current_temperature[0] - redundant_temperature) > MAX_REDUNDANT_TEMP_SENSOR_DIFF) {
_temp_error(0, PSTR(MSG_EXTRUDER_SWITCHED_OFF), PSTR(MSG_ERR_REDUNDANT_TEMP));
_temp_error(0, PSTR(MSG_REDUNDANCY), PSTR(MSG_ERR_REDUNDANT_TEMP));
}
#endif