Add stepper driver DIR delay configuration option

...and recommended pulse width configuration for A4988
This commit is contained in:
etagle
2018-06-23 14:31:18 -03:00
committed by Scott Lahteine
parent d86f25ab63
commit 5b49fccf80
51 changed files with 655 additions and 0 deletions

View File

@ -332,6 +332,11 @@ void Stepper::set_directions() {
}
#endif
#endif // !LIN_ADVANCE
// A small delay may be needed after changing direction
#if MINIMUM_STEPPER_DIR_DELAY > 0
DELAY_NS(MINIMUM_STEPPER_DIR_DELAY);
#endif
}
#if ENABLED(S_CURVE_ACCELERATION)