We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b411d commit 052a0f0Copy full SHA for 052a0f0
labscript_devices/NI_DAQmx/labscript_devices.py
@@ -236,9 +236,10 @@ def __init__(
236
# Tell blacs_worker to use AI_start_delay_ticks to define delay
237
self.start_delay_ticks = True
238
else:
239
- self.start_delay_ticks = False
+ raise LabscriptError("You have specified `AI_start_delay = None` but have not provided `AI_start_delay_ticks`.")
240
241
- raise LabscriptError("You have specified `AI_start_delay = None` but have not provided `AI_start_delay_ticks`.")
+ # Tells blacs_worker to use AI_start_delay to define delay
242
+ self.start_delay_ticks = False
243
self.num_AO = num_AO
244
self.num_CI = num_CI
245
self.ports = ports if ports is not None else {}
0 commit comments