Browse Source

Merge pull request #7632 from GMagician/Wrong-sanitycheck-message-fix

Addressing #7612
Scott Lahteine 7 years ago
parent
commit
e2ceb1b800
1 changed files with 10 additions and 10 deletions
  1. 10
    10
      Marlin/SanityCheck.h

+ 10
- 10
Marlin/SanityCheck.h View File

959
           #error "TEMP_4_PIN not defined for this board."
959
           #error "TEMP_4_PIN not defined for this board."
960
         #endif
960
         #endif
961
       #elif TEMP_SENSOR_4 != 0
961
       #elif TEMP_SENSOR_4 != 0
962
-        #error "TEMP_SENSOR_4 shouldn't be set with only 4 extruders."
962
+        #error "TEMP_SENSOR_4 shouldn't be set with only 4 HOTENDS."
963
       #endif
963
       #endif
964
     #elif TEMP_SENSOR_3 != 0
964
     #elif TEMP_SENSOR_3 != 0
965
-      #error "TEMP_SENSOR_3 shouldn't be set with only 3 extruders."
965
+      #error "TEMP_SENSOR_3 shouldn't be set with only 3 HOTENDS."
966
     #elif TEMP_SENSOR_4 != 0
966
     #elif TEMP_SENSOR_4 != 0
967
-      #error "TEMP_SENSOR_4 shouldn't be set with only 3 extruders."
967
+      #error "TEMP_SENSOR_4 shouldn't be set with only 3 HOTENDS."
968
     #endif
968
     #endif
969
   #elif TEMP_SENSOR_2 != 0
969
   #elif TEMP_SENSOR_2 != 0
970
-    #error "TEMP_SENSOR_2 shouldn't be set with only 2 extruders."
970
+    #error "TEMP_SENSOR_2 shouldn't be set with only 2 HOTENDS."
971
   #elif TEMP_SENSOR_3 != 0
971
   #elif TEMP_SENSOR_3 != 0
972
-    #error "TEMP_SENSOR_3 shouldn't be set with only 2 extruders."
972
+    #error "TEMP_SENSOR_3 shouldn't be set with only 2 HOTENDS."
973
   #elif TEMP_SENSOR_4 != 0
973
   #elif TEMP_SENSOR_4 != 0
974
-    #error "TEMP_SENSOR_4 shouldn't be set with only 2 extruders."
974
+    #error "TEMP_SENSOR_4 shouldn't be set with only 2 HOTENDS."
975
   #endif
975
   #endif
976
 #elif TEMP_SENSOR_1 != 0 && DISABLED(TEMP_SENSOR_1_AS_REDUNDANT)
976
 #elif TEMP_SENSOR_1 != 0 && DISABLED(TEMP_SENSOR_1_AS_REDUNDANT)
977
-  #error "TEMP_SENSOR_1 shouldn't be set with only 1 extruder."
977
+  #error "TEMP_SENSOR_1 shouldn't be set with only 1 HOTEND."
978
 #elif TEMP_SENSOR_2 != 0
978
 #elif TEMP_SENSOR_2 != 0
979
-  #error "TEMP_SENSOR_2 shouldn't be set with only 1 extruder."
979
+  #error "TEMP_SENSOR_2 shouldn't be set with only 1 HOTEND."
980
 #elif TEMP_SENSOR_3 != 0
980
 #elif TEMP_SENSOR_3 != 0
981
-  #error "TEMP_SENSOR_3 shouldn't be set with only 1 extruder."
981
+  #error "TEMP_SENSOR_3 shouldn't be set with only 1 HOTEND."
982
 #elif TEMP_SENSOR_4 != 0
982
 #elif TEMP_SENSOR_4 != 0
983
-  #error "TEMP_SENSOR_4 shouldn't be set with only 1 extruder."
983
+  #error "TEMP_SENSOR_4 shouldn't be set with only 1 HOTEND."
984
 #endif
984
 #endif
985
 
985
 
986
 #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT) && TEMP_SENSOR_1 == 0
986
 #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT) && TEMP_SENSOR_1 == 0

Loading…
Cancel
Save