mirror of https://github.com/m-labs/artiq.git
devices/runtime: allow 1ms for all initial DDS programming
This commit is contained in:
parent
7d48ef263a
commit
2449348f31
|
@ -1,4 +1,5 @@
|
||||||
import os
|
import os
|
||||||
|
from fractions import Fraction
|
||||||
|
|
||||||
from llvm import core as lc
|
from llvm import core as lc
|
||||||
from llvm import target as lt
|
from llvm import target as lt
|
||||||
|
@ -138,7 +139,8 @@ def _debug_dump_obj(obj):
|
||||||
class Environment(LinkInterface):
|
class Environment(LinkInterface):
|
||||||
def __init__(self, ref_period):
|
def __init__(self, ref_period):
|
||||||
self.ref_period = ref_period
|
self.ref_period = ref_period
|
||||||
self.initial_time = 4000
|
# allow 1ms for all initial DDS programming
|
||||||
|
self.initial_time = int(Fraction(1, 1000)/self.ref_period)
|
||||||
|
|
||||||
def emit_object(self):
|
def emit_object(self):
|
||||||
tm = lt.TargetMachine.new(triple="or1k", cpu="generic")
|
tm = lt.TargetMachine.new(triple="or1k", cpu="generic")
|
||||||
|
|
Loading…
Reference in New Issue