From 1ad2022138986ab238e4c2b81ccd865bb6a1a707 Mon Sep 17 00:00:00 2001 From: Robert Szczepanski Date: Fri, 17 Jun 2022 16:15:31 +0200 Subject: [PATCH] quicklogic_quickfeather: Move from deprecated Symbiflow to F4PGA --- litex_boards/platforms/qmtech_xc7a35t.py | 2 +- litex_boards/platforms/quicklogic_quickfeather.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/litex_boards/platforms/qmtech_xc7a35t.py b/litex_boards/platforms/qmtech_xc7a35t.py index c1afa42..e7dd9e3 100644 --- a/litex_boards/platforms/qmtech_xc7a35t.py +++ b/litex_boards/platforms/qmtech_xc7a35t.py @@ -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" diff --git a/litex_boards/platforms/quicklogic_quickfeather.py b/litex_boards/platforms/quicklogic_quickfeather.py index d7f4eff..8157204 100644 --- a/litex_boards/platforms/quicklogic_quickfeather.py +++ b/litex_boards/platforms/quicklogic_quickfeather.py @@ -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)