diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-10-16 14:13:38 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2018-10-22 11:26:01 -0400 |
commit | e4bb90a1ca9a251941c1d2944b265cdc50916d9c (patch) | |
tree | f4b9c3a54ec2dba0dd9175345e35bfcbf7ebbe5a | |
parent | f382762962b6e39597abbf8ffbbd2192fe0fcba0 (diff) | |
download | kutter-e4bb90a1ca9a251941c1d2944b265cdc50916d9c.tar.gz kutter-e4bb90a1ca9a251941c1d2944b265cdc50916d9c.tar.xz kutter-e4bb90a1ca9a251941c1d2944b265cdc50916d9c.zip |
bed_mesh: Do not automatically run G28 on BED_MESH_CALIBRATE / BED_MESH_MAP
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | docs/G-Codes.md | 2 | ||||
-rw-r--r-- | klippy/extras/bed_mesh.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index f5135d27..d5230aa6 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -186,7 +186,7 @@ section is enabled: terminal. This allows octoprint plugins to easily capture the data and generate maps approximating the bed's surface. Note that although no mesh is generated, any currently stored mesh - will be cleared as the process rehomes the printer. + will be cleared. - `BED_MESH_CLEAR`: This command clears the mesh and removes all z adjustment. It is recommended to put this in your end-gcode. - `BED_MESH_PROFILE LOAD=<name> SAVE=<name> REMOVE=<name>`: This diff --git a/klippy/extras/bed_mesh.py b/klippy/extras/bed_mesh.py index 509b92dc..62df4091 100644 --- a/klippy/extras/bed_mesh.py +++ b/klippy/extras/bed_mesh.py @@ -311,7 +311,6 @@ class BedMeshCalibrate: self.start_calibration(params) def start_calibration(self, params): self.bedmesh.set_mesh(None) - self.gcode.run_script_from_command("G28") self.probe_helper.start_probe(params) def print_probed_positions(self, print_func): if self.probed_z_table is not None: |