From: Florent Kermarrec Date: Tue, 23 Apr 2019 09:37:29 +0000 (+0200) Subject: boards/platforms/ulx3s: fix default clock X-Git-Tag: 24jan2021_ls180~1286 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=818dfae1e8685070299417e0477862250a75da9b;p=litex.git boards/platforms/ulx3s: fix default clock --- diff --git a/litex/boards/platforms/ulx3s.py b/litex/boards/platforms/ulx3s.py index ed1bcab6..2a7f6d84 100644 --- a/litex/boards/platforms/ulx3s.py +++ b/litex/boards/platforms/ulx3s.py @@ -68,8 +68,8 @@ _io = [ # Platform ----------------------------------------------------------------------------------------- class Platform(LatticePlatform): - default_clk_name = "clk100" - default_clk_period = 10 + default_clk_name = "clk25" + default_clk_period = 40 def __init__(self, device="LFE5U-45F", **kwargs): LatticePlatform.__init__(self, device + "-6BG381C", _io, **kwargs)