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,28 +959,28 @@ static_assert(1 >= 0
959 959
           #error "TEMP_4_PIN not defined for this board."
960 960
         #endif
961 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 963
       #endif
964 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 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 968
     #endif
969 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 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 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 975
   #endif
976 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 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 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 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 984
 #endif
985 985
 
986 986
 #if ENABLED(TEMP_SENSOR_1_AS_REDUNDANT) && TEMP_SENSOR_1 == 0

Loading…
Cancel
Save