QMTech XC7K325T: remove wrong reset button assignment

This commit is contained in:
Hans Baier 2024-02-27 15:37:55 +07:00
parent 7bc03e5fbc
commit 72ea25512b
1 changed files with 0 additions and 2 deletions

View File

@ -140,13 +140,11 @@ class Platform(XilinxPlatform):
core_resources_daughterboard = [
("onboard_led_1", 0, Pins("J26"), IOStandard("LVCMOS33")),
("onboard_led_2", 0, Pins("H26"), IOStandard("LVCMOS33")),
("cpu_reset", 0, Pins("AD21"), IOStandard("LVCMOS33")),
]
core_resources_standalone = [
("user_led", 0, Pins("J26"), IOStandard("LVCMOS33")),
("user_led", 1, Pins("H26"), IOStandard("LVCMOS33")),
("cpu_reset", 0, Pins("AD21"), IOStandard("LVCMOS33")),
]
def __init__(self, toolchain="vivado", with_daughterboard=False):