Skip to content
Snippets Groups Projects
Commit 03b57679 authored by Pepping's avatar Pepping
Browse files

- Enabled g_use_ctrl on the output of the deinterleavers

- Removed commented code 
parent 82dc90d2
Branches
No related tags found
No related merge requests found
...@@ -554,7 +554,7 @@ BEGIN ...@@ -554,7 +554,7 @@ BEGIN
g_nof_out => 2, g_nof_out => 2,
g_block_size => 1, g_block_size => 1,
g_dat_w => g_usr_data_w, -- 16b = 2x8b complex g_dat_w => g_usr_data_w, -- 16b = 2x8b complex
g_use_ctrl => FALSE, g_use_ctrl => TRUE,
g_align_out => TRUE, g_align_out => TRUE,
g_use_complex => c_use_complex g_use_complex => c_use_complex
) )
...@@ -587,7 +587,6 @@ BEGIN ...@@ -587,7 +587,6 @@ BEGIN
FOR I IN 0 TO g_nof_output_streams-1 LOOP FOR I IN 0 TO g_nof_output_streams-1 LOOP
data_src_out_arr(I) <= deinterleaved_arr(I); data_src_out_arr(I) <= deinterleaved_arr(I);
FOR J IN 0 TO c_nof_10GbE_streams-1 LOOP FOR J IN 0 TO c_nof_10GbE_streams-1 LOOP
-- reinterleave_in_arr(I*c_nof_10GbE_streams + J) <= deinterleaved_arr(J*2*c_nof_bf_modules + I);
data_src_out_arr(I).data((J+1)*g_usr_data_w-1 DOWNTO J*g_usr_data_w) <= deinterleaved_arr(J*2*c_nof_bf_modules + I).im(c_compl_dat_w-1 DOWNTO 0) & data_src_out_arr(I).data((J+1)*g_usr_data_w-1 DOWNTO J*g_usr_data_w) <= deinterleaved_arr(J*2*c_nof_bf_modules + I).im(c_compl_dat_w-1 DOWNTO 0) &
deinterleaved_arr(J*2*c_nof_bf_modules + I).re(c_compl_dat_w-1 DOWNTO 0); deinterleaved_arr(J*2*c_nof_bf_modules + I).re(c_compl_dat_w-1 DOWNTO 0);
END LOOP; END LOOP;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment