Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/nmigen-boards
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6fc91b491214
Choose a base ref
...
head repository: m-labs/nmigen-boards
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fae1ad4d542c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 18, 2020

  1. artyz7: fix attribute name.

    nicolas-robin authored and whitequark committed Jan 18, 2020
    Copy the full SHA
    fae1ad4 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 nmigen_boards/arty_z7.py
8 changes: 4 additions & 4 deletions nmigen_boards/arty_z7.py
Original file line number Diff line number Diff line change
@@ -49,9 +49,9 @@ class ArtyZ720Platform(Xilinx7SeriesPlatform):
Resource("hdmi_rx", 0, # J10
Subsignal("cec", Pins("H17", dir="io")),
Subsignal("clk", DiffPairs("N18", "P19", dir="i"),
Attrs(IO_TYPE="TMDS_33")),
Attrs(IOSTANDARD="TMDS_33")),
Subsignal("d", DiffPairs("V20 T20 N20", "W20 U20 P20", dir="i"),
Attrs(IO_TYPE="TMDS_33")),
Attrs(IOSTANDARD="TMDS_33")),
Subsignal("hpd", Pins("T19", dir="o")),
Subsignal("scl", Pins("U14", dir="io")),
Subsignal("sda", Pins("U15", dir="io")),
@@ -60,9 +60,9 @@ class ArtyZ720Platform(Xilinx7SeriesPlatform):
Resource("hdmi_tx", 0, # J11
Subsignal("cec", Pins("G15", dir="io")),
Subsignal("clk", DiffPairs("L16", "L17", dir="o"),
Attrs(IO_TYPE="TMDS_33")),
Attrs(IOSTANDARD="TMDS_33")),
Subsignal("d", DiffPairs("K17 K19 J18", "K18 J19 H18", dir="o"),
Attrs(IO_TYPE="TMDS_33")),
Attrs(IOSTANDARD="TMDS_33")),
Subsignal("hpd", PinsN("R19", dir="i")),
Subsignal("scl", Pins("M17", dir="io")),
Subsignal("sda", Pins("M18", dir="io")),