Browse Source

Use the truly configured middle on Delta

Scott Lahteine 8 years ago
parent
commit
a36a168af2
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/Conditionals_post.h

+ 2
- 2
Marlin/Conditionals_post.h View File

@@ -79,7 +79,7 @@
79 79
     #endif
80 80
   #else
81 81
     #if ENABLED(DELTA)
82
-      #define X_HOME_POS ((X_MAX_LENGTH) * 0.5)
82
+      #define X_HOME_POS (X_MIN_POS + (X_MAX_LENGTH) * 0.5)
83 83
     #else
84 84
       #define X_HOME_POS (X_HOME_DIR < 0 ? X_MIN_POS : X_MAX_POS)
85 85
     #endif
@@ -95,7 +95,7 @@
95 95
     #endif
96 96
   #else
97 97
     #if ENABLED(DELTA)
98
-      #define Y_HOME_POS ((Y_MAX_LENGTH) * 0.5)
98
+      #define Y_HOME_POS (Y_MIN_POS + (Y_MAX_LENGTH) * 0.5)
99 99
     #else
100 100
       #define Y_HOME_POS (Y_HOME_DIR < 0 ? Y_MIN_POS : Y_MAX_POS)
101 101
     #endif

Loading…
Cancel
Save