Skip to content

Commit

Permalink
Fix missing travel speed var
Browse files Browse the repository at this point in the history
  • Loading branch information
benagricola committed Oct 29, 2024
1 parent 22c5e3a commit 85c7912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macro/movement/G6550.g
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if { sensors.probes[param.I].value[0] != 0 }
; The subsequent G38.3 will be a no-op as we will already be
; at the target position.
if { var.tIN >= var.tN }
G53 G1 X{ var.tPX } Y{ var.tPY } Z{ var.tPZ } F{ var.travelSpeed }
G53 G1 X{ var.tPX } Y{ var.tPY } Z{ var.tPZ } F{ sensors.probes[param.I].travelSpeed }
else
; Back off by the back-off distance
; We do not use a G38.5 here because it will stop movement the
Expand Down

0 comments on commit 85c7912

Please sign in to comment.