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

Use more suitable default g_sync_offset = 0.

parent 6cbab6d9
No related branches found
No related tags found
No related merge requests found
...@@ -51,9 +51,9 @@ ENTITY dp_stream_stimuli IS ...@@ -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 g_flow_control : t_dp_flow_control_enum := e_active; -- always active, random or pulse flow control
-- initializations -- initializations
g_sync_period : NATURAL := 10; g_sync_period : NATURAL := 10;
g_sync_offset : NATURAL := 7; g_sync_offset : NATURAL := 0;
g_data_init : NATURAL := 0; -- choose some easy to recognize and unique value, data will increment at every sop 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) := X"0000000000000000"; -- X"0877665544332211", bsn will increment at every sop 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_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_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 g_channel_init : NATURAL := 5; -- choose some easy to recognize and unique value
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment