Skip to content

Commit

Permalink
Merge pull request #88 from dihm/spinnaker_fix
Browse files Browse the repository at this point in the history
Quick fix for Spinnaker debugging
dihm authored Oct 22, 2021
2 parents 4b0722f + 8909385 commit 737c37b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions labscript_devices/SpinnakerCamera/blacs_workers.py
Original file line number Diff line number Diff line change
@@ -234,8 +234,8 @@ def stop_acquisition(self):
num_frames=self.get_attribute('StreamTotalBufferCount', stream_map=True)
failed_frames=self.get_attribute('StreamFailedBufferCount', stream_map=True)
underrun_frames=self.get_attribute('StreamBufferUnderrunCount', stream_map=True)
print('Stream info: %d frames acquired, %d failed, %d underrun' %
(num_frames, failed_frames, underrun_frames))
print('Stream info: %s frames acquired, %s failed, %s underrun' %
(str(num_frames), str(failed_frames), str(underrun_frames)))

def abort_acquisition(self):
print('Stopping acquisition...')

0 comments on commit 737c37b

Please sign in to comment.