core/LiteEthUDP/IPCore: Use buffered TX/RX CDC as default since improving timing on low-end FPGAs and not impacting much resources.
This commit is contained in:
parent
70a89eafaa
commit
5c806c150e
|
@ -20,9 +20,9 @@ class LiteEthIPCore(Module, AutoCSR):
|
|||
with_ip_broadcast = True,
|
||||
with_sys_datapath = False,
|
||||
tx_cdc_depth = 32,
|
||||
tx_cdc_buffered = False,
|
||||
tx_cdc_buffered = True,
|
||||
rx_cdc_depth = 32,
|
||||
rx_cdc_buffered = False,
|
||||
rx_cdc_buffered = True,
|
||||
):
|
||||
# Parameters.
|
||||
# -----------
|
||||
|
@ -79,9 +79,9 @@ class LiteEthUDPIPCore(LiteEthIPCore):
|
|||
with_ip_broadcast = True,
|
||||
with_sys_datapath = False,
|
||||
tx_cdc_depth = 32,
|
||||
tx_cdc_buffered = False,
|
||||
tx_cdc_buffered = True,
|
||||
rx_cdc_depth = 32,
|
||||
rx_cdc_buffered = False,
|
||||
rx_cdc_buffered = True,
|
||||
):
|
||||
# Parameters.
|
||||
# -----------
|
||||
|
|
Loading…
Reference in New Issue