Skip to content
Snippets Groups Projects

Clarify g_nof_destinations_max design revision parameter and package constants...

Merged Eric Kooistra requested to merge L2SDP-964 into master
2 files
+ 19
15
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -45,10 +45,11 @@ use work.tb_sdp_pkg.all;
entity tb_sdp_beamformer_output is
generic (
g_nof_repeat : natural := 50;
g_beamset_id : natural := 0;
g_use_transpose : boolean := false;
g_nof_destinations_max : natural := 32;
g_nof_destinations : natural := 32
g_beamset_id : natural := 1;
g_use_transpose : boolean := true;
g_nof_destinations_max : natural := 16;
g_nof_destinations : natural := 7;
g_sim_force_bsn_error : boolean := false -- not verified in this tb
);
end tb_sdp_beamformer_output;
@@ -318,7 +319,7 @@ begin
g_beamset_id => g_beamset_id,
g_use_transpose => g_use_transpose,
g_nof_destinations_max => c_nof_destinations_max,
g_sim_force_bsn_error => false
g_sim_force_bsn_error => g_sim_force_bsn_error
)
port map (
mm_clk => mm_clk,
@@ -548,7 +549,7 @@ begin
end if;
-- Expected beamlet index increments by c_mdi_nof_beamlets_per_block_per_destination per destination index
mdi_exp_beamlet_index <= rx_DI * c_mdi_nof_beamlets_per_block_per_destination;
mdi_exp_beamlet_index <= c_exp_beamlet_index + rx_DI * c_mdi_nof_beamlets_per_block_per_destination;
end if;
if rx_merge_sosi.sop = '1' then
Loading