From 209f84e253bfff63f21c07a921b060dc67361629 Mon Sep 17 00:00:00 2001 From: whitequark Date: Sun, 4 Aug 2019 10:53:20 +0000 Subject: Add missing trailing spaces to multiline connector definitions. Or the last and the first on line pin get glued together. --- nmigen_boards/tinyfpga_bx.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'nmigen_boards/tinyfpga_bx.py') diff --git a/nmigen_boards/tinyfpga_bx.py b/nmigen_boards/tinyfpga_bx.py index aefddb7..4eb6942 100644 --- a/nmigen_boards/tinyfpga_bx.py +++ b/nmigen_boards/tinyfpga_bx.py @@ -28,19 +28,21 @@ class TinyFPGABXPlatform(LatticeICE40Platform): *SPIFlashResources(0, cs="F7", clk="G7", mosi="G6", miso="H7", wp="H4", hold="J8", - attrs=Attrs(IO_STANDARD="SB_LVCMOS33")), + attrs=Attrs(IO_STANDARD="SB_LVCMOS33") + ), ] connectors = [ Connector("gpio", 0, # Left side of the board # 1 2 3 4 5 6 7 8 9 10 11 12 13 - " A2 A1 B1 C2 C1 D2 D1 E2 E1 G2 H1 J1 H2" + " A2 A1 B1 C2 C1 D2 D1 E2 E1 G2 H1 J1 H2 " # Right side of the board # 14 15 16 17 18 19 20 21 22 23 24 - " H9 D9 D8 B8 A9 B8 A8 B7 A7 B6 A6" + " H9 D9 D8 B8 A9 B8 A8 B7 A7 B6 A6 " # Bottom of the board # 25 26 27 28 29 30 31 - "G1 J3 J4 G9 J9 E8 J2"), + "G1 J3 J4 G9 J9 E8 J2" + ), ] def toolchain_program(self, products, name): -- cgit v1.2.3