mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-19 16:16:13 +00:00
parent
d3ee4eecdf
commit
f207177098
1 changed files with 2 additions and 2 deletions
|
@ -3670,7 +3670,7 @@ void Stepper::report_positions() {
|
|||
|
||||
case Y_AXIS:
|
||||
#if CORE_IS_XY
|
||||
BABYSTEP_CORE(X, Y, !direction, 1, (CORESIGN(1)>0));
|
||||
BABYSTEP_CORE(X, Y, direction, 0, (CORESIGN(1)>0));
|
||||
#elif CORE_IS_YZ
|
||||
BABYSTEP_CORE(Y, Z, direction, 0, (CORESIGN(1)<0));
|
||||
#else
|
||||
|
@ -3683,7 +3683,7 @@ void Stepper::report_positions() {
|
|||
case Z_AXIS: {
|
||||
|
||||
#if CORE_IS_XZ
|
||||
BABYSTEP_CORE(X, Z, direction, BABYSTEP_INVERT_Z, (CORESIGN(1)<0));
|
||||
BABYSTEP_CORE(X, Z, direction, BABYSTEP_INVERT_Z, (CORESIGN(1)>0));
|
||||
#elif CORE_IS_YZ
|
||||
BABYSTEP_CORE(Y, Z, direction, BABYSTEP_INVERT_Z, (CORESIGN(1)<0));
|
||||
#elif DISABLED(DELTA)
|
||||
|
|
Loading…
Reference in a new issue