Skip to content
Snippets Groups Projects
Commit cc211bd2 authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

removed latency difference between cases when time_offset = 0 and when

time_offset /= 0
parent 0027f9d7
No related branches found
No related tags found
1 merge request!271Resolve L2SDP-798
Pipeline #34367 passed
...@@ -165,12 +165,8 @@ BEGIN ...@@ -165,12 +165,8 @@ BEGIN
IF dp_on_pps = '1' THEN IF dp_on_pps = '1' THEN
nxt_sync <= '1'; -- ensure issue sync at first sync interval for start at PPS. nxt_sync <= '1'; -- ensure issue sync at first sync interval for start at PPS.
IF pps = '1' THEN IF pps = '1' THEN
IF UNSIGNED(bsn_time_offset) = 0 THEN nxt_bsn_time_offset_cnt <= (OTHERS=>'0');
nxt_state <= s_dp_on_sop; nxt_state <= s_bsn_time_offset;
ELSE
nxt_bsn_time_offset_cnt <= (OTHERS=>'0');
nxt_state <= s_bsn_time_offset;
END IF;
END IF; END IF;
ELSE ELSE
nxt_state <= s_dp_on_sop; nxt_state <= s_dp_on_sop;
......
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