Skip to content

Commit

Permalink
platforms/kc705: use correct IO voltage for user_sma_gpio_{p,n}.
Browse files Browse the repository at this point in the history
Its bank is FPGA_VADJ, which is 2.5V by default.
whitequark committed Jun 11, 2016
1 parent 73f9b87 commit 5630b7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migen/build/platforms/kc705.py
Original file line number Diff line number Diff line change
@@ -35,8 +35,8 @@
("user_sma_clock_p", 0, Pins("L25"), IOStandard("LVCMOS25")),
("user_sma_clock_n", 0, Pins("K25"), IOStandard("LVCMOS25")),

("user_sma_gpio_p", 0, Pins("Y23"), IOStandard("LVCMOS33")),
("user_sma_gpio_n", 0, Pins("Y24"), IOStandard("LVCMOS33")),
("user_sma_gpio_p", 0, Pins("Y23"), IOStandard("LVCMOS25")),
("user_sma_gpio_n", 0, Pins("Y24"), IOStandard("LVCMOS25")),

("clk200", 0,
Subsignal("p", Pins("AD12"), IOStandard("LVDS")),

0 comments on commit 5630b7c

Please sign in to comment.