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: 7dfe0be7a5b2
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: 6e0cc9d2c9c0
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 3, 2019

  1. dev.uart: fix typo.

    whitequark committed Jul 3, 2019
    Copy the full SHA
    6e0cc9d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 nmigen_boards/dev/uart.py
4 changes: 2 additions & 2 deletions nmigen_boards/dev/uart.py
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ def UARTResource(number, *, rx, tx, rts=None, cts=None, dtr=None, dsr=None, dcd=
attrs=None):
io = []
io.append(Subsignal("rx", Pins(rx, dir="i")))
io.append(Subsignal("tx", Pins(rx, dir="o")))
io.append(Subsignal("tx", Pins(tx, dir="o")))
if rts is not None:
io.append(Subsignal("rts", Pins(rts, dir="o")))
if cts is not None:
@@ -32,7 +32,7 @@ def IrDAResource(number, *, rx, tx, en=None, sd=None, attrs=None):
assert (en is not None) ^ (sd is not None)
io = []
io.append(Subsignal("rx", Pins(rx, dir="i")))
io.append(Subsignal("tx", Pins(rx, dir="o")))
io.append(Subsignal("tx", Pins(tx, dir="o")))
if en is not None:
io.append(Subsignal("en", Pins(en, dir="o")))
if sd is not None: