2014-10-14 15:54:28 +08:00
|
|
|
from artiq import *
|
|
|
|
|
|
|
|
|
2015-01-30 19:07:51 +08:00
|
|
|
class PulseNotReceived(Exception):
|
|
|
|
pass
|
2014-10-14 15:54:28 +08:00
|
|
|
|
|
|
|
|
2015-01-12 18:51:23 +08:00
|
|
|
class RTIOSkew(AutoDB):
|
2015-02-21 05:01:34 +08:00
|
|
|
__artiq_unit__ = "RTIO skew"
|
|
|
|
|
2015-01-12 18:51:23 +08:00
|
|
|
class DBKeys:
|
2015-03-08 18:37:53 +08:00
|
|
|
core = Device()
|
2015-01-12 18:51:23 +08:00
|
|
|
pmt0 = Device()
|
|
|
|
ttl0 = Device()
|
2015-02-18 07:14:18 +08:00
|
|
|
rtio_skew = Result()
|
2015-01-30 19:07:51 +08:00
|
|
|
|
2014-10-14 15:54:28 +08:00
|
|
|
@kernel
|
|
|
|
def run(self):
|
|
|
|
with parallel:
|
2014-12-03 18:20:30 +08:00
|
|
|
self.pmt0.gate_rising(10*us)
|
2014-10-14 15:54:28 +08:00
|
|
|
with sequential:
|
|
|
|
delay(5*us)
|
|
|
|
out_t = now()
|
2014-12-03 18:20:30 +08:00
|
|
|
self.ttl0.pulse(5*us)
|
|
|
|
in_t = self.pmt0.timestamp()
|
2014-10-14 15:54:28 +08:00
|
|
|
if in_t < 0*s:
|
2015-01-30 19:07:51 +08:00
|
|
|
raise PulseNotReceived
|
2015-02-18 07:14:18 +08:00
|
|
|
self.rtio_skew = out_t - in_t
|