瀏覽代碼

Merge pull request #7876 from thinkyhead/bf2_hotend_messages

[2.0.x] Addressing #7612
Scott Lahteine 7 年之前
父節點
當前提交
4b36a542e0
共有 1 個檔案被更改,包括 10 行新增10 行删除
  1. 10
    10
      Marlin/src/inc/SanityCheck.h

+ 10
- 10
Marlin/src/inc/SanityCheck.h 查看文件

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

Loading…
取消
儲存