Skip to content

Commit

Permalink
bed_mesh: Do not automatically run G28 on BED_MESH_CALIBRATE / BED_ME…
Browse files Browse the repository at this point in the history
…SH_MAP

Signed-off-by: Kevin O'Connor <[email protected]>
  • Loading branch information
KevinOConnor committed Oct 22, 2018
1 parent f382762 commit e4bb90a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion docs/G-Codes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion klippy/extras/bed_mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,6 @@ def cmd_BED_MESH_CALIBRATE(self, params):
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:
Expand Down

0 comments on commit e4bb90a

Please sign in to comment.