Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions boards.py
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,7 @@ def __init__(self):
"spisdcard",
})


#---------------------------------------------------------------------------------------------------
# Gatemate Boards
#---------------------------------------------------------------------------------------------------
Expand All @@ -796,3 +797,20 @@ def __init__(self):
"serial",
"spisdcard",
})

#---------------------------------------------------------------------------------------------------
# Embedfire Boards
#---------------------------------------------------------------------------------------------------

# Embedfire rise pro support ---------------------------------------------------------------------

class Embedfire_rise_pro(Board):
def __init__(self):
from litex_boards.targets import embedfire_rise_pro
Board.__init__(self, embedfire_rise_pro.BaseSoC, soc_capabilities={
# Communication
"serial",
"leds",
"switches",
"sdcard",
})