From: whitequark Date: Tue, 4 Jun 2019 16:09:37 +0000 (+0000) Subject: Use vendor's device and package names everywhere, not nextpnr's. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e8dcc1e4d361742b4242016bdff732dcfb5306f3;p=nmigen-boards.git Use vendor's device and package names everywhere, not nextpnr's. --- diff --git a/nmigen_boards/ice40_hx1k_blink_evn.py b/nmigen_boards/ice40_hx1k_blink_evn.py index ce72be6..ab940bf 100644 --- a/nmigen_boards/ice40_hx1k_blink_evn.py +++ b/nmigen_boards/ice40_hx1k_blink_evn.py @@ -9,8 +9,8 @@ __all__ = ["ICE40HX1KBlinkEVNPlatform"] class ICE40HX1KBlinkEVNPlatform(LatticeICE40Platform): - device = "hx1k" - package = "vq100" + device = "iCE40HX1K" + package = "VQ100" clocks = [ ("clk3p3", 3.3e6), ] diff --git a/nmigen_boards/icestick.py b/nmigen_boards/icestick.py index fa58df4..a80a3f9 100644 --- a/nmigen_boards/icestick.py +++ b/nmigen_boards/icestick.py @@ -9,8 +9,8 @@ __all__ = ["ICEStickPlatform"] class ICEStickPlatform(LatticeICE40Platform): - device = "hx1k" - package = "tq144" + device = "iCE40HX1K" + package = "TQ144" clocks = [ ("clk12", 12e6), ] diff --git a/nmigen_boards/tinyfpga_bx.py b/nmigen_boards/tinyfpga_bx.py index 3793a58..3d93dc8 100644 --- a/nmigen_boards/tinyfpga_bx.py +++ b/nmigen_boards/tinyfpga_bx.py @@ -9,8 +9,8 @@ __all__ = ["TinyFPGABXPlatform"] class TinyFPGABXPlatform(LatticeICE40Platform): - device = "lp8k" - package = "cm81" + device = "iCE40LP8K" + package = "CM81" clocks = [ ("clk16", 16e6), ]