瀏覽代碼

Merge pull request #3679 from thinkyhead/rc_fix_3677

Can't use the ENABLED macro as a boolean
Scott Lahteine 8 年之前
父節點
當前提交
a5a6b86898
共有 1 個檔案被更改,包括 7 行新增1 行删除
  1. 7
    1
      Marlin/endstops.cpp

+ 7
- 1
Marlin/endstops.cpp 查看文件

@@ -37,7 +37,13 @@
37 37
 Endstops endstops;
38 38
 
39 39
 Endstops::Endstops() {
40
-  enable_globally(ENABLED(ENDSTOPS_ONLY_FOR_HOMING));
40
+  enable_globally(
41
+    #if ENABLED(ENDSTOPS_ONLY_FOR_HOMING)
42
+      true
43
+    #else
44
+      false
45
+    #endif
46
+  );
41 47
   enable(true);
42 48
   #if ENABLED(HAS_Z_MIN_PROBE)
43 49
     enable_z_probe(false);

Loading…
取消
儲存