Browse Source

Fix DELTA pulse wait bug (#14028)

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

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

@@ -2327,10 +2327,10 @@ void Stepper::report_positions() {
2327 2327
     #define _SAVE_START NOOP
2328 2328
     #if EXTRA_CYCLES_BABYSTEP > 0
2329 2329
       #define _PULSE_WAIT DELAY_NS(EXTRA_CYCLES_BABYSTEP * NANOSECONDS_PER_CYCLE)
2330
-    #elif STEP_PULSE_CYCLES > 0
2331
-      #define _PULSE_WAIT NOOP
2332 2330
     #elif ENABLED(DELTA)
2333 2331
       #define _PULSE_WAIT DELAY_US(2);
2332
+    #elif STEP_PULSE_CYCLES > 0
2333
+      #define _PULSE_WAIT NOOP
2334 2334
     #else
2335 2335
       #define _PULSE_WAIT DELAY_US(4);
2336 2336
     #endif

Loading…
Cancel
Save