From: Florent Kermarrec Date: Fri, 17 Jan 2020 05:32:00 +0000 (+0100) Subject: soc/cores/uart: set rx_fifo_rx_we to True on UARTCrossover X-Git-Tag: 24jan2021_ls180~734 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b4ba2a47ef86dcf723e200e4842ba1912430b371;p=litex.git soc/cores/uart: set rx_fifo_rx_we to True on UARTCrossover --- diff --git a/litex/soc/cores/uart.py b/litex/soc/cores/uart.py index 99261f83..fc4ec27f 100644 --- a/litex/soc/cores/uart.py +++ b/litex/soc/cores/uart.py @@ -272,7 +272,7 @@ class UARTCrossover(UART): def __init__(self, **kwargs): assert kwargs.get("phy", None) == None UART.__init__(self, **kwargs) - self.submodules.xover = UART(tx_fifo_depth=2, rx_fifo_depth=2, rx_fifo_rx_we=False) + self.submodules.xover = UART(tx_fifo_depth=2, rx_fifo_depth=2, rx_fifo_rx_we=True) self.comb += [ self.source.connect(self.xover.sink), self.xover.source.connect(self.sink)