Skip to content

Commit

Permalink
Merge pull request #384 from akioolin/master
Browse files Browse the repository at this point in the history
Update make.py
  • Loading branch information
enjoy-digital authored Jul 9, 2024
2 parents 6f65868 + a12ce1b commit b30b2be
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 @@ -394,6 +394,16 @@ def __init__(self):
"pcie",
})

# HSEDA XC7A35T -----------------------------------------------------------------------------------
class HSEDA_xc7a35t(Board):
soc_kwargs = {"sys_clk_freq": int(80e6)}
def __init__(self):
from litex_boards.targets import hseda_xc7a35t
Board.__init__(self, hseda_xc7a35t.BaseSoC, soc_capabilities={
# Communication
"serial",
})

#---------------------------------------------------------------------------------------------------
# Lattice Boards
#---------------------------------------------------------------------------------------------------
Expand Down Expand Up @@ -786,6 +796,7 @@ def __init__(self):
"stlv7325" : STLV7325,
"stlv7325_v2" : STLV7325_v2,
"decklink_quad_hdmi_recorder" : DecklinkQuadHDMIRecorder,
"hseda_xc7a35t" : HSEDA_xc7a35t,

# Lattice
"versa_ecp5" : VersaECP5,
Expand Down

0 comments on commit b30b2be

Please sign in to comment.