mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
soc/add_etherbone: Expose IP Broadcast capability.
This commit is contained in:
parent
e4c81e8fdf
commit
c4e3962def
1 changed files with 2 additions and 0 deletions
|
@ -1638,6 +1638,7 @@ class LiteXSoC(SoC):
|
||||||
ip_address = "192.168.1.50",
|
ip_address = "192.168.1.50",
|
||||||
udp_port = 1234,
|
udp_port = 1234,
|
||||||
buffer_depth = 16,
|
buffer_depth = 16,
|
||||||
|
with_ip_broadcast = True,
|
||||||
with_timing_constraints = True):
|
with_timing_constraints = True):
|
||||||
# Imports
|
# Imports
|
||||||
from liteeth.core import LiteEthUDPIPCore
|
from liteeth.core import LiteEthUDPIPCore
|
||||||
|
@ -1654,6 +1655,7 @@ class LiteXSoC(SoC):
|
||||||
ip_address = ip_address,
|
ip_address = ip_address,
|
||||||
clk_freq = self.clk_freq,
|
clk_freq = self.clk_freq,
|
||||||
dw = data_width,
|
dw = data_width,
|
||||||
|
with_ip_broadcast = with_ip_broadcast,
|
||||||
with_sys_datapath = with_sys_datapath,
|
with_sys_datapath = with_sys_datapath,
|
||||||
)
|
)
|
||||||
if not with_sys_datapath:
|
if not with_sys_datapath:
|
||||||
|
|
Loading…
Reference in a new issue