Browse Source

Fix DELTA pulse wait bug (#14028)

pull/1/head
InsanityAutomation 5 years ago
committed by Scott Lahteine
parent
commit
06f3273531
  1. 4
      Marlin/src/module/stepper.cpp

4
Marlin/src/module/stepper.cpp

@ -2327,10 +2327,10 @@ void Stepper::report_positions() {
#define _SAVE_START NOOP
#if EXTRA_CYCLES_BABYSTEP > 0
#define _PULSE_WAIT DELAY_NS(EXTRA_CYCLES_BABYSTEP * NANOSECONDS_PER_CYCLE)
#elif STEP_PULSE_CYCLES > 0
#define _PULSE_WAIT NOOP
#elif ENABLED(DELTA)
#define _PULSE_WAIT DELAY_US(2);
#elif STEP_PULSE_CYCLES > 0
#define _PULSE_WAIT NOOP
#else
#define _PULSE_WAIT DELAY_US(4);
#endif

Loading…
Cancel
Save