forked from M-Labs/artiq
phaser: kc705: syntax
This commit is contained in:
parent
af0e8582a2
commit
78a41eec8f
|
@ -469,8 +469,9 @@ class AD9154(Module, AutoCSR):
|
||||||
self.submodules += jesd_qpll
|
self.submodules += jesd_qpll
|
||||||
jesd_phys = []
|
jesd_phys = []
|
||||||
for i in range(4):
|
for i in range(4):
|
||||||
jesd_phy = [JESD204BPhyTX(jesd_qpll,
|
jesd_phy = JESD204BPhyTX(
|
||||||
platform.request("ad9154_jesd", i), rtio_freq)
|
jesd_qpll, platform.request("ad9154_jesd", i),
|
||||||
|
rtio_freq)
|
||||||
jesd_phys.append(jesd_phy)
|
jesd_phys.append(jesd_phy)
|
||||||
setattr(self.submodules, "jesd_phy"+str(i), jesd_phy)
|
setattr(self.submodules, "jesd_phy"+str(i), jesd_phy)
|
||||||
for jesd_phy in jesd_phys:
|
for jesd_phy in jesd_phys:
|
||||||
|
|
Loading…
Reference in New Issue