Browse Source

Starting on G33 rewrite

pull/1/head
Scott Lahteine 8 years ago
committed by teemuatlut
parent
commit
42f4c53254
  1. 38
      Marlin/Marlin_main.cpp

38
Marlin/Marlin_main.cpp

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

Loading…
Cancel
Save