Merge pull request #401 from antmicro/move_to_f4pga

Move from deprecated Symbiflow to F4PGA
This commit is contained in:
enjoy-digital 2022-06-20 11:56:51 +02:00 committed by GitHub
commit 358a641317
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ class Platform(XilinxPlatform):
self.add_platform_command("set_property INTERNAL_VREF 0.675 [get_iobanks 15]")
self.add_platform_command("set_property CFGBVS VCCO [current_design]")
self.add_platform_command("set_property CONFIG_VOLTAGE 3.3 [current_design]")
self.toolchain.symbiflow_device = device
self.toolchain.f4pga_device = device
def create_programmer(self):
bscan_spi = "bscan_spi_xc7a35t.bit"

View File

@ -22,6 +22,6 @@ _io = [
# Platform -----------------------------------------------------------------------------------------
class Platform(QuickLogicPlatform):
def __init__(self, toolchain="symbiflow"):
def __init__(self, toolchain="f4pga"):
QuickLogicPlatform.__init__(self, "ql-eos-s3", _io, toolchain=toolchain)