|
|
@ -824,11 +824,14 @@ |
|
|
|
// Moves (or segments) with fewer steps than this will be joined with the next move
|
|
|
|
#define MIN_STEPS_PER_SEGMENT 6 |
|
|
|
|
|
|
|
// The minimum pulse width (in µs) for stepping a stepper.
|
|
|
|
// Set this if you find stepping unreliable, or if using a very fast CPU.
|
|
|
|
// 0 is OK for AVR, 0 is OK for A4989 drivers, 2 is needed for DRV8825 drivers
|
|
|
|
#define MINIMUM_STEPPER_PULSE 2 // (µs) DRV8825 on 32bit CPUs
|
|
|
|
#define STEPPER_DIRECTION_DELAY 2 // (µs) Delay between dir and step
|
|
|
|
/**
|
|
|
|
* Minimum stepper driver pulse width (in µs) |
|
|
|
* 0 : Smallest possible width the MCU can produce, compatible with TMC2xxx drivers |
|
|
|
* 2 : Minimum for DRV8825 stepper drivers |
|
|
|
* 3 : Minimum for TB6600 stepper drivers |
|
|
|
* 30 : Minimum for TB6560 stepper drivers |
|
|
|
*/ |
|
|
|
#define MINIMUM_STEPPER_PULSE 2 |
|
|
|
|
|
|
|
// @section temperature
|
|
|
|
|
|
|
|