Skip to content
Snippets Groups Projects
Commit d7659b95 authored by David Gabriel Monk's avatar David Gabriel Monk
Browse files

Update top/firmware/hdl/LinkAggregatorCore.vhd

parent 306b7464
No related branches found
No related tags found
2 merge requests!30Add event selection counter to link aggregator,!25Add FE Health Monitoring to MProcessor
Pipeline #4569425 passed
......@@ -452,7 +452,7 @@ begin
if reset = '1' then
bx_valid_count(0) <= (others => '0');
else
if bx_valid_variable = '1' then
if bx_valid_variable = '1' and pBx_counter < 8 then
bx_valid_count(0) <= std_logic_vector(unsigned(bx_valid_count(0)) + 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