Skip to content
Snippets Groups Projects
Commit 3e5eeebe authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

node_index -> rn_index

parent f78f3cd9
No related branches found
No related tags found
1 merge request!223fixed bug in dp_bsn_align_v2
Pipeline #26710 passed
This commit is part of merge request !223. Comments created here will be created in the context of that merge request.
...@@ -129,11 +129,11 @@ ARCHITECTURE str OF node_sdp_beamformer IS ...@@ -129,11 +129,11 @@ ARCHITECTURE str OF node_sdp_beamformer IS
SIGNAL scope_bf_out_sosi_arr : t_dp_sosi_integer_arr(c_sdp_N_pol_bf-1 DOWNTO 0); SIGNAL scope_bf_out_sosi_arr : t_dp_sosi_integer_arr(c_sdp_N_pol_bf-1 DOWNTO 0);
SIGNAL beamlet_scale : STD_LOGIC_VECTOR(c_sdp_W_beamlet_scale-1 DOWNTO 0); SIGNAL beamlet_scale : STD_LOGIC_VECTOR(c_sdp_W_beamlet_scale-1 DOWNTO 0);
SIGNAL node_index : NATURAL RANGE 0 TO c_sdp_N_pn_max-1 := 0; SIGNAL rn_index : NATURAL RANGE 0 TO c_sdp_N_pn_max-1 := 0;
BEGIN BEGIN
node_index <= TO_UINT(gn_id); rn_index <= TO_UINT(gn_id);
--------------------------------------------------------------- ---------------------------------------------------------------
-- Beamlet Subband Select -- Beamlet Subband Select
...@@ -190,7 +190,7 @@ BEGIN ...@@ -190,7 +190,7 @@ BEGIN
mm_rst => mm_rst, mm_rst => mm_rst,
mm_clk => mm_clk, mm_clk => mm_clk,
node_index => node_index, rn_index => rn_index,
local_bf_sosi => local_bf_sosi, local_bf_sosi => local_bf_sosi,
from_ri_sosi => from_ri_sosi, from_ri_sosi => from_ri_sosi,
to_ri_sosi => to_ri_sosi, to_ri_sosi => to_ri_sosi,
......
...@@ -41,7 +41,7 @@ ENTITY sdp_beamformer_remote IS ...@@ -41,7 +41,7 @@ ENTITY sdp_beamformer_remote IS
dp_clk : IN STD_LOGIC; dp_clk : IN STD_LOGIC;
dp_rst : IN STD_LOGIC; dp_rst : IN STD_LOGIC;
node_index : IN NATURAL RANGE 0 TO c_sdp_N_pn_max-1 := 0; rn_index : IN NATURAL RANGE 0 TO c_sdp_N_pn_max-1 := 0;
local_bf_sosi : IN t_dp_sosi; local_bf_sosi : IN t_dp_sosi;
from_ri_sosi : IN t_dp_sosi; from_ri_sosi : IN t_dp_sosi;
...@@ -164,7 +164,7 @@ BEGIN ...@@ -164,7 +164,7 @@ BEGIN
dp_rst => dp_rst, dp_rst => dp_rst,
dp_clk => dp_clk, dp_clk => dp_clk,
node_index => node_index, node_index => rn_index,
-- Streaming input -- Streaming input
in_sosi_arr => dispatch_sosi_arr, in_sosi_arr => dispatch_sosi_arr,
......
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