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

Correct g_dsp_data_w = g_subband_raw_dat_w in u_reorder_col_wide.

parent 7f5cd059
No related branches found
No related tags found
1 merge request!289Rename c_sdp_W_fsub_wg into c_sdp_W_local_oscillator. Use...
......@@ -44,8 +44,9 @@ ENTITY node_sdp_beamformer IS
g_sim_sdp : t_sdp_sim := c_sdp_sim;
g_beamset_id : NATURAL := 0;
g_scope_selected_beamlet : NATURAL := 0;
g_subband_raw_dat_w : NATURAL := c_sdp_W_subband;
g_subband_raw_fraction_w : NATURAL := 0
-- Use no default raw width, to force instance to set it
g_subband_raw_dat_w : NATURAL; -- default: c_sdp_W_subband;
g_subband_raw_fraction_w : NATURAL -- default: 0
);
PORT (
dp_clk : IN STD_LOGIC;
......@@ -151,7 +152,7 @@ BEGIN
u_reorder_col_wide : ENTITY reorder_lib.reorder_col_wide
GENERIC MAP (
g_wb_factor => c_sdp_P_pfb, -- g_wb_factor is only used for number of parallel streams
g_dsp_data_w => c_sdp_W_subband,
g_dsp_data_w => g_subband_raw_dat_w,
g_nof_ch_in => c_sdp_N_sub * c_sdp_Q_fft,
g_nof_ch_sel => c_sdp_S_sub_bf * c_sdp_Q_fft,
g_select_file_prefix => c_bf_select_file_prefix,
......
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