We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00c96dc commit 6a12937Copy full SHA for 6a12937
Marlin/src/feature/bedlevel/ubl/ubl_G29.cpp
@@ -886,7 +886,7 @@ void set_message_with_feedback(FSTR_P const fstr) {
886
save_ubl_active_state_and_disable(); // Disable bed level correction for probing
887
888
do_blocking_move_to(
889
- NUM_AXIS_LIST(
+ xyz_pos_t({
890
0.5f * ((MESH_MAX_X) - (MESH_MIN_X)),
891
0.5f * ((MESH_MAX_Y) - (MESH_MIN_Y)),
892
MANUAL_PROBE_START_Z
@@ -908,7 +908,7 @@ void set_message_with_feedback(FSTR_P const fstr) {
908
#ifdef SAFE_BED_LEVELING_START_W
909
, SAFE_BED_LEVELING_START_W
910
#endif
911
- )
+ })
912
//, _MIN(planner.settings.max_feedrate_mm_s[X_AXIS], planner.settings.max_feedrate_mm_s[Y_AXIS]) * 0.5f
913
);
914
planner.synchronize();
0 commit comments