Skip to content

Commit

Permalink
targets/atlys_video: Enable frequency counter for Atlys board.
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Aug 9, 2016
1 parent 81f2e60 commit bd347a5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions targets/atlys_video.py
Expand Up @@ -31,11 +31,14 @@ def __init__(self, platform, **kwargs):
self.submodules.hdmi_in0 = HDMIIn(
platform.request("hdmi_in", 0),
self.sdram.crossbar.get_master(),
fifo_depth=1024)
fifo_depth=1024,
soc=self)
self.submodules.hdmi_in1 = HDMIIn(
platform.request("hdmi_in", 1),
self.sdram.crossbar.get_master(),
fifo_depth=1024)
fifo_depth=1024,
soc=self)

self.submodules.hdmi_out0 = HDMIOut(
platform.request("hdmi_out", 0),
self.sdram.crossbar.get_master(),
Expand Down

0 comments on commit bd347a5

Please sign in to comment.