Merge pull request #4781 from 3d-gussner/MK3_3131_MBL_relax_tight_thresholds

MBL relax tight thresholds
This commit is contained in:
3d-gussner 2024-09-24 14:42:23 +02:00 committed by GitHub
commit 9c2c95ec84
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -2583,7 +2583,7 @@ static void gcode_G80()
{
constexpr float XY_AXIS_FEEDRATE = (homing_feedrate[X_AXIS] * 3) / 60;
constexpr float Z_LIFT_FEEDRATE = homing_feedrate[Z_AXIS] / 60;
constexpr float Z_CALIBRATION_THRESHOLD_TIGHT = 0.35f; // used for 7x7 MBL
constexpr float Z_CALIBRATION_THRESHOLD_TIGHT = 0.6f; // used for 7x7 MBL
constexpr float Z_CALIBRATION_THRESHOLD_RELAXED = 1.f; // used for 3x3 MBL
constexpr float MESH_HOME_Z_SEARCH_FAST = 0.35f;
st_synchronize();