Merge pull request #1798 from thinkyhead/fixup_probing
Fix probe height at G28 start
This commit is contained in:
commit
8f893eb8df
@ -2306,7 +2306,7 @@ inline void gcode_G28() {
|
|||||||
|
|
||||||
// raise extruder
|
// raise extruder
|
||||||
float measured_z,
|
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
|
#ifdef DELTA
|
||||||
// Avoid probing the corners (outside the round or hexagon print surface) on a delta printer.
|
// Avoid probing the corners (outside the round or hexagon print surface) on a delta printer.
|
||||||
|
Loading…
Reference in New Issue
Block a user