Fix MIN_PROBE_EDGE bug in default ABL G29 (#16367)
This commit is contained in:
committed by
Scott Lahteine
parent
d7aee3b7b6
commit
3cade6245e
@@ -91,13 +91,7 @@ void recalc_delta_settings() {
|
||||
#endif
|
||||
|
||||
float delta_calibration_radius() {
|
||||
return FLOOR((DELTA_PRINTABLE_RADIUS - (
|
||||
#if HAS_BED_PROBE
|
||||
_MAX(HYPOT(probe_offset.x, probe_offset.y), MIN_PROBE_EDGE)
|
||||
#else
|
||||
MIN_PROBE_EDGE
|
||||
#endif
|
||||
)) * calibration_radius_factor);
|
||||
return FLOOR((DELTA_PRINTABLE_RADIUS - _MAX(HYPOT(probe_offset_xy.x, probe_offset_xy.y), MIN_PROBE_EDGE)) * calibration_radius_factor);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user