Skip to content
Snippets Groups Projects
Commit ac9e2628 authored by Frans Schreuder's avatar Frans Schreuder
Browse files

Check for 3 bytes 0x00 and SOP to better detect random data

parent f1a005b0
No related branches found
No related tags found
4 merge requests!329Added L1A driven FULL mode emulator,!327Added register to enable 32B start-of-chunk checking in FULL mode. Fix...,!321FLX-1758,!305Fix for FLX-1758. Workaround tested in simulation
Pipeline #3286657 passed
......@@ -145,7 +145,7 @@ begin
sop_found <= '0';
elsif LinkAligned_240 = '1' then
if FMdin(32) = '1' then
if FMdin(7 downto 0) = Kchar_sop and s_axis_tready = '1' then
if FMdin(31 downto 0) = (x"000000"&Kchar_sop) and s_axis_tready = '1' then
sop_found <= '1';
end if;
end if;
......
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