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

Accept raw or quantized input subbands.

parent ff779c76
No related branches found
No related tags found
1 merge request!289Rename c_sdp_W_fsub_wg into c_sdp_W_local_oscillator. Use...
...@@ -43,7 +43,9 @@ ENTITY node_sdp_beamformer IS ...@@ -43,7 +43,9 @@ ENTITY node_sdp_beamformer IS
g_sim : BOOLEAN := FALSE; g_sim : BOOLEAN := FALSE;
g_sim_sdp : t_sdp_sim := c_sdp_sim; g_sim_sdp : t_sdp_sim := c_sdp_sim;
g_beamset_id : NATURAL := 0; g_beamset_id : NATURAL := 0;
g_scope_selected_beamlet : 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
); );
PORT ( PORT (
dp_clk : IN STD_LOGIC; dp_clk : IN STD_LOGIC;
...@@ -173,7 +175,9 @@ BEGIN ...@@ -173,7 +175,9 @@ BEGIN
--------------------------------------------------------------- ---------------------------------------------------------------
u_sdp_beamformer_local : ENTITY work.sdp_beamformer_local u_sdp_beamformer_local : ENTITY work.sdp_beamformer_local
GENERIC MAP ( GENERIC MAP (
g_bf_weights_file_name => c_bf_weights_file_name g_bf_weights_file_name => c_bf_weights_file_name,
g_raw_dat_w => g_subband_raw_dat_w,
g_raw_fraction_w => g_subband_raw_fraction_w
) )
PORT MAP ( PORT MAP (
dp_rst => dp_rst, dp_rst => dp_rst,
......
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