Use vendor's device and package names everywhere, not nextpnr's.
authorwhitequark <whitequark@whitequark.org>
Tue, 4 Jun 2019 16:09:37 +0000 (16:09 +0000)
committerwhitequark <whitequark@whitequark.org>
Tue, 4 Jun 2019 16:09:37 +0000 (16:09 +0000)
nmigen_boards/ice40_hx1k_blink_evn.py
nmigen_boards/icestick.py
nmigen_boards/tinyfpga_bx.py

index ce72be6498190016a65f662cd4bf910a656eff24..ab940bf85ebd72cda1cb24cd9cf313295cfbbf58 100644 (file)
@@ -9,8 +9,8 @@ __all__ = ["ICE40HX1KBlinkEVNPlatform"]
 
 
 class ICE40HX1KBlinkEVNPlatform(LatticeICE40Platform):
-    device     = "hx1k"
-    package    = "vq100"
+    device     = "iCE40HX1K"
+    package    = "VQ100"
     clocks     = [
         ("clk3p3", 3.3e6),
     ]
index fa58df444452bb7e742a408534cc04f5cd05575b..a80a3f9e358eb07a89573cc839de52012756dca2 100644 (file)
@@ -9,8 +9,8 @@ __all__ = ["ICEStickPlatform"]
 
 
 class ICEStickPlatform(LatticeICE40Platform):
-    device     = "hx1k"
-    package    = "tq144"
+    device     = "iCE40HX1K"
+    package    = "TQ144"
     clocks     = [
         ("clk12", 12e6),
     ]
index 3793a58b8871a1105c65e8a100ea83913e246aea..3d93dc8239e5c394ba0ce6e267fbb1f5e7e38e1c 100644 (file)
@@ -9,8 +9,8 @@ __all__ = ["TinyFPGABXPlatform"]
 
 
 class TinyFPGABXPlatform(LatticeICE40Platform):
-    device     = "lp8k"
-    package    = "cm81"
+    device     = "iCE40LP8K"
+    package    = "CM81"
     clocks     = [
         ("clk16", 16e6),
     ]