Skip to content

Commit

Permalink
test/coredevice: fix timestamp conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
sbourdeauducq committed Jul 2, 2015
1 parent 984e82b commit 74f0709
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion artiq/test/coredevice.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ def run(self):
self.ttl_inout.output()
delay(1*us)
with parallel:
self.ttl_inout.gate_rising(2*us)
# make sure not to send two commands into the same RTIO
# channel with the same timestamp
self.ttl_inout.gate_rising(5*us)
with sequential:
delay(1*us)
t0 = now_mu()
Expand Down

0 comments on commit 74f0709

Please sign in to comment.