|
@@ -4988,26 +4988,24 @@ inline void gcode_G28() {
|
4988
|
4988
|
|
4989
|
4989
|
#if ENABLED(DELTA_AUTO_CALIBRATION)
|
4990
|
4990
|
/**
|
4991
|
|
- * G33 - Delta '4-7-point' auto calibration (Requires DELTA)
|
4992
|
|
- *
|
4993
|
|
- * Usage:
|
4994
|
|
- * G33 <Cn> <Vn>
|
4995
|
|
- *
|
4996
|
|
- * Cn = n=-7 -> +7 : n*n probe points
|
4997
|
|
- * calibrates height ('1 point'), endstops, and delta radius ('4 points')
|
4998
|
|
- * and calibrates tower angles with n >= 3 ('7+ points')
|
4999
|
|
- * n=0 <default>
|
5000
|
|
- * n=1 probes center / sets height only
|
5001
|
|
- * n=-1 same but 1 iteration only
|
5002
|
|
- * n=2 probes center and towers / sets height, endstops and delta radius
|
5003
|
|
- * n=-2 same but opposite towers
|
5004
|
|
- * n=3 probes all points: center, towers and opposite towers / sets all
|
5005
|
|
- * n>3 probes all points multiple times and averages
|
5006
|
|
- * n<=3 same but tower angle calibration disabled
|
5007
|
|
- * Vn = verbose level (n=0-2 default 1)
|
5008
|
|
- * n=0 dry-run mode: no calibration
|
5009
|
|
- * n=1 settings
|
5010
|
|
- * n=2 setting + probe results
|
|
4991
|
+ * G33 - Delta Auto Calibration
|
|
4992
|
+ * Utility to calibrate height, endstop offsets, delta radius, and tower angles.
|
|
4993
|
+ *
|
|
4994
|
+ * Parameters:
|
|
4995
|
+ *
|
|
4996
|
+ * C0 Calibrate height
|
|
4997
|
+ * C1 Probe the center to set the Z height
|
|
4998
|
+ * C-1 same but 1 iteration only
|
|
4999
|
+ * C2 probes center and towers / sets height, endstops and delta radius
|
|
5000
|
+ * C-2 same but opposite towers
|
|
5001
|
+ * C3 probes all points: center, towers and opposite towers / sets all
|
|
5002
|
+ * C0-C3 same but tower angle calibration disabled
|
|
5003
|
+ * C4-C7 probes all points multiple times and averages
|
|
5004
|
+ *
|
|
5005
|
+ * V Verbose level (0-2, default 1)
|
|
5006
|
+ * V0 dry-run mode. no calibration
|
|
5007
|
+ * V1 settings
|
|
5008
|
+ * V2 setting and probe results
|
5011
|
5009
|
*/
|
5012
|
5010
|
inline void gcode_G33() {
|
5013
|
5011
|
|