forked from M-Labs/artiq
update NAC3, use new Kernel type annotation
This commit is contained in:
parent
d853604380
commit
088c3b470e
|
@ -10,7 +10,7 @@ time is an error.
|
|||
|
||||
from numpy import int32, int64
|
||||
|
||||
from artiq.language.core import nac3, kernel, portable, KernelInvariant
|
||||
from artiq.language.core import nac3, kernel, portable, Kernel, KernelInvariant
|
||||
from artiq.language.units import ns, us
|
||||
from artiq.coredevice.core import Core
|
||||
from artiq.coredevice.ttl import TTLOut
|
||||
|
@ -150,7 +150,7 @@ class AD53xx:
|
|||
div_write: KernelInvariant[int32]
|
||||
div_read: KernelInvariant[int32]
|
||||
vref: KernelInvariant[float]
|
||||
offset_dacs: int32
|
||||
offset_dacs: Kernel[int32]
|
||||
|
||||
def __init__(self, dmgr, spi_device, ldac_device=None, clr_device=None,
|
||||
chip_select=1, div_write=4, div_read=16, vref=5.,
|
||||
|
|
|
@ -11,7 +11,7 @@ on Mirny-style prefixed SPI buses.
|
|||
from numpy import int32, int64
|
||||
from math import floor, ceil
|
||||
|
||||
from artiq.language.core import nac3, KernelInvariant, kernel, portable, round64
|
||||
from artiq.language.core import nac3, Kernel, KernelInvariant, kernel, portable, round64
|
||||
from artiq.language.units import us, GHz, MHz
|
||||
from artiq.coredevice.core import Core
|
||||
from artiq.coredevice.mirny import Mirny
|
||||
|
@ -58,9 +58,9 @@ class ADF5356:
|
|||
channel: KernelInvariant[int32]
|
||||
sw: KernelInvariant[TTLOut]
|
||||
sysclk: KernelInvariant[float]
|
||||
regs: list[int32]
|
||||
ref_doubler: bool
|
||||
ref_divider: bool
|
||||
regs: Kernel[list[int32]]
|
||||
ref_doubler: Kernel[bool]
|
||||
ref_divider: Kernel[bool]
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
"""RTIO driver for Mirny (4 channel GHz PLLs)
|
||||
"""
|
||||
|
||||
from artiq.language.core import nac3, KernelInvariant, kernel
|
||||
from artiq.language.core import nac3, Kernel, KernelInvariant, kernel
|
||||
from artiq.language.units import us
|
||||
|
||||
from numpy import int32
|
||||
|
@ -51,9 +51,9 @@ class Mirny:
|
|||
core: KernelInvariant[Core]
|
||||
bus: KernelInvariant[SPIMaster]
|
||||
refclk: KernelInvariant[float]
|
||||
clk_sel_hw_rev: list[int32]
|
||||
hw_rev: int32
|
||||
clk_sel: int32
|
||||
clk_sel_hw_rev: Kernel[list[int32]]
|
||||
hw_rev: Kernel[int32]
|
||||
clk_sel: Kernel[int32]
|
||||
|
||||
def __init__(self, dmgr, spi_device, refclk=100e6, clk_sel="XO", core_device="core"):
|
||||
self.core = dmgr.get(core_device)
|
||||
|
|
|
@ -9,7 +9,7 @@ time is an error.
|
|||
|
||||
from numpy import int32, int64
|
||||
|
||||
from artiq.language.core import nac3, KernelInvariant, kernel, portable, extern
|
||||
from artiq.language.core import nac3, Kernel, KernelInvariant, kernel, portable, extern
|
||||
from artiq.coredevice.core import Core
|
||||
from artiq.coredevice.rtio import rtio_output, rtio_input_data
|
||||
|
||||
|
@ -68,7 +68,7 @@ class SPIMaster:
|
|||
core: KernelInvariant[Core]
|
||||
ref_period_mu: KernelInvariant[int64]
|
||||
channel: KernelInvariant[int32]
|
||||
xfer_duration_mu: int64
|
||||
xfer_duration_mu: Kernel[int64]
|
||||
|
||||
def __init__(self, dmgr, channel, div=0, length=0, core_device="core"):
|
||||
self.core = dmgr.get(core_device)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
from numpy import int32, int64
|
||||
|
||||
from artiq.language.core import nac3, KernelInvariant, kernel, portable
|
||||
from artiq.language.core import nac3, Kernel, KernelInvariant, kernel, portable
|
||||
from artiq.language.units import us, ms
|
||||
|
||||
from artiq.coredevice.core import Core
|
||||
|
@ -157,9 +157,9 @@ class CPLD:
|
|||
io_update: KernelInvariant[TTLOut]
|
||||
clk_div: KernelInvariant[int32]
|
||||
sync: KernelInvariant[_DummySync]
|
||||
cfg_reg: int32
|
||||
att_reg: int32
|
||||
sync_div: int32
|
||||
cfg_reg: Kernel[int32]
|
||||
att_reg: Kernel[int32]
|
||||
sync_div: Kernel[int32]
|
||||
|
||||
def __init__(self, dmgr, spi_device, io_update_device=None,
|
||||
dds_reset_device=None, sync_device=None,
|
||||
|
|
|
@ -12,7 +12,7 @@ from artiq.language import import_cache
|
|||
|
||||
|
||||
__all__ = [
|
||||
"KernelInvariant", "virtual",
|
||||
"Kernel", "KernelInvariant", "virtual",
|
||||
"round64", "floor64", "ceil64",
|
||||
"extern", "kernel", "portable", "nac3", "rpc",
|
||||
"parallel", "sequential",
|
||||
|
@ -22,6 +22,9 @@ __all__ = [
|
|||
|
||||
T = TypeVar('T')
|
||||
|
||||
class Kernel(Generic[T]):
|
||||
pass
|
||||
|
||||
class KernelInvariant(Generic[T]):
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in New Issue