Skip to content

Commit 42bc6af

Browse files
committed
XimeaCamera: comment why default trigger is EDGE_RISING (issue #131)
1 parent b9dd0db commit 42bc6af

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

microscope/cameras/ximea.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ def initialize(self):
9191
_logger.info('Initializing.')
9292
# Try set camera into rising-edge hardware trigger mode. If
9393
# that can't be done set it to software trigger mode.
94+
# TODO: even if the trigger source is set to edge rising, the
95+
# camera can still be triggered by software. For now, this
96+
# lets us work with hardware and software triggers without
97+
# having a setting for that (but we will need to change this
98+
# one day). See issue #131.
9499
try:
95100
self._handle.set_trigger_source('XI_TRG_EDGE_RISING')
96101
except:

0 commit comments

Comments
 (0)