Commit 132912fb authored by Maciej Lipinski's avatar Maciej Lipinski

[swcore/in_blk] bugfix: was missing SOF when unstuck in the same cycle

parent dd525f1f
......@@ -1086,7 +1086,10 @@ begin --archS_PCKSTART_SET_AND_REQ
when S_INPUT_STUCK =>
--===========================================================================================
if(tp_stuck = '0') then -- un-stuck the input :)
if(tp_stuck = '0' and -- un-stuck the input :)
in_pck_sof = '0') then -- could be solved better (more optimal: remember sof), but this will work
-- it happened that new frame came when transfer was acked (stuck signal UP..>)
-- in such case we were missing SOF and the frame)
s_rcv_pck <= S_IDLE;
......
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