forked from M-Labs/artiq
coredevice/core: remove default period
This commit is contained in:
parent
cdcb57effe
commit
4b5c10b641
|
@ -47,7 +47,7 @@ class Core:
|
||||||
external RTIO clock input instead of using its internal oscillator.
|
external RTIO clock input instead of using its internal oscillator.
|
||||||
:param comm_device: name of the device used for communications.
|
:param comm_device: name of the device used for communications.
|
||||||
"""
|
"""
|
||||||
def __init__(self, dmgr, ref_period=8*ns, external_clock=False, comm_device="comm"):
|
def __init__(self, dmgr, ref_period, external_clock=False, comm_device="comm"):
|
||||||
self.ref_period = ref_period
|
self.ref_period = ref_period
|
||||||
self.external_clock = external_clock
|
self.external_clock = external_clock
|
||||||
self.comm = dmgr.get(comm_device)
|
self.comm = dmgr.get(comm_device)
|
||||||
|
|
Loading…
Reference in New Issue