mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-26 11:48:27 +08:00
soc: increase DDS output FIFO sizes
This commit is contained in:
parent
b7d976e7db
commit
9f3f9255a2
@ -83,7 +83,9 @@ class NIST_QC1(MiniSoC, AMPSoC):
|
|||||||
self.add_constant("DDS_CHANNEL_COUNT", 8)
|
self.add_constant("DDS_CHANNEL_COUNT", 8)
|
||||||
phy = dds.AD9858(platform.request("dds"))
|
phy = dds.AD9858(platform.request("dds"))
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=4))
|
rtio_channels.append(rtio.Channel.from_phy(phy,
|
||||||
|
ofifo_depth=512,
|
||||||
|
ififo_depth=4))
|
||||||
|
|
||||||
# RTIO core
|
# RTIO core
|
||||||
self.submodules.rtio_crg = _RTIOCRG(platform, self.crg.pll_sys)
|
self.submodules.rtio_crg = _RTIOCRG(platform, self.crg.pll_sys)
|
||||||
|
@ -118,7 +118,9 @@ trce -v 12 -fastpaths -tsi {build_name}.tsi -o {build_name}.twr {build_name}.ncd
|
|||||||
self.add_constant("DDS_CHANNEL_COUNT", 8)
|
self.add_constant("DDS_CHANNEL_COUNT", 8)
|
||||||
phy = dds.AD9858(platform.request("dds"))
|
phy = dds.AD9858(platform.request("dds"))
|
||||||
self.submodules += phy
|
self.submodules += phy
|
||||||
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=4))
|
rtio_channels.append(rtio.Channel.from_phy(phy,
|
||||||
|
ofifo_depth=512,
|
||||||
|
ififo_depth=4))
|
||||||
|
|
||||||
# RTIO core
|
# RTIO core
|
||||||
self.submodules.rtio_crg = _RTIOCRG(platform)
|
self.submodules.rtio_crg = _RTIOCRG(platform)
|
||||||
|
Loading…
Reference in New Issue
Block a user