forked from M-Labs/artiq
ttl/clockgen: expose acc_width
This commit is contained in:
parent
abd58667b9
commit
65ec6c28f4
|
@ -224,20 +224,21 @@ class TTLClockGen(AutoDB):
|
||||||
def build(self):
|
def build(self):
|
||||||
# in RTIO cycles
|
# in RTIO cycles
|
||||||
self.previous_timestamp = int64(0)
|
self.previous_timestamp = int64(0)
|
||||||
|
self.acc_width = 24
|
||||||
|
|
||||||
@portable
|
@portable
|
||||||
def frequency_to_ftw(self, frequency):
|
def frequency_to_ftw(self, frequency):
|
||||||
"""Returns the frequency tuning word corresponding to the given
|
"""Returns the frequency tuning word corresponding to the given
|
||||||
frequency.
|
frequency.
|
||||||
"""
|
"""
|
||||||
return round(2**24*frequency*self.core.ref_period)
|
return round(2**self.acc_width*frequency*self.core.ref_period)
|
||||||
|
|
||||||
@portable
|
@portable
|
||||||
def ftw_to_frequency(self, ftw):
|
def ftw_to_frequency(self, ftw):
|
||||||
"""Returns the frequency corresponding to the given frequency tuning
|
"""Returns the frequency corresponding to the given frequency tuning
|
||||||
word.
|
word.
|
||||||
"""
|
"""
|
||||||
return ftw/self.core.ref_period/2**24
|
return ftw/self.core.ref_period/2**self.acc_width
|
||||||
|
|
||||||
@kernel
|
@kernel
|
||||||
def set_mu(self, frequency):
|
def set_mu(self, frequency):
|
||||||
|
|
Loading…
Reference in New Issue