projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5aa516c
)
soc/cores/uart: set rx_fifo_rx_we to True on UARTCrossover
author
Florent Kermarrec
<florent@enjoy-digital.fr>
Fri, 17 Jan 2020 05:32:00 +0000
(06:32 +0100)
committer
Florent Kermarrec
<florent@enjoy-digital.fr>
Fri, 17 Jan 2020 05:32:00 +0000
(06:32 +0100)
litex/soc/cores/uart.py
patch
|
blob
|
history
diff --git
a/litex/soc/cores/uart.py
b/litex/soc/cores/uart.py
index 99261f835bff8f02c8278b45223ac9a193405838..fc4ec27f2fb2af405b96478c15fd1798cc0c7299 100644
(file)
--- 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=
Fals
e)
+ self.submodules.xover = UART(tx_fifo_depth=2, rx_fifo_depth=2, rx_fifo_rx_we=
Tru
e)
self.comb += [
self.source.connect(self.xover.sink),
self.xover.source.connect(self.sink)