diff options
| author | whitequark <whitequark@whitequark.org> | 2019-08-04 10:53:20 +0000 |
|---|---|---|
| committer | whitequark <whitequark@whitequark.org> | 2019-08-04 10:53:20 +0000 |
| commit | 209f84e253bfff63f21c07a921b060dc67361629 (patch) | |
| tree | 641957140d09b3521b5ecfeb9d7a326b82b915bb /nmigen_boards/tinyfpga_bx.py | |
| parent | 6fd7735f77b9a5d7171b3517293af745c6f04801 (diff) | |
Add missing trailing spaces to multiline connector definitions.
Or the last and the first on line pin get glued together.
Diffstat (limited to 'nmigen_boards/tinyfpga_bx.py')
| -rw-r--r-- | nmigen_boards/tinyfpga_bx.py | 10 |
1 files changed, 6 insertions, 4 deletions
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): |
