Skip to content

Commit

Permalink
Issue MarlinFirmware#3689 BugFix Correct movement for G29 with delta
Browse files Browse the repository at this point in the history
The auto level routine was hitting the bed while moving between probe points.  It was not using segemented movements so the change proposed uses the prepare_move_delta instead of prepare_move_raw method.
  • Loading branch information
jakehenak committed May 7, 2016
1 parent d781929 commit d0c0b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1632,7 +1632,7 @@ static void setup_for_endstop_move() {
destination[X_AXIS] = x;
destination[Y_AXIS] = y;
destination[Z_AXIS] = z;
prepare_move_raw(); // this will also set_current_to_destination
prepare_move_delta(destination); // this will also set_current_to_destination
stepper.synchronize();

#else
Expand Down

0 comments on commit d0c0b42

Please sign in to comment.