|
@@ -2540,7 +2540,7 @@ static void homeaxis(AxisEnum axis) {
|
2540
|
2540
|
SERIAL_ECHOLNPGM(")");
|
2541
|
2541
|
}
|
2542
|
2542
|
#endif
|
2543
|
|
-}
|
|
2543
|
+} // homeaxis()
|
2544
|
2544
|
|
2545
|
2545
|
#if ENABLED(FWRETRACT)
|
2546
|
2546
|
|
|
@@ -3659,10 +3659,10 @@ inline void gcode_G28() {
|
3659
|
3659
|
double xProbe = left_probe_bed_position + xGridSpacing * xCount;
|
3660
|
3660
|
|
3661
|
3661
|
#if ENABLED(DELTA)
|
3662
|
|
- // Avoid probing the corners (outside the round or hexagon print surface) on a delta printer.
|
|
3662
|
+ // Avoid probing outside the round or hexagonal area of a delta printer
|
3663
|
3663
|
float distance_from_center = HYPOT(xProbe, yProbe);
|
3664
|
3664
|
if (distance_from_center > DELTA_PROBEABLE_RADIUS) continue;
|
3665
|
|
- #endif //DELTA
|
|
3665
|
+ #endif
|
3666
|
3666
|
|
3667
|
3667
|
float measured_z = probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
|
3668
|
3668
|
|