Skip to content

Commit

Permalink
core/LiteEthUDP/IPCore: Use buffered TX/RX CDC as default since impro…
Browse files Browse the repository at this point in the history
…ving timing on low-end FPGAs and not impacting much resources.
  • Loading branch information
enjoy-digital committed Jul 6, 2023
1 parent 70a89ea commit 5c806c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions liteeth/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ def __init__(self, phy, mac_address, ip_address, clk_freq, dw=8,
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.
# -----------
Expand Down Expand Up @@ -79,9 +79,9 @@ def __init__(self, phy, mac_address, ip_address, clk_freq, dw=8,
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.
# -----------
Expand Down

0 comments on commit 5c806c1

Please sign in to comment.