Browse Source

Fix IDEX homing X0 wrong direction (#12200)

InsanityAutomation 6 years ago
parent
commit
aebbb2359d
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/stepper.cpp

+ 1
- 1
Marlin/src/module/stepper.cpp View File

@@ -1746,10 +1746,10 @@ uint32_t Stepper::stepper_block_phase_isr() {
1746 1746
           #endif
1747 1747
       ) {
1748 1748
         last_direction_bits = current_block->direction_bits;
1749
-        set_directions();
1750 1749
         #if EXTRUDERS > 1
1751 1750
           last_moved_extruder = stepper_extruder;
1752 1751
         #endif
1752
+        set_directions();
1753 1753
       }
1754 1754
 
1755 1755
       // At this point, we must ensure the movement about to execute isn't

Loading…
Cancel
Save