SG homing - fixed bug - set sg_homing_delay to zero before move.
This commit is contained in:
parent
d512456506
commit
21974ae07a
1 changed files with 3 additions and 0 deletions
|
@ -2005,6 +2005,7 @@ void homeaxis(int axis) {
|
|||
plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder);
|
||||
|
||||
#ifdef HAVE_TMC2130_DRIVERS
|
||||
sg_homing_delay = 0;
|
||||
tmc2130_axis_stalled[axis] = false;
|
||||
#endif
|
||||
st_synchronize();
|
||||
|
@ -2015,6 +2016,7 @@ void homeaxis(int axis) {
|
|||
plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder);
|
||||
|
||||
#ifdef HAVE_TMC2130_DRIVERS
|
||||
sg_homing_delay = 0;
|
||||
tmc2130_axis_stalled[axis] = false;
|
||||
#endif
|
||||
st_synchronize();
|
||||
|
@ -2029,6 +2031,7 @@ void homeaxis(int axis) {
|
|||
plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate/60, active_extruder);
|
||||
|
||||
#ifdef HAVE_TMC2130_DRIVERS
|
||||
sg_homing_delay = 0;
|
||||
tmc2130_axis_stalled[axis] = false;
|
||||
#endif
|
||||
st_synchronize();
|
||||
|
|
Loading…
Reference in a new issue