From 7e21a76b9fc8012df62c2940afd59526d3c7b538 Mon Sep 17 00:00:00 2001
From: Eric Kooistra <kooistra@astron.nl>
Date: Fri, 26 Nov 2021 10:52:05 +0100
Subject: [PATCH] Added eth_src_out to support further external analysis.

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

diff --git a/libraries/io/eth/src/vhdl/eth_statistics.vhd b/libraries/io/eth/src/vhdl/eth_statistics.vhd
index 0fb1ce7131..9f3bd8c9ba 100644
--- a/libraries/io/eth/src/vhdl/eth_statistics.vhd
+++ b/libraries/io/eth/src/vhdl/eth_statistics.vhd
@@ -60,6 +60,7 @@ ENTITY eth_statistics IS
   );
   PORT (
     eth_serial_in : IN  STD_LOGIC;
+    eth_src_out   : OUT t_dp_sosi;  -- Output received sosi
     tb_end        : OUT STD_LOGIC -- To be used to stop test-bench generated clocks
   );
 END eth_statistics;
@@ -148,4 +149,7 @@ BEGIN
     tb_end => i_tb_end
   );
 
+  -- Output the received decoded data, to support further external analysis
+  eth_src_out <= tech_tse_rx_src_out;
+
 END str;
-- 
GitLab