0
0
Fork 0
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:
Scott Lahteine 2023-04-29 20:10:33 -05:00
parent 5aef2c0afa
commit ec6bc15d1b

View file

@ -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