Skip to content

Commit

Permalink
Fix frame ordering logic
Browse files Browse the repository at this point in the history
  • Loading branch information
arahlin authored May 4, 2024
1 parent 5767a34 commit 6bc50d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dfmux/python/Housekeeping.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ def map_boards(self):

def __call__(self, frame):

# If the boards have been mapped already, then process every frame
# If a wiring frame been emitted once already, then process every frame
# as received.
if len(self.board_serials):
if self.hwmf is not None or (self.ignore_wiring and len(self.board_serials)):
return self.ProcessBuffered(frame)

# Otherwise, process at least one Timepoint frame first to gather
Expand Down

0 comments on commit 6bc50d0

Please sign in to comment.