From 36de54a6e280f9cea1da8ffbb8e15a8aafc0aba9 Mon Sep 17 00:00:00 2001 From: Stepan Friedl Date: Wed, 6 Nov 2024 16:12:00 +0100 Subject: [PATCH] fix(network_mod): width of demo/testing ports --- core/comp/eth/network_mod/network_mod_ent.vhd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/comp/eth/network_mod/network_mod_ent.vhd b/core/comp/eth/network_mod/network_mod_ent.vhd index 60e251570..02820c149 100644 --- a/core/comp/eth/network_mod/network_mod_ent.vhd +++ b/core/comp/eth/network_mod/network_mod_ent.vhd @@ -152,9 +152,9 @@ port( -- This interface is to transmit Channel IDs and Timestamps of packets -- from the APP Core to the demo/testing logic in the Network Mod Core (E-Tile). - ETH_TX_MVB_CHANNEL : in std_logic_vector(ETH_PORTS*REGIONS*max(1,log2(TX_DMA_CHANNELS))-1 downto 0); - ETH_TX_MVB_TIMESTAMP : in std_logic_vector(ETH_PORTS*REGIONS*48-1 downto 0); - ETH_TX_MVB_VLD : in std_logic_vector(ETH_PORTS*REGIONS-1 downto 0); + ETH_TX_MVB_CHANNEL : in std_logic_vector(ETH_STREAMS*REGIONS*max(1,log2(TX_DMA_CHANNELS))-1 downto 0); + ETH_TX_MVB_TIMESTAMP : in std_logic_vector(ETH_STREAMS*REGIONS*48-1 downto 0); + ETH_TX_MVB_VLD : in std_logic_vector(ETH_STREAMS*REGIONS-1 downto 0); -- ===================================================================== -- TX interface (Packets received from Ethernet)