artiq/examples/rtio_skew.py

37 lines
904 B
Python

from artiq import *
from artiq.coredevice import comm_serial, core, rtio
def print_skew(p):
print("Input/output skew: {} ns".format(p))
def print_failed():
print("Pulse was not received back")
class RTIOSkew(AutoContext):
parameters = "i o"
@kernel
def run(self):
with parallel:
self.i.gate_rising(10*us)
with sequential:
delay(5*us)
out_t = now()
self.o.pulse(5*us)
in_t = self.i.timestamp()
if in_t < 0*s:
print_failed()
else:
print_skew(int((out_t - in_t)/(1*ns)))
if __name__ == "__main__":
with comm_serial.Comm() as comm:
coredev = core.Core(comm)
exp = RTIOSkew(core=coredev,
i=rtio.RTIOIn(core=coredev, channel=0),
o=rtio.RTIOOut(core=coredev, channel=1))
exp.run()