aboutsummaryrefslogtreecommitdiffstats
path: root/klippy
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-04-20 19:58:37 -0400
committerKevin O'Connor <kevin@koconnor.net>2018-04-20 20:04:41 -0400
commit6d03dee104531cc174b8ed8a0886768956bade31 (patch)
treeba54b1c8cfb0641d0e16269dcf910ab86f88c7bc /klippy
parent93262919ed44417cad076a4fe0b63a455a0b052a (diff)
downloadkutter-6d03dee104531cc174b8ed8a0886768956bade31.tar.gz
kutter-6d03dee104531cc174b8ed8a0886768956bade31.tar.xz
kutter-6d03dee104531cc174b8ed8a0886768956bade31.zip
gcode: Add a SET_GCODE_OFFSET command
The M206 command is confusing (it uses negative offsets) and isn't very flexible. Add a new SET_GCODE_OFFSET command to make it easier to add virtual offsets to gcode commands. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy')
-rw-r--r--klippy/gcode.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/klippy/gcode.py b/klippy/gcode.py
index 99969d1d..84a3ad88 100644
--- a/klippy/gcode.py
+++ b/klippy/gcode.py
@@ -367,7 +367,8 @@ class GCodeParser:
self.run_script(self.extruder.get_activate_gcode(True))
all_handlers = [
'G1', 'G4', 'G28', 'M18', 'M400',
- 'G20', 'M82', 'M83', 'G90', 'G91', 'G92', 'M114', 'M220', 'M221', 'M206',
+ 'G20', 'M82', 'M83', 'G90', 'G91', 'G92', 'M114', 'M220', 'M221',
+ 'SET_GCODE_OFFSET', 'M206',
'M105', 'M104', 'M109', 'M140', 'M190', 'M106', 'M107',
'M112', 'M115', 'IGNORE', 'QUERY_ENDSTOPS', 'GET_POSITION',
'RESTART', 'FIRMWARE_RESTART', 'ECHO', 'STATUS', 'HELP']
@@ -484,6 +485,18 @@ class GCodeParser:
e_value = (last_e_pos - self.base_position[3]) / self.extrude_factor
self.base_position[3] = last_e_pos - e_value * new_extrude_factor
self.extrude_factor = new_extrude_factor
+ cmd_SET_GCODE_OFFSET_help = "Set a virtual offset to g-code positions"
+ def cmd_SET_GCODE_OFFSET(self, params):
+ for axis, pos in self.axis2pos.items():
+ if axis in params:
+ offset = self.get_float(axis, params)
+ elif axis + '_ADJUST' in params:
+ offset = self.homing_position[pos]
+ offset += self.get_float(axis + '_ADJUST', params)
+ else:
+ continue
+ self.base_position[pos] += offset - self.homing_position[pos]
+ self.homing_position[pos] = offset
def cmd_M206(self, params):
# Offset axes
offsets = { self.axis2pos[a]: self.get_float(a, params)