From e16e5e059188e66a9fd5abc37ce3dce1e4e1387e Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 1 Mar 2022 10:30:14 +0100 Subject: [PATCH] digilent_arty_z7: Fix add_period_constraint. --- litex_boards/platforms/digilent_arty_z7.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex_boards/platforms/digilent_arty_z7.py b/litex_boards/platforms/digilent_arty_z7.py index e38b49d..9d70197 100644 --- a/litex_boards/platforms/digilent_arty_z7.py +++ b/litex_boards/platforms/digilent_arty_z7.py @@ -241,4 +241,4 @@ class Platform(XilinxPlatform): def do_finalize(self, fragment): XilinxPlatform.do_finalize(self, fragment) - self.add_period_constraint(self.lookup_request("clk125", loose=True), 1e6/125e6) + self.add_period_constraint(self.lookup_request("clk125", loose=True), 1e9/125e6)