forked from M-Labs/artiq
test: set inputs to input(), should close #383
This commit is contained in:
parent
1f50b3428e
commit
d42ef46471
|
@ -12,6 +12,8 @@ class CreateTTLPulse(EnvExperiment):
|
||||||
|
|
||||||
@kernel
|
@kernel
|
||||||
def run(self):
|
def run(self):
|
||||||
|
self.loop_in.input()
|
||||||
|
delay_mu(8)
|
||||||
with parallel:
|
with parallel:
|
||||||
self.loop_in.gate_both_mu(1200)
|
self.loop_in.gate_both_mu(1200)
|
||||||
with sequential:
|
with sequential:
|
||||||
|
|
|
@ -158,6 +158,7 @@ class LoopbackCount(EnvExperiment):
|
||||||
|
|
||||||
@kernel
|
@kernel
|
||||||
def run(self):
|
def run(self):
|
||||||
|
self.loop_in.input()
|
||||||
self.loop_out.output()
|
self.loop_out.output()
|
||||||
delay(5*us)
|
delay(5*us)
|
||||||
with parallel:
|
with parallel:
|
||||||
|
|
Loading…
Reference in New Issue