coredevice/dds: round FTW instead of flooring

This commit is contained in:
Sebastien Bourdeauducq 2014-11-17 18:36:00 -07:00
parent f11fb0f553
commit abae5c6728
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class DDS(AutoContext):
frequency.
"""
return int(2**32*frequency/self.dds_sysclk)
return round(2**32*frequency/self.dds_sysclk)
@portable
def ftw_to_frequency(self, ftw):