paltforms/marblemini: add break_off_pmod.

This commit is contained in:
Florent Kermarrec 2020-05-19 15:42:53 +02:00
parent c2cd863658
commit 587caf7584
1 changed files with 7 additions and 0 deletions

View File

@ -231,6 +231,13 @@ _connectors = [
}) })
] ]
_pmod0_pins = ["PMOD0:{}".format(i) for i in range(8)]
_pmod1_pins = ["PMOD1:{}".format(i) for i in range(8)]
break_off_pmod = [
("pmod0", 0, Pins(*_pmod0_pins), IOStandard("LVCMOS33")),
("pmod1", 0, Pins(*_pmod1_pins), IOStandard("LVCMOS33")),
]
# Platform ----------------------------------------------------------------------------------------- # Platform -----------------------------------------------------------------------------------------
class Platform(XilinxPlatform): class Platform(XilinxPlatform):