Skip to content

Commit 306890f

Browse files
neuschaeferwhitequark
authored andcommitted
nexys3ddr: Fix I/O voltage for SW8 and SW9
As can be seen in the schematics for the Nexys4DDR board, the switches SW8 and SW9 are connected to the 1.8V rail, rather than 3.3V.
1 parent 84ffc81 commit 306890f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

nmigen_boards/nexys4ddr.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,13 @@ class Nexys4DDRPlatform(Xilinx7SeriesPlatform):
2222
PinsN("C12", dir="i"), Attrs(IOSTANDARD="LVCMOS33")),
2323

2424
*SwitchResources(
25-
pins="J15 L16 M13 R15 R17 T18 U18 R13 T8 U8 R16 T13 H6 U12 U11 V10",
25+
pins={0: 'J15', 1: 'L16', 2: 'M13', 3: 'R15', 4: 'R17', 5: 'T18',
26+
6: 'U18', 7: 'R13', 10: 'R16', 11: 'T13', 12: 'H6',
27+
13: 'U12', 14: 'U11', 15: 'V10'},
2628
attrs=Attrs(IOSTANDARD="LVCMOS33")),
29+
*SwitchResources(
30+
pins={8: 'T8', 9: 'U8'},
31+
attrs=Attrs(IOSTANDARD="LVCMOS18")),
2732

2833
*LEDResources(
2934
pins="H17 K15 J13 N14 R18 V17 U17 U16 V16 T15 U14 T16 V15 V14 V12 V11",

0 commit comments

Comments
 (0)