Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
HDL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RTSD
HDL
Commits
9a5f3b6c
Commit
9a5f3b6c
authored
Jun 12, 2015
by
Daniel van der Schuur
Browse files
Options
Downloads
Patches
Plain Diff
-Fixed off-by-one in BSN output assignment (imaginary part).
parent
61f16974
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/apertif/designs/apertif_unb1_correlator/src/vhdl/apertif_unb1_correlator.vhd
+3
-3
3 additions, 3 deletions
...rtif_unb1_correlator/src/vhdl/apertif_unb1_correlator.vhd
with
3 additions
and
3 deletions
applications/apertif/designs/apertif_unb1_correlator/src/vhdl/apertif_unb1_correlator.vhd
+
3
−
3
View file @
9a5f3b6c
...
...
@@ -131,7 +131,7 @@ END apertif_unb1_correlator;
ARCHITECTURE
str
OF
apertif_unb1_correlator
IS
-- Firmware version x.y
CONSTANT
c_fw_version
:
t_unb1_board_fw_version
:
=
(
0
,
2
);
CONSTANT
c_fw_version
:
t_unb1_board_fw_version
:
=
(
0
,
3
);
-- Enable block generators
CONSTANT
c_use_phy
:
t_c_unb1_board_use_phy
:
=
(
1
,
sel_a_b
(
g_use_bg
,
0
,
1
),
0
,
0
,
0
,
0
,
0
,
1
);
...
...
@@ -574,7 +574,7 @@ BEGIN
FOR
j
IN
0
TO
c_nof_bf_modules
-1
LOOP
interleaved_arr
(
i
*
c_nof_bf_modules
+
j
)
<=
dp_bsn_align_src_out_arr
(
i
);
-- SOSI ctrl
interleaved_arr
(
i
*
c_nof_bf_modules
+
j
)
.
data
<=
(
OTHERS
=>
'0'
);
interleaved_arr
(
i
*
c_nof_bf_modules
+
j
)
.
im
<=
RESIZE_DP_DSP_DATA
(
dp_bsn_align_src_out_arr
(
i
)
.
data
(
(
c_nof_complex
*
j
+
1
)
*
c_compl_dat_w
+
c_compl_dat_w
DOWNTO
c_nof_complex
*
j
*
c_compl_dat_w
+
c_compl_dat_w
));
interleaved_arr
(
i
*
c_nof_bf_modules
+
j
)
.
im
<=
RESIZE_DP_DSP_DATA
(
dp_bsn_align_src_out_arr
(
i
)
.
data
(
(
c_nof_complex
*
j
+
1
)
*
c_compl_dat_w
+
c_compl_dat_w
-1
DOWNTO
c_nof_complex
*
j
*
c_compl_dat_w
+
c_compl_dat_w
));
interleaved_arr
(
i
*
c_nof_bf_modules
+
j
)
.
re
<=
RESIZE_DP_DSP_DATA
(
dp_bsn_align_src_out_arr
(
i
)
.
data
(
(
c_nof_complex
*
j
+
1
)
*
c_compl_dat_w
-1
DOWNTO
c_nof_complex
*
j
*
c_compl_dat_w
));
END
LOOP
;
END
LOOP
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment