Skip to content
Snippets Groups Projects
Commit cce87296 authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

added comments about g_fifo_size

parent 4efd9ffb
No related branches found
No related tags found
1 merge request!155added ring_rx
...@@ -32,6 +32,10 @@ ...@@ -32,6 +32,10 @@
-- after the fifo has been filled sufficiently, a frame is also available when -- after the fifo has been filled sufficiently, a frame is also available when
-- the in_eop has been received earlier than the specified g_fifo_fill. For -- the in_eop has been received earlier than the specified g_fifo_fill. For
-- more details, please consult the description of dp_fill_fifo_core. -- more details, please consult the description of dp_fill_fifo_core.
-- Remark:
-- . dp_fifo_fill_eop needs 1 clock cycle gap between eop and sop to process
-- the block. Therefore it cannot handle contious streams without gaps. It
-- can handle bursts by increasing g_fifo_size.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
LIBRARY IEEE, common_lib, technology_lib; LIBRARY IEEE, common_lib, technology_lib;
......
...@@ -25,7 +25,11 @@ ...@@ -25,7 +25,11 @@
-- Purpose: Handle TX side of ring design. -- Purpose: Handle TX side of ring design.
-- Description: See https://support.astron.nl/confluence/x/jyu7Ag -- Description: See https://support.astron.nl/confluence/x/jyu7Ag
-- Remark: -- Remark:
-- . -- . Note that the dp_fifo_fill_eop in dp_block_validate_err cannot handle
-- continues stream of blocks without a gap between blocks the dp_fifo_fill_eop
-- needs 1 cycle to process a block. Streaming without gaps may cause the fifo
-- to overflow. Bursts of blocks can be handled by increasing g_fifo_size.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
LIBRARY IEEE, common_lib, mm_lib, dp_lib; LIBRARY IEEE, common_lib, mm_lib, dp_lib;
......
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