Skip to content
Snippets Groups Projects
Commit 4546229e authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Default use fast sim model.

parent 03be6aa9
Branches
No related tags found
1 merge request!297Resolve L2SDP-837 "B"
Pipeline #40946 passed
...@@ -60,7 +60,7 @@ ENTITY tb_eth_tester IS ...@@ -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_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_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_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 g_corrupted_en : BOOLEAN := FALSE; -- when TRUE cause a corrupted Rx packet, when tech_tse is used
-- t_diag_block_gen_integer = -- t_diag_block_gen_integer =
...@@ -392,8 +392,8 @@ BEGIN ...@@ -392,8 +392,8 @@ BEGIN
print_str(c_tb_str & print_str(c_tb_str &
"Rx total counts monitor(" & NATURAL'IMAGE(I) & ") :" & "Rx total counts monitor(" & NATURAL'IMAGE(I) & ") :" &
" nof_packet = " & NATURAL'IMAGE(rx_total_count_nof_packet_arr(I)) & " nof_packet = " & NATURAL'IMAGE(rx_total_count_nof_packet_arr(I)) &
", nof_valid = " & NATURAL'IMAGE(rx_total_count_nof_valid_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_corrupted = " & NATURAL'IMAGE(rx_total_count_nof_corrupted_arr(I)));
-- Verify, only log when wrong -- Verify, only log when wrong
IF g_corrupted_en = FALSE THEN IF g_corrupted_en = FALSE THEN
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment