Commit 87ad0d56 authored by Grzegorz Daniluk's avatar Grzegorz Daniluk

wr_endpoint/tx_header_processor: don't clear stored oob information too fast

Otherwise we miss tx timestamp if there is a lot of other traffic.
parent 56a6681c
......@@ -292,7 +292,7 @@ begin -- behavioral
p_oob_fsm : process(clk_sys_i)
begin
if rising_edge(clk_sys_i) then
if (rst_n_i = '0' or sof_p1 = '1') then
if (rst_n_i = '0' or state = TXF_ADDR) then
oob_state <= OOB_1;
oob.valid <= '0';
oob.oob_type <= (others => '0');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment