Skip to content
Snippets Groups Projects
Commit 6f421c3b authored by Mark Pesaresi's avatar Mark Pesaresi
Browse files

Update emp_payload.vhd

parent 47e25412
No related branches found
No related tags found
1 merge request!50Draft: Resolve "LinkAggregator truncates at high data rates"
Pipeline #8240838 canceled
......@@ -294,13 +294,13 @@ begin
-- L1 Data Aggregator
--==============================--
pBufferL1Data : process(clk_p)
begin
if rising_edge(clk_p) then
daq_data_buffered <= daq_data;
daq_empty_buffered <= daq_empty;
end if;
end process pBufferL1Data;
-- pBufferL1Data : process(clk_p)
-- begin
-- if rising_edge(clk_p) then
-- daq_data_buffered <= daq_data;
-- daq_empty_buffered <= daq_empty;
-- end if;
-- end process pBufferL1Data;
--==============================--
L1DataAggregator : entity work.L1DataAggregator
......@@ -311,8 +311,8 @@ begin
port map (
--- Input Ports ---
clk_p => clk_p,
daq_in => daq_data_buffered(15 downto 0),
empty => daq_empty_buffered(15 downto 0),
daq_in => daq_data(15 downto 0),
empty => daq_empty(15 downto 0),
--- Output Ports ---
read => daq_read(15 downto 0),
--- IPBus Ports ---
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment