mirror of https://github.com/m-labs/artiq.git
examples/nac3devices: add sampler
This commit is contained in:
parent
3d66a6be5d
commit
808f968617
|
@ -21,6 +21,10 @@
|
||||||
"dds": "ad9912",
|
"dds": "ad9912",
|
||||||
"ports": [2, 3],
|
"ports": [2, 3],
|
||||||
"clk_sel": 2
|
"clk_sel": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "sampler",
|
||||||
|
"ports": [4]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@ from artiq.coredevice.mirny import Mirny as MirnyCPLD
|
||||||
from artiq.coredevice.adf5356 import ADF5356
|
from artiq.coredevice.adf5356 import ADF5356
|
||||||
from artiq.coredevice.urukul import CPLD as UrukulCPLD
|
from artiq.coredevice.urukul import CPLD as UrukulCPLD
|
||||||
from artiq.coredevice.ad9912 import AD9912
|
from artiq.coredevice.ad9912 import AD9912
|
||||||
|
from artiq.coredevice.sampler import Sampler
|
||||||
|
|
||||||
|
|
||||||
@nac3
|
@nac3
|
||||||
|
@ -15,6 +16,7 @@ class NAC3Devices(EnvExperiment):
|
||||||
mirny0_ch0: KernelInvariant[ADF5356]
|
mirny0_ch0: KernelInvariant[ADF5356]
|
||||||
urukul0_cpld: KernelInvariant[UrukulCPLD]
|
urukul0_cpld: KernelInvariant[UrukulCPLD]
|
||||||
urukul0_ch0: KernelInvariant[AD9912]
|
urukul0_ch0: KernelInvariant[AD9912]
|
||||||
|
sampler0: KernelInvariant[Sampler]
|
||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
self.setattr_device("core")
|
self.setattr_device("core")
|
||||||
|
@ -23,6 +25,7 @@ class NAC3Devices(EnvExperiment):
|
||||||
self.setattr_device("mirny0_ch0")
|
self.setattr_device("mirny0_ch0")
|
||||||
self.setattr_device("urukul0_cpld")
|
self.setattr_device("urukul0_cpld")
|
||||||
self.setattr_device("urukul0_ch0")
|
self.setattr_device("urukul0_ch0")
|
||||||
|
self.setattr_device("sampler0")
|
||||||
|
|
||||||
@kernel
|
@kernel
|
||||||
def run(self):
|
def run(self):
|
||||||
|
@ -46,3 +49,8 @@ class NAC3Devices(EnvExperiment):
|
||||||
self.urukul0_ch0.set((10. + float(i))*MHz)
|
self.urukul0_ch0.set((10. + float(i))*MHz)
|
||||||
self.urukul0_ch0.set_att(6.)
|
self.urukul0_ch0.set_att(6.)
|
||||||
self.core.delay(500.*ms)
|
self.core.delay(500.*ms)
|
||||||
|
|
||||||
|
self.core.break_realtime()
|
||||||
|
self.sampler0.init()
|
||||||
|
samples = [0. for _ in range(8)]
|
||||||
|
self.sampler0.sample(samples)
|
||||||
|
|
Loading…
Reference in New Issue