Skip to content

Commit

Permalink
Turning on spools when doing lane moves
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjon711 committed Dec 8, 2024
1 parent 3bfcbcf commit 2feacf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extras/AFC.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def cmd_LANE_MOVE(self, gcmd):
lane = gcmd.get('LANE', None)
distance = gcmd.get_float('DISTANCE', 0)
CUR_LANE = self.printer.lookup_object('AFC_stepper ' + lane)
CUR_LANE.move(distance, self.short_moves_speed, self.short_moves_accel)
CUR_LANE.move(distance, self.short_moves_speed, self.short_moves_accel, True)

def save_pos(self):
# Only save previous location on the first toolchange call to keep an error state from overwriting the location
Expand Down

0 comments on commit 2feacf2

Please sign in to comment.