Merge pull request #402 from antmicro/litex-gen-fix-uart-pins

tools: litex_gen: fix missing UART pins
This commit is contained in:
enjoy-digital 2020-02-25 15:53:13 +01:00 committed by GitHub
commit a2d6986910
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -49,6 +49,15 @@ class LiteXCore(SoCMini):
platform = Platform(_io) platform = Platform(_io)
# UART
if kwargs["with_uart"]:
platform.add_extension([
("serial", 0,
Subsignal("tx", Pins(1)),
Subsignal("rx", Pins(1)),
)
])
# CRG -------------------------------------------------------------------------------------- # CRG --------------------------------------------------------------------------------------
self.submodules.crg = CRG(platform.request("sys_clk"), rst=platform.request("sys_rst")) self.submodules.crg = CRG(platform.request("sys_clk"), rst=platform.request("sys_rst"))