Browse Source

Followup to babystep hotfix

Scott Lahteine 4 years ago
parent
commit
b9b29bf4c0
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Marlin/src/module/stepper.cpp

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

2564
           #elif CORE_IS_XZ
2564
           #elif CORE_IS_XZ
2565
             BABYSTEP_CORE(X, Z, 0, direction, 0);
2565
             BABYSTEP_CORE(X, Z, 0, direction, 0);
2566
           #else
2566
           #else
2567
-            BABYSTEP_AXIS(X, 0, direction, 0);
2567
+            BABYSTEP_AXIS(X, 0, direction);
2568
           #endif
2568
           #endif
2569
           break;
2569
           break;
2570
 
2570
 
2574
           #elif CORE_IS_YZ
2574
           #elif CORE_IS_YZ
2575
             BABYSTEP_CORE(Y, Z, 0, direction, (CORESIGN(1)<0));
2575
             BABYSTEP_CORE(Y, Z, 0, direction, (CORESIGN(1)<0));
2576
           #else
2576
           #else
2577
-            BABYSTEP_AXIS(Y, 0, direction, (CORESIGN(1)<0));
2577
+            BABYSTEP_AXIS(Y, 0, direction);
2578
           #endif
2578
           #endif
2579
           break;
2579
           break;
2580
 
2580
 
2587
         #elif CORE_IS_YZ
2587
         #elif CORE_IS_YZ
2588
           BABYSTEP_CORE(Y, Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0));
2588
           BABYSTEP_CORE(Y, Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0));
2589
         #elif DISABLED(DELTA)
2589
         #elif DISABLED(DELTA)
2590
-          BABYSTEP_AXIS(Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0));
2590
+          BABYSTEP_AXIS(Z, BABYSTEP_INVERT_Z, direction);
2591
 
2591
 
2592
         #else // DELTA
2592
         #else // DELTA
2593
 
2593
 

Loading…
Cancel
Save