dev.uart: fix typo.
authorwhitequark <whitequark@whitequark.org>
Wed, 3 Jul 2019 09:54:39 +0000 (09:54 +0000)
committerwhitequark <whitequark@whitequark.org>
Wed, 3 Jul 2019 09:54:45 +0000 (09:54 +0000)
nmigen_boards/dev/uart.py

index df03bd19dcb41cb003da1c6da897b1a283f0eb59..495dbcfb4b90ac3f54dc5bc0f614eed9b608f9ac 100644 (file)
@@ -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: