diff --git a/boards.py b/boards.py index 6ae158ca..d99527c8 100755 --- a/boards.py +++ b/boards.py @@ -771,6 +771,7 @@ def __init__(self): "spisdcard", }) + #--------------------------------------------------------------------------------------------------- # Gatemate Boards #--------------------------------------------------------------------------------------------------- @@ -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", + }) \ No newline at end of file