From fa0325e5f7f89e455b5126884bf651321871927c Mon Sep 17 00:00:00 2001
From: Eric Kooistra <kooistra@astron.nl>
Date: Fri, 28 Oct 2022 05:09:40 +0200
Subject: [PATCH] Monitor tx_fifo_rd_emp as OUT port.

---
 libraries/io/eth/src/vhdl/eth_tester.vhd | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libraries/io/eth/src/vhdl/eth_tester.vhd b/libraries/io/eth/src/vhdl/eth_tester.vhd
index ce3a648c16..f765e75a03 100644
--- a/libraries/io/eth/src/vhdl/eth_tester.vhd
+++ b/libraries/io/eth/src/vhdl/eth_tester.vhd
@@ -53,6 +53,8 @@ ENTITY eth_tester IS
     ip_src_addr        : IN  STD_LOGIC_VECTOR(c_network_ip_addr_w-1 DOWNTO 0);
     udp_src_port       : IN  STD_LOGIC_VECTOR(c_network_udp_port_w-1 DOWNTO 0);
 
+    tx_fifo_rd_emp_arr : OUT STD_LOGIC_VECTOR(g_nof_streams-1 DOWNTO 0);
+
     tx_udp_sosi_arr    : OUT t_dp_sosi_arr(g_nof_streams-1 DOWNTO 0);
     tx_udp_siso_arr    : IN  t_dp_siso_arr(g_nof_streams-1 DOWNTO 0) := (OTHERS=> c_dp_siso_rdy);
 
@@ -119,6 +121,8 @@ BEGIN
       ip_src_addr        => ip_src_addr,
       udp_src_port       => udp_src_port,
 
+      tx_fifo_rd_emp     => tx_fifo_rd_emp_arr(I),
+
       tx_udp_sosi        => tx_udp_sosi_arr(I),
       tx_udp_siso        => tx_udp_siso_arr(I),
 
-- 
GitLab