2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-25 19:28:26 +08:00

devices/corecom_dummy: fix ref_period

This commit is contained in:
Sebastien Bourdeauducq 2014-10-13 17:20:12 +08:00
parent 74adb39157
commit 0158de5ac9

View File

@ -1,7 +1,7 @@
from operator import itemgetter
from fractions import Fraction
from artiq.devices.runtime import LinkInterface
from artiq.language.units import ns
class _RuntimeEnvironment(LinkInterface):
@ -14,7 +14,7 @@ class _RuntimeEnvironment(LinkInterface):
class CoreCom:
def get_runtime_env(self):
return _RuntimeEnvironment(10*ns)
return _RuntimeEnvironment(Fraction(1, 1000000000))
def load(self, kcode):
print("================")