mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
enclustra_mercury_kx2: Comment user_led2/3 (Conflicting with DRAM pins).
This commit is contained in:
parent
627408ac81
commit
fa045e6fa4
2 changed files with 3 additions and 3 deletions
|
@ -21,8 +21,8 @@ _io = [
|
|||
# Leds
|
||||
("user_led", 0, Pins("U9"), IOStandard("LVCMOS15")),
|
||||
("user_led", 1, Pins("V12"), IOStandard("LVCMOS15")),
|
||||
("user_led", 2, Pins("V13"), IOStandard("LVCMOS15")),
|
||||
("user_led", 3, Pins("W13"), IOStandard("LVCMOS15")),
|
||||
#("user_led", 2, Pins("V13"), IOStandard("LVCMOS15")),
|
||||
#("user_led", 3, Pins("W13"), IOStandard("LVCMOS15")),
|
||||
|
||||
# Serial
|
||||
("serial", 0,
|
||||
|
|
|
@ -72,7 +72,7 @@ class BaseSoC(SoCCore):
|
|||
|
||||
# Leds -------------------------------------------------------------------------------------
|
||||
self.submodules.leds = LedChaser(
|
||||
pads = Cat(*[platform.request("user_led", i) for i in range(4)]),
|
||||
pads = platform.request_all("user_led"),
|
||||
sys_clk_freq = sys_clk_freq)
|
||||
|
||||
# Build --------------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue