soc/add_etherbone: Expose IP Broadcast capability.

This commit is contained in:
Florent Kermarrec 2022-06-27 15:46:57 +02:00
parent e4c81e8fdf
commit c4e3962def

View file

@ -1638,6 +1638,7 @@ class LiteXSoC(SoC):
ip_address = "192.168.1.50",
udp_port = 1234,
buffer_depth = 16,
with_ip_broadcast = True,
with_timing_constraints = True):
# Imports
from liteeth.core import LiteEthUDPIPCore
@ -1654,6 +1655,7 @@ class LiteXSoC(SoC):
ip_address = ip_address,
clk_freq = self.clk_freq,
dw = data_width,
with_ip_broadcast = with_ip_broadcast,
with_sys_datapath = with_sys_datapath,
)
if not with_sys_datapath: