Update qmtech_artix7_fgg676.py

This commit is contained in:
Chandler Klüser 2023-09-01 05:03:44 -03:00 committed by GitHub
parent d8b006568a
commit 632bab937e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ class Platform(Xilinx7SeriesPlatform):
default_clk_period = 1e9/50e6 default_clk_period = 1e9/50e6
kgates = None kgates = None
def __init__(self, kgates=100, toolchain="vivado", with_daughterboard=False): def __init__(self, kgates=100, toolchain="vivado", with_daughterboard=False, with_rp2040_daughterboard=False):
assert(kgates in [75, 100], "kgates can only be 75 or 100 representing a XC7A75T, XC7TA100T") assert(kgates in [75, 100], "kgates can only be 75 or 100 representing a XC7A75T, XC7TA100T")
self.kgates = kgates self.kgates = kgates
device = f"xc7a{kgates}tfgg676-1" device = f"xc7a{kgates}tfgg676-1"