mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
integration/soc/add_uart: pass fifo_depth to UARTCrossover.
This commit is contained in:
parent
1976fd4b90
commit
48dc574703
1 changed files with 3 additions and 1 deletions
|
@ -1096,7 +1096,9 @@ class LiteXSoC(SoC):
|
|||
|
||||
# Crossover
|
||||
elif name in ["crossover"]:
|
||||
self.submodules.uart = uart.UARTCrossover()
|
||||
self.submodules.uart = uart.UARTCrossover(
|
||||
tx_fifo_depth = fifo_depth,
|
||||
rx_fifo_depth = fifo_depth)
|
||||
|
||||
# Model/Sim
|
||||
elif name in ["model", "sim"]:
|
||||
|
|
Loading…
Reference in a new issue