Skip to content

Commit 7a24051

Browse files
committedJul 9, 2016
rtio: do not reset DDS and SPI PHYs on RTIO reset (#503)
1 parent e0ed99c commit 7a24051

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

Diff for: ‎artiq/gateware/rtio/phy/dds.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class _AD9xxx(Module):
88
def __init__(self, ftw_base, pads, nchannels, onehot=False, **kwargs):
9-
self.submodules._ll = ClockDomainsRenamer("rio")(
9+
self.submodules._ll = ClockDomainsRenamer("rio_phy")(
1010
ad9xxx.AD9xxx(pads, **kwargs))
1111
self.submodules._rt2wb = RT2WB(len(pads.a)+1, self._ll.bus)
1212
self.rtlink = self._rt2wb.rtlink

Diff for: ‎artiq/gateware/rtio/phy/spi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class SPIMaster(Module):
88
def __init__(self, pads, **kwargs):
9-
self.submodules._ll = ClockDomainsRenamer("rio")(
9+
self.submodules._ll = ClockDomainsRenamer("rio_phy")(
1010
SPIMasterWB(pads, **kwargs))
1111
self.submodules._rt2wb = RT2WB(2, self._ll.bus)
1212
self.rtlink = self._rt2wb.rtlink

0 commit comments

Comments
 (0)
Please sign in to comment.