Skip to content

Commit aaf55a2

Browse files
committed
🩹 Fix UBL safe measure move with extra axes
Followup to 7e79fc5
1 parent 69f8da4 commit aaf55a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ void set_message_with_feedback(FSTR_P const fstr) {
883883
save_ubl_active_state_and_disable(); // Disable bed level correction for probing
884884

885885
do_blocking_move_to(
886-
NUM_AXIS_LIST(
886+
xyz_pos_t({
887887
0.5f * ((MESH_MAX_X) - (MESH_MIN_X)),
888888
0.5f * ((MESH_MAX_Y) - (MESH_MIN_Y)),
889889
MANUAL_PROBE_START_Z
@@ -905,7 +905,7 @@ void set_message_with_feedback(FSTR_P const fstr) {
905905
#ifdef SAFE_BED_LEVELING_START_W
906906
, SAFE_BED_LEVELING_START_W
907907
#endif
908-
)
908+
})
909909
//, _MIN(planner.settings.max_feedrate_mm_s[X_AXIS], planner.settings.max_feedrate_mm_s[Y_AXIS]) * 0.5f
910910
);
911911
planner.synchronize();

0 commit comments

Comments
 (0)