Skip to content

Commit fea16e0

Browse files
author
Ian Dobbie
committed
fix for andor EMCCD timing issue #203
1 parent eb5a2b7 commit fea16e0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

microscope/cameras/atmcd.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1718,7 +1718,12 @@ def get_cycle_time(self):
17181718
with self:
17191719
exposure, accumulate, kinetic = GetAcquisitionTimings()
17201720
readout = GetReadOutTime()
1721-
return exposure + readout
1721+
#IMD 20210422 DeepSIM timing is wrong as the keepclear cycles are
1722+
# not accounted for.
1723+
#return exposure + readout
1724+
#This appears to allow the correct time between trigger pulses.
1725+
return kinetic
1726+
17221727

17231728
def _set_readout_mode(self, mode_index):
17241729
"""Configure channel, amplifier and VS-speed."""

0 commit comments

Comments
 (0)