Skip to content
Snippets Groups Projects
Commit 5ae481e7 authored by Pieter Donker's avatar Pieter Donker
Browse files

L2SDP-207, backup

parent 02548eb7
Branches
No related tags found
2 merge requests!100Removed text for XSub that is now written in Confluence Subband correlator...,!79Resolve L2SDP-207
...@@ -55,8 +55,9 @@ ENTITY dp_block_from_mm_dc IS ...@@ -55,8 +55,9 @@ ENTITY dp_block_from_mm_dc IS
END dp_block_from_mm_dc; END dp_block_from_mm_dc;
ARCHITECTURE rtl OF dp_block_from_mm_dc IS ARCHITECTURE rtl OF dp_block_from_mm_dc IS
CONSTANT c_fifo_size : NATURAL := 1024; -- 512 * 2 = 1024 words. CONSTANT c_packet_size : NATURAL := 1024; -- 512 * 2 = 1024 words.
CONSTANT c_start_addr_w : NATURAL := 30; CONSTANT c_fifo_size : NATURAL := c_packet_size * 2;
CONSTANT c_start_addr_w : NATURAL := 29;
SIGNAL fifo_sosi : t_dp_sosi := c_dp_sosi_rst; SIGNAL fifo_sosi : t_dp_sosi := c_dp_sosi_rst;
SIGNAL fifo_siso : t_dp_siso; SIGNAL fifo_siso : t_dp_siso;
SIGNAL mm_start_pulse : STD_LOGIC := '0'; SIGNAL mm_start_pulse : STD_LOGIC := '0';
...@@ -95,6 +96,7 @@ BEGIN ...@@ -95,6 +96,7 @@ BEGIN
GENERIC MAP ( GENERIC MAP (
g_use_dual_clock => TRUE, g_use_dual_clock => TRUE,
g_data_w => c_word_w, g_data_w => c_word_w,
g_fifo_fill => c_packet_size,
g_fifo_size => c_fifo_size g_fifo_size => c_fifo_size
) )
PORT MAP ( PORT MAP (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment