Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Klipper3d/klipper
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jun 8, 2024
2 parents c99f2f6 + 49c0ad6 commit 29a46db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/motan/readlog.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def pull_data(self, req_time):
self._pull_block(req_time)
continue
step_pos = step_data[data_pos][1]
return (step_pos - self.mcu_phase_offset) % self.phases
return (step_pos + self.mcu_phase_offset) % self.phases
def _pull_block(self, req_time):
step_data = self.step_data
del step_data[:-1]
Expand Down

0 comments on commit 29a46db

Please sign in to comment.