Skip to content

Commit

Permalink
Added second argument to DIO.add_STD in master and satellite variant …
Browse files Browse the repository at this point in the history
…of kasli (now builds properly)
  • Loading branch information
marmeladapk authored and sbourdeauducq committed May 30, 2018
1 parent 8fd57e6 commit 44c7a02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions artiq/gateware/targets/kasli.py
Expand Up @@ -834,7 +834,7 @@ def __init__(self, *args, **kwargs):
phy = ttl_simple.Output(sc.led)
self.submodules += phy
self.rtio_channels.append(rtio.Channel.from_phy(phy))
eem.DIO.add_std(self, 0, ttl_serdes_7series.InOut_8X)
eem.DIO.add_std(self, 0, ttl_serdes_7series.InOut_8X, ttl_serdes_7series.InOut_8X)

self.config["HAS_RTIO_LOG"] = None
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
Expand All @@ -856,7 +856,7 @@ def __init__(self, *args, **kwargs):
phy = ttl_simple.Output(self.platform.request("sfp_ctl", i).led)
self.submodules += phy
self.rtio_channels.append(rtio.Channel.from_phy(phy))
eem.DIO.add_std(self, 0, ttl_serdes_7series.InOut_8X)
eem.DIO.add_std(self, 0, ttl_serdes_7series.InOut_8X, ttl_serdes_7series.InOut_8X)

self.add_rtio(self.rtio_channels)

Expand Down

0 comments on commit 44c7a02

Please sign in to comment.