pr243: Make led_chaser optional.
This commit is contained in:
parent
9835bd5f93
commit
0ca203487b
|
@ -116,6 +116,7 @@ class BaseSoC(SoCCore):
|
|||
def __init__(self, variant="a7-35",
|
||||
toolchain="vivado",
|
||||
sys_clk_freq=int(100e6),
|
||||
with_led_chaser=True,
|
||||
ident_version=True,
|
||||
with_jtagbone=True,
|
||||
with_mapped_flash=False,
|
||||
|
@ -136,6 +137,7 @@ class BaseSoC(SoCCore):
|
|||
addAsyncSram(self,platform,"main_ram",0x40000000,512*1024)
|
||||
|
||||
# Leds -------------------------------------------------------------------------------------
|
||||
if with_led_chaser:
|
||||
self.submodules.leds = LedChaser(
|
||||
pads = platform.request_all("user_led"),
|
||||
sys_clk_freq = sys_clk_freq)
|
||||
|
|
|
@ -168,7 +168,7 @@ def addCellularRAM(soc, platform, name, origin):
|
|||
# BaseSoC ------------------------------------------------------------------------------------------
|
||||
|
||||
class BaseSoC(SoCCore):
|
||||
def __init__(self, sys_clk_freq=int(75e6), with_ethernet=False, with_etherbone=False, with_video_terminal=False, with_video_framebuffer=False, **kwargs):
|
||||
def __init__(self, sys_clk_freq=int(75e6), with_led_chaser=True, with_ethernet=False, with_etherbone=False, with_video_terminal=False, with_video_framebuffer=False, **kwargs):
|
||||
platform = digilent_nexys4.Platform()
|
||||
|
||||
# SoCCore ----------------------------------_-----------------------------------------------
|
||||
|
@ -201,6 +201,7 @@ class BaseSoC(SoCCore):
|
|||
self.add_video_framebuffer(phy=self.videophy, timings="800x600@60Hz", clock_domain="vga")
|
||||
|
||||
# Leds -------------------------------------------------------------------------------------
|
||||
if with_led_chaser:
|
||||
self.submodules.leds = LedChaser(
|
||||
pads = platform.request_all("user_led"),
|
||||
sys_clk_freq = sys_clk_freq)
|
||||
|
|
|
@ -113,10 +113,10 @@ class BaseSoC(SoCCore):
|
|||
variant="a7-35",
|
||||
toolchain="vivado",
|
||||
sys_clk_freq=int(100e6),
|
||||
with_led_chaser=True,
|
||||
ident_version=True,
|
||||
with_jtagbone=True,
|
||||
with_mapped_flash=False,
|
||||
enable_leds = True,
|
||||
**kwargs):
|
||||
|
||||
platform = micronova_mercury2.Platform()
|
||||
|
@ -136,7 +136,7 @@ class BaseSoC(SoCCore):
|
|||
#self.add_timer()
|
||||
|
||||
# Leds -------------------------------------------------------------------------------------
|
||||
if enable_leds:
|
||||
if with_led_chaser:
|
||||
self.submodules.leds = LedChaser(
|
||||
pads = platform.request_all("user_led"),
|
||||
sys_clk_freq = sys_clk_freq)
|
||||
|
|
Loading…
Reference in New Issue