Merge pull request #284 from hansfbaier/master

QMTech boards: fix swapped RX/TX lines, remove double uart replacer
This commit is contained in:
enjoy-digital 2021-11-04 15:18:16 +01:00 committed by GitHub
commit a4f8f12067
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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,