Merge pull request #1798 from thinkyhead/fixup_probing

Fix probe height at G28 start
master
Scott Lahteine 9 years ago
commit 8f893eb8df

@ -2306,7 +2306,7 @@ inline void gcode_G28() {
// raise extruder
float measured_z,
z_before = Z_RAISE_BETWEEN_PROBINGS + (probePointCounter ? current_position[Z_AXIS] : 0);
z_before = probePointCounter ? Z_RAISE_BETWEEN_PROBINGS + current_position[Z_AXIS] : Z_RAISE_BEFORE_PROBING;
#ifdef DELTA
// Avoid probing the corners (outside the round or hexagon print surface) on a delta printer.

Loading…
Cancel
Save