Skip to content

Commit

Permalink
🩹 Fix UBL safe measure move with extra axes
Browse files Browse the repository at this point in the history
Followup to 7e79fc5
  • Loading branch information
thinkyhead committed Apr 23, 2023
1 parent 69f8da4 commit aaf55a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ void set_message_with_feedback(FSTR_P const fstr) {
save_ubl_active_state_and_disable(); // Disable bed level correction for probing

do_blocking_move_to(
NUM_AXIS_LIST(
xyz_pos_t({
0.5f * ((MESH_MAX_X) - (MESH_MIN_X)),
0.5f * ((MESH_MAX_Y) - (MESH_MIN_Y)),
MANUAL_PROBE_START_Z
Expand All @@ -905,7 +905,7 @@ void set_message_with_feedback(FSTR_P const fstr) {
#ifdef SAFE_BED_LEVELING_START_W
, SAFE_BED_LEVELING_START_W
#endif
)
})
//, _MIN(planner.settings.max_feedrate_mm_s[X_AXIS], planner.settings.max_feedrate_mm_s[Y_AXIS]) * 0.5f
);
planner.synchronize();
Expand Down

0 comments on commit aaf55a2

Please sign in to comment.