tools: litex_gen: fix missing UART pins
This commit is contained in:
parent
9521f2ff80
commit
75b000a32f
|
@ -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"))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue