mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-19 16:16:13 +00:00
🐛 Fix FT Motion reversed Z
This commit is contained in:
parent
5aef2c0afa
commit
ec6bc15d1b
1 changed files with 1 additions and 1 deletions
|
@ -3466,7 +3466,7 @@ void Stepper::report_positions() {
|
|||
#if HAS_Z_AXIS
|
||||
// Z is handled differently to update the stepper
|
||||
// counts (needed by Marlin for bed level probing).
|
||||
const bool z_dir = !TEST(command, FT_BIT_DIR_Z),
|
||||
const bool z_dir = TEST(command, FT_BIT_DIR_Z),
|
||||
z_step = TEST(command, FT_BIT_STEP_Z);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue