Add minimum step dir delay option, A4988 pulse note (#11122)

Co-Authored-By: ejtagle <ejtagle@hotmail.com>
This commit is contained in:
Scott Lahteine
2018-06-26 22:28:46 -04:00
committed by GitHub
parent 4d5c655f8d
commit 04fc715c91
45 changed files with 565 additions and 1 deletions

View File

@@ -379,6 +379,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)