Commit b804285f authored by Evan Lojewski's avatar Evan Lojewski

kestrel: Allow the LPC clock mirror to be disabled in the platform file.

parent 2d493246
......@@ -185,7 +185,10 @@ class BaseSoC(SoCCore):
# Debug pad locator
debug2_pads = platform.request("debug_port_2")
lpc_debug_mirror_clock_pad = platform.request("lpc_debug_mirror_clock")
try:
lpc_debug_mirror_clock_pad = platform.request("lpc_debug_mirror_clock")
except:
lpc_debug_mirror_clock_pad = Signal()
# Host SPI Flash (Tercel core) -------------------------------------------------------------
if with_hostspiflash:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment