Skip to content
Snippets Groups Projects
Commit fa045e6f authored by Florent Kermarrec's avatar Florent Kermarrec
Browse files

enclustra_mercury_kx2: Comment user_led2/3 (Conflicting with DRAM pins).

parent 627408ac
No related branches found
No related tags found
No related merge requests found
...@@ -21,8 +21,8 @@ _io = [ ...@@ -21,8 +21,8 @@ _io = [
# Leds # Leds
("user_led", 0, Pins("U9"), IOStandard("LVCMOS15")), ("user_led", 0, Pins("U9"), IOStandard("LVCMOS15")),
("user_led", 1, Pins("V12"), IOStandard("LVCMOS15")), ("user_led", 1, Pins("V12"), IOStandard("LVCMOS15")),
("user_led", 2, Pins("V13"), IOStandard("LVCMOS15")), #("user_led", 2, Pins("V13"), IOStandard("LVCMOS15")),
("user_led", 3, Pins("W13"), IOStandard("LVCMOS15")), #("user_led", 3, Pins("W13"), IOStandard("LVCMOS15")),
# Serial # Serial
("serial", 0, ("serial", 0,
......
...@@ -72,7 +72,7 @@ class BaseSoC(SoCCore): ...@@ -72,7 +72,7 @@ class BaseSoC(SoCCore):
# Leds ------------------------------------------------------------------------------------- # Leds -------------------------------------------------------------------------------------
self.submodules.leds = LedChaser( 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) sys_clk_freq = sys_clk_freq)
# Build -------------------------------------------------------------------------------------------- # Build --------------------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment