Make the G80 Z threshold tighter
This commit is contained in:
parent
f5f09f147c
commit
45823e7336
|
|
@ -2789,7 +2789,7 @@ static void gcode_G80()
|
||||||
{
|
{
|
||||||
constexpr float XY_AXIS_FEEDRATE = (homing_feedrate[X_AXIS] * 3) / 60;
|
constexpr float XY_AXIS_FEEDRATE = (homing_feedrate[X_AXIS] * 3) / 60;
|
||||||
constexpr float Z_LIFT_FEEDRATE = homing_feedrate[Z_AXIS] / 60;
|
constexpr float Z_LIFT_FEEDRATE = homing_feedrate[Z_AXIS] / 60;
|
||||||
constexpr float Z_CALIBRATION_THRESHOLD = 1.f;
|
constexpr float Z_CALIBRATION_THRESHOLD = 0.35f;
|
||||||
constexpr float MESH_HOME_Z_SEARCH_FAST = 0.35f;
|
constexpr float MESH_HOME_Z_SEARCH_FAST = 0.35f;
|
||||||
st_synchronize();
|
st_synchronize();
|
||||||
if (planner_aborted)
|
if (planner_aborted)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue