Merge pull request #4149 from thinkyhead/rc_minimum_raise_in_probe_pt

Ensure a minimum height before XY move in probe_pt
This commit is contained in:
Scott Lahteine 2016-06-25 19:35:58 -07:00 committed by GitHub
commit 9caa8941e2

View file

@ -2104,7 +2104,10 @@ static void clean_up_after_endstop_or_probe_move() {
float old_feedrate = feedrate;
// Raise by z_raise, then move the Z probe to the given XY
// Ensure a minimum height before moving the probe
do_probe_raise(Z_RAISE_BETWEEN_PROBINGS);
// Move to the XY where we shall probe
#if ENABLED(DEBUG_LEVELING_FEATURE)
if (DEBUGGING(LEVELING)) {
SERIAL_ECHOPAIR("> do_blocking_move_to_xy(", x - (X_PROBE_OFFSET_FROM_EXTRUDER));
@ -2112,7 +2115,6 @@ static void clean_up_after_endstop_or_probe_move() {
SERIAL_ECHOLNPGM(")");
}
#endif
feedrate = XY_PROBE_FEEDRATE;
do_blocking_move_to_xy(x - (X_PROBE_OFFSET_FROM_EXTRUDER), y - (Y_PROBE_OFFSET_FROM_EXTRUDER));