Skip to content

Commit 6a12937

Browse files
committed
🩹 Fix UBL safe measure move with extra axes
Followup to 7e79fc5
1 parent 00c96dc commit 6a12937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ void set_message_with_feedback(FSTR_P const fstr) {
886886
save_ubl_active_state_and_disable(); // Disable bed level correction for probing
887887

888888
do_blocking_move_to(
889-
NUM_AXIS_LIST(
889+
xyz_pos_t({
890890
0.5f * ((MESH_MAX_X) - (MESH_MIN_X)),
891891
0.5f * ((MESH_MAX_Y) - (MESH_MIN_Y)),
892892
MANUAL_PROBE_START_Z
@@ -908,7 +908,7 @@ void set_message_with_feedback(FSTR_P const fstr) {
908908
#ifdef SAFE_BED_LEVELING_START_W
909909
, SAFE_BED_LEVELING_START_W
910910
#endif
911-
)
911+
})
912912
//, _MIN(planner.settings.max_feedrate_mm_s[X_AXIS], planner.settings.max_feedrate_mm_s[Y_AXIS]) * 0.5f
913913
);
914914
planner.synchronize();

0 commit comments

Comments
 (0)