|
@@ -3515,7 +3515,7 @@ inline void gcode_G28() {
|
3515
|
3515
|
|
3516
|
3516
|
inline void _mbl_goto_xy(float x, float y) {
|
3517
|
3517
|
float old_feedrate_mm_s = feedrate_mm_s;
|
3518
|
|
- feedrate_mm_s = homing_feedrate_mm_s[X_AXIS];
|
|
3518
|
+ feedrate_mm_s = homing_feedrate_mm_s[Z_AXIS];
|
3519
|
3519
|
|
3520
|
3520
|
current_position[Z_AXIS] = MESH_HOME_SEARCH_Z
|
3521
|
3521
|
#if Z_CLEARANCE_BETWEEN_PROBES > Z_HOMING_HEIGHT
|
|
@@ -3526,11 +3526,13 @@ inline void gcode_G28() {
|
3526
|
3526
|
;
|
3527
|
3527
|
line_to_current_position();
|
3528
|
3528
|
|
|
3529
|
+ feedrate_mm_s = MMM_TO_MMS(XY_PROBE_SPEED);
|
3529
|
3530
|
current_position[X_AXIS] = LOGICAL_X_POSITION(x);
|
3530
|
3531
|
current_position[Y_AXIS] = LOGICAL_Y_POSITION(y);
|
3531
|
3532
|
line_to_current_position();
|
3532
|
3533
|
|
3533
|
3534
|
#if Z_CLEARANCE_BETWEEN_PROBES > 0 || Z_HOMING_HEIGHT > 0
|
|
3535
|
+ feedrate_mm_s = homing_feedrate_mm_s[Z_AXIS];
|
3534
|
3536
|
current_position[Z_AXIS] = LOGICAL_Z_POSITION(MESH_HOME_SEARCH_Z);
|
3535
|
3537
|
line_to_current_position();
|
3536
|
3538
|
#endif
|