mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-07 15:07:33 -06:00
gcode: Remove unneeded base_xpos variables from get_status()
Convert the only user of base_zpos to use gcode_position. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
c0daf43d2f
commit
2d5f9b6cda
2 changed files with 6 additions and 8 deletions
|
@ -187,10 +187,6 @@ class GCodeParser:
|
|||
'last_ypos': self.last_position[1],
|
||||
'last_zpos': self.last_position[2],
|
||||
'last_epos': self.last_position[3],
|
||||
'base_xpos': self.base_position[0],
|
||||
'base_ypos': self.base_position[1],
|
||||
'base_zpos': self.base_position[2],
|
||||
'base_epos': self.base_position[3],
|
||||
'homing_origin': homing.Coord(*self.homing_position),
|
||||
'gcode_position': homing.Coord(*move_position),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue