quicklogic_quickfeather: Move from deprecated Symbiflow to F4PGA

This commit is contained in:
Robert Szczepanski 2022-06-17 16:15:31 +02:00
parent 29b72fac7e
commit 1ad2022138
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)