Skip to content

Commit 74f0709

Browse files
committedJul 2, 2015
test/coredevice: fix timestamp conflict
1 parent 984e82b commit 74f0709

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

Diff for: ‎artiq/test/coredevice.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ def run(self):
1616
self.ttl_inout.output()
1717
delay(1*us)
1818
with parallel:
19-
self.ttl_inout.gate_rising(2*us)
19+
# make sure not to send two commands into the same RTIO
20+
# channel with the same timestamp
21+
self.ttl_inout.gate_rising(5*us)
2022
with sequential:
2123
delay(1*us)
2224
t0 = now_mu()

0 commit comments

Comments
 (0)
Please sign in to comment.