Skip to content

Commit

Permalink
Merge pull request #342 from implr/master
Browse files Browse the repository at this point in the history
Fix STLV7325 after renames in litex_boards
  • Loading branch information
enjoy-digital committed Aug 29, 2023
2 parents e693c96 + dbab6aa commit ca24da4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,16 @@ def __init__(self):
"sdcard",
})

class STLV7325_v2(Board):
def __init__(self):
from litex_boards.targets import sitlinv_stlv7325_v2
Board.__init__(self, sitlinv_stlv7325_v2.BaseSoC, soc_capabilities={
# Communication
"serial",
# Storage
"sdcard",
})

# Decklink Quad HDMI Recorder ----------------------------------------------------------------------

class DecklinkQuadHDMIRecorder(Board):
Expand Down Expand Up @@ -762,6 +772,7 @@ def __init__(self):
"sds1104xe" : SDS1104XE,
"mnt_rkx7" : MNT_RKX7,
"stlv7325" : STLV7325,
"stlv7325_v2" : STLV7325_v2,
"decklink_quad_hdmi_recorder" : DecklinkQuadHDMIRecorder,

# Lattice
Expand Down

0 comments on commit ca24da4

Please sign in to comment.