Skip to content

Commit

Permalink
telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
nick3621 committed Dec 11, 2024
1 parent 096c280 commit d4c6762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klippy/kinematics/dual_gantry.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def check_move(self, move):
uv_moving = True
if end_pos[i] < limits[i][0] or end_pos[i] > limits[i][1]:
if limits[i][0] > limits[i][1]:
raise move.move_error(f"Check Move XYZ; Must home axis first axis: \nend_pos: {end_pos[i]} limits \nend_posss: {end_pos}, \n limits: {limits} \n")
raise move.move_error(f"Check Move XYZ;\nend_pos: {end_pos[i]} limits \nend_posss: {end_pos}, \n limits: {limits} \n")
raise move.move_error()

# Apply speed constraints for Z moves
Expand Down

0 comments on commit d4c6762

Please sign in to comment.