Skip to content

Commit ec6bc15

Browse files
committed
🐛 Fix FT Motion reversed Z
1 parent 5aef2c0 commit ec6bc15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/module/stepper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3466,7 +3466,7 @@ void Stepper::report_positions() {
34663466
#if HAS_Z_AXIS
34673467
// Z is handled differently to update the stepper
34683468
// counts (needed by Marlin for bed level probing).
3469-
const bool z_dir = !TEST(command, FT_BIT_DIR_Z),
3469+
const bool z_dir = TEST(command, FT_BIT_DIR_Z),
34703470
z_step = TEST(command, FT_BIT_STEP_Z);
34713471
#endif
34723472

0 commit comments

Comments
 (0)