Skip to content
Snippets Groups Projects
Commit 33572b06 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Use g_nof_aligners_max : natural := c_sdp_N_pn_max to provide access for a tb.

parent 529c555a
No related branches found
No related tags found
1 merge request!389Resolve L2SDP-1013
......@@ -37,6 +37,9 @@ use dp_lib.dp_stream_pkg.all;
use work.sdp_pkg.all;
entity sdp_beamformer_remote is
generic (
g_nof_aligners_max : natural := c_sdp_N_pn_max
);
port (
dp_clk : in std_logic;
dp_rst : in std_logic;
......@@ -131,7 +134,7 @@ begin
-- for dp_bsn_align_v2
g_nof_streams => c_dual,
g_bsn_latency_max => 2, -- max 2 blocks latency
g_nof_aligners_max => c_sdp_N_pn_max,
g_nof_aligners_max => g_nof_aligners_max,
g_block_size => c_block_size,
g_data_w => c_data_w,
g_use_mm_output => false,
......
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