Browse Source

Merge pull request #3828 from AnHardt/hw-endstops-default

Correct hardware endstops default
Scott Lahteine 9 years ago
parent
commit
714d526614
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/endstops.cpp

+ 2
- 2
Marlin/endstops.cpp View File

39
 Endstops::Endstops() {
39
 Endstops::Endstops() {
40
   enable_globally(
40
   enable_globally(
41
     #if ENABLED(ENDSTOPS_ONLY_FOR_HOMING)
41
     #if ENABLED(ENDSTOPS_ONLY_FOR_HOMING)
42
-      true
43
-    #else
44
       false
42
       false
43
+    #else
44
+      true
45
     #endif
45
     #endif
46
   );
46
   );
47
   enable(true);
47
   enable(true);

Loading…
Cancel
Save