QMTech boards: fix swapped RX/TX lines, remove double uart replacer

This commit is contained in:
Hans Baier 2021-11-02 09:34:25 +07:00
parent 0c3f5b0fe1
commit 7aa639ac0f
2 changed files with 2 additions and 4 deletions

View File

@ -14,8 +14,8 @@ class QMTechDaughterboard:
"""
self.io = [
("serial", 0,
Subsignal("rx", Pins("J2:15")),
Subsignal("tx", Pins("J2:16")),
Subsignal("rx", Pins("J2:16")),
Subsignal("tx", Pins("J2:15")),
io_standard
),

View File

@ -76,8 +76,6 @@ class BaseSoC(SoCCore):
platform = qmtech_xc7a35t.Platform(toolchain=toolchain, with_daughterboard=with_daughterboard)
# SoCCore ----------------------------------------------------------------------------------
if kwargs["uart_name"] == "serial":
kwargs["uart_name"] = "jtag_uart"
SoCCore.__init__(self, platform, sys_clk_freq,
ident = "LiteX SoC on QMTech XC7A35T" + (" + Daughterboard" if with_daughterboard else ""),
ident_version = ident_version,