mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 13:56:24 +00:00
Followup to babystep hotfix
This commit is contained in:
parent
20df64814e
commit
b9b29bf4c0
@ -2564,7 +2564,7 @@ void Stepper::report_positions() {
|
|||||||
#elif CORE_IS_XZ
|
#elif CORE_IS_XZ
|
||||||
BABYSTEP_CORE(X, Z, 0, direction, 0);
|
BABYSTEP_CORE(X, Z, 0, direction, 0);
|
||||||
#else
|
#else
|
||||||
BABYSTEP_AXIS(X, 0, direction, 0);
|
BABYSTEP_AXIS(X, 0, direction);
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -2574,7 +2574,7 @@ void Stepper::report_positions() {
|
|||||||
#elif CORE_IS_YZ
|
#elif CORE_IS_YZ
|
||||||
BABYSTEP_CORE(Y, Z, 0, direction, (CORESIGN(1)<0));
|
BABYSTEP_CORE(Y, Z, 0, direction, (CORESIGN(1)<0));
|
||||||
#else
|
#else
|
||||||
BABYSTEP_AXIS(Y, 0, direction, (CORESIGN(1)<0));
|
BABYSTEP_AXIS(Y, 0, direction);
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -2587,7 +2587,7 @@ void Stepper::report_positions() {
|
|||||||
#elif CORE_IS_YZ
|
#elif CORE_IS_YZ
|
||||||
BABYSTEP_CORE(Y, Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0));
|
BABYSTEP_CORE(Y, Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0));
|
||||||
#elif DISABLED(DELTA)
|
#elif DISABLED(DELTA)
|
||||||
BABYSTEP_AXIS(Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0));
|
BABYSTEP_AXIS(Z, BABYSTEP_INVERT_Z, direction);
|
||||||
|
|
||||||
#else // DELTA
|
#else // DELTA
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user