mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
Merge pull request #284 from hansfbaier/master
QMTech boards: fix swapped RX/TX lines, remove double uart replacer
This commit is contained in:
commit
a4f8f12067
2 changed files with 2 additions and 4 deletions
|
@ -14,8 +14,8 @@ class QMTechDaughterboard:
|
||||||
"""
|
"""
|
||||||
self.io = [
|
self.io = [
|
||||||
("serial", 0,
|
("serial", 0,
|
||||||
Subsignal("rx", Pins("J2:15")),
|
Subsignal("rx", Pins("J2:16")),
|
||||||
Subsignal("tx", Pins("J2:16")),
|
Subsignal("tx", Pins("J2:15")),
|
||||||
io_standard
|
io_standard
|
||||||
),
|
),
|
||||||
|
|
||||||
|
|
|
@ -76,8 +76,6 @@ class BaseSoC(SoCCore):
|
||||||
platform = qmtech_xc7a35t.Platform(toolchain=toolchain, with_daughterboard=with_daughterboard)
|
platform = qmtech_xc7a35t.Platform(toolchain=toolchain, with_daughterboard=with_daughterboard)
|
||||||
|
|
||||||
# SoCCore ----------------------------------------------------------------------------------
|
# SoCCore ----------------------------------------------------------------------------------
|
||||||
if kwargs["uart_name"] == "serial":
|
|
||||||
kwargs["uart_name"] = "jtag_uart"
|
|
||||||
SoCCore.__init__(self, platform, sys_clk_freq,
|
SoCCore.__init__(self, platform, sys_clk_freq,
|
||||||
ident = "LiteX SoC on QMTech XC7A35T" + (" + Daughterboard" if with_daughterboard else ""),
|
ident = "LiteX SoC on QMTech XC7A35T" + (" + Daughterboard" if with_daughterboard else ""),
|
||||||
ident_version = ident_version,
|
ident_version = ident_version,
|
||||||
|
|
Loading…
Reference in a new issue