Browse Source

Fix for not raising Z before homing X and Y

unknown 9 years ago
parent
commit
8ea55323d8
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Marlin/Marlin_main.cpp

+ 2
- 1
Marlin/Marlin_main.cpp View File

@@ -2308,7 +2308,8 @@ inline void gcode_G28() {
2308 2308
           }
2309 2309
         #endif
2310 2310
 
2311
-      #elif DISABLED(Z_SAFE_HOMING) && defined(Z_RAISE_BEFORE_HOMING) && Z_RAISE_BEFORE_HOMING > 0
2311
+      #elif defined(Z_RAISE_BEFORE_HOMING) && Z_RAISE_BEFORE_HOMING > 0
2312
+//      #elif DISABLED(Z_SAFE_HOMING) && defined(Z_RAISE_BEFORE_HOMING) && Z_RAISE_BEFORE_HOMING > 0
2312 2313
 
2313 2314
         // Raise Z before homing any other axes
2314 2315
         // (Does this need to be "negative home direction?" Why not just use Z_RAISE_BEFORE_HOMING?)

Loading…
Cancel
Save