From 4546229e54dd0fa01a6b2e67271a26c67770583d Mon Sep 17 00:00:00 2001
From: Eric Kooistra <kooistra@astron.nl>
Date: Thu, 8 Dec 2022 14:59:30 +0100
Subject: [PATCH] Default use fast sim model.

---
 libraries/io/eth/tb/vhdl/tb_eth_tester.vhd | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libraries/io/eth/tb/vhdl/tb_eth_tester.vhd b/libraries/io/eth/tb/vhdl/tb_eth_tester.vhd
index 8cd8710c7d..946c94c3b7 100644
--- a/libraries/io/eth/tb/vhdl/tb_eth_tester.vhd
+++ b/libraries/io/eth/tb/vhdl/tb_eth_tester.vhd
@@ -60,7 +60,7 @@ ENTITY tb_eth_tester IS
     g_nof_sync         : NATURAL := 2;  -- number of BG sync intervals to set c_run_time
     g_nof_streams      : NATURAL := 1;  -- <= c_eth_nof_udp_ports = 4 when g_loopback_tx_rx = 1
     g_loopback_eth     : BOOLEAN := TRUE;  -- FALSE = sosi loopback, TRUE = eth loopback (using sim_tse or tech_tse)
-    g_eth_sim_level    : NATURAL := 0;  -- when g_loopback_eth = TRUE, then 0 = use tech_tse IP; 1 = use fast sim_tse model
+    g_eth_sim_level    : NATURAL := 1;  -- when g_loopback_eth = TRUE, then 0 = use tech_tse IP; 1 = use fast sim_tse model
     g_corrupted_en     : BOOLEAN := FALSE;  -- when TRUE cause a corrupted Rx packet, when tech_tse is used
 
     -- t_diag_block_gen_integer =
@@ -392,8 +392,8 @@ BEGIN
       print_str(c_tb_str &
           "Rx total counts monitor(" & NATURAL'IMAGE(I) & ") :" &
           " nof_packet = " & NATURAL'IMAGE(rx_total_count_nof_packet_arr(I)) &
-          ", nof_valid  = " & NATURAL'IMAGE(rx_total_count_nof_valid_arr(I)) &
-          ", nof_corrupted  = " & NATURAL'IMAGE(rx_total_count_nof_corrupted_arr(I)));
+          ", nof_valid = " & NATURAL'IMAGE(rx_total_count_nof_valid_arr(I)) &
+          ", nof_corrupted = " & NATURAL'IMAGE(rx_total_count_nof_corrupted_arr(I)));
 
       -- Verify, only log when wrong
       IF g_corrupted_en = FALSE THEN
-- 
GitLab