Skip to content

Commit

Permalink
🐛 Fix FT Motion reversed Z
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Apr 30, 2023
1 parent 5aef2c0 commit ec6bc15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/module/stepper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ec6bc15

Please sign in to comment.