Browse Source

Move probe deploy after setup call in G29

Scott Lahteine 9 years ago
parent
commit
a6b8c67df4
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      Marlin/Marlin_main.cpp

+ 4
- 4
Marlin/Marlin_main.cpp View File

@@ -3475,14 +3475,14 @@ inline void gcode_G28() {
3475 3475
       #endif // !DELTA
3476 3476
     }
3477 3477
 
3478
-    #if HAS_BED_PROBE
3479
-      deploy_z_probe();
3480
-    #endif
3481
-
3482 3478
     stepper.synchronize();
3483 3479
 
3484 3480
     setup_for_endstop_or_probe_move();
3485 3481
 
3482
+    #if HAS_BED_PROBE
3483
+      deploy_z_probe();
3484
+    #endif
3485
+
3486 3486
     feedrate = homing_feedrate[Z_AXIS];
3487 3487
 
3488 3488
     bed_leveling_in_progress = true;

Loading…
Cancel
Save