Skip to content
Snippets Groups Projects
Commit a538abcb authored by Jan David Mol's avatar Jan David Mol
Browse files

L2SS-370: Configure the XST offload enable only when the header is configured correctly.

parent 59170284
No related branches found
No related tags found
1 merge request!115L2SS-370: Set some default properties first
...@@ -75,6 +75,23 @@ class XST(Statistics): ...@@ -75,6 +75,23 @@ class XST(Statistics):
default_value=[[0,102,0,0,0,0,0,0]] * 16 default_value=[[0,102,0,0,0,0,0,0]] * 16
) )
FPGA_xst_offload_enable_RW_default = device_property(
dtype='DevVarBooleanArray',
mandatory=False,
default_value=[True] * 16
)
first_default_settings = [
'FPGA_xst_offload_hdr_eth_destination_mac_RW',
'FPGA_xst_offload_hdr_ip_destination_address_RW',
'FPGA_xst_offload_hdr_udp_destination_port_RW',
'FPGA_xst_subband_select_RW',
# enable only after the offloading is configured correctly
'FPGA_xst_offload_enable_RW'
]
# ---------- # ----------
# Attributes # Attributes
# ---------- # ----------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment