From c6882d25df300e1fbf9b544df52eaf45ce25ed07 Mon Sep 17 00:00:00 2001 From: Erik Kooistra <kooistra@astron.nl> Date: Thu, 26 Apr 2018 11:09:11 +0000 Subject: [PATCH] Use more suitable default g_sync_offset = 0. --- libraries/base/dp/tb/vhdl/dp_stream_stimuli.vhd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/base/dp/tb/vhdl/dp_stream_stimuli.vhd b/libraries/base/dp/tb/vhdl/dp_stream_stimuli.vhd index 89d24aaa34..859e272b34 100644 --- a/libraries/base/dp/tb/vhdl/dp_stream_stimuli.vhd +++ b/libraries/base/dp/tb/vhdl/dp_stream_stimuli.vhd @@ -51,9 +51,9 @@ ENTITY dp_stream_stimuli IS g_flow_control : t_dp_flow_control_enum := e_active; -- always active, random or pulse flow control -- initializations g_sync_period : NATURAL := 10; - g_sync_offset : NATURAL := 7; - g_data_init : NATURAL := 0; -- choose some easy to recognize and unique value, data will increment at every sop - g_bsn_init : STD_LOGIC_VECTOR(c_dp_stream_bsn_w-1 DOWNTO 0) := X"0000000000000000"; -- X"0877665544332211", bsn will increment at every sop + g_sync_offset : NATURAL := 0; + g_data_init : NATURAL := 0; -- choose some easy to recognize and unique value, data will increment at every valid + g_bsn_init : STD_LOGIC_VECTOR(c_dp_stream_bsn_w-1 DOWNTO 0) := TO_DP_BSN(0); -- X"0877665544332211", bsn will increment at every sop g_err_init : NATURAL := 247; -- choose some easy to recognize and unique value g_err_incr : NATURAL := 1; -- when 0 keep fixed at init value, when 1 increment at every sop g_channel_init : NATURAL := 5; -- choose some easy to recognize and unique value -- GitLab