Browse Source

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
AnHardt 9 years ago
parent
commit
47401ec97b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/temperature.cpp

+ 1
- 1
Marlin/temperature.cpp View File

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

Loading…
Cancel
Save