Skip to content
GitLab
Explore
Sign in
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RTSD
HDL
Commits
224ca502
Commit
224ca502
authored
2 years ago
by
Eric Kooistra
Browse files
Options
Downloads
Patches
Plain Diff
Map crosslets_info slv to record for easier view in Wave window.
parent
4e484296
No related branches found
Branches containing commit
No related tags found
1 merge request
!241
Use dp_sop instead of mm_done and explained why. This makes the code for...
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/lofar2/libraries/sdp/src/vhdl/sdp_crosslets_subband_select.vhd
+13
-1
13 additions, 1 deletion
...2/libraries/sdp/src/vhdl/sdp_crosslets_subband_select.vhd
with
13 additions
and
1 deletion
applications/lofar2/libraries/sdp/src/vhdl/sdp_crosslets_subband_select.vhd
+
13
−
1
View file @
224ca502
...
@@ -105,6 +105,13 @@ ARCHITECTURE str OF sdp_crosslets_subband_select IS
...
@@ -105,6 +105,13 @@ ARCHITECTURE str OF sdp_crosslets_subband_select IS
SIGNAL
crosslets_info_reg_in
:
STD_LOGIC_VECTOR
(
c_sdp_crosslets_info_reg_w
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
'0'
);
SIGNAL
crosslets_info_reg_in
:
STD_LOGIC_VECTOR
(
c_sdp_crosslets_info_reg_w
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
'0'
);
SIGNAL
active_crosslets_info
:
STD_LOGIC_VECTOR
(
c_sdp_crosslets_info_reg_w
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
'0'
);
SIGNAL
active_crosslets_info
:
STD_LOGIC_VECTOR
(
c_sdp_crosslets_info_reg_w
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
'0'
);
SIGNAL
i_out_crosslets_info
:
STD_LOGIC_VECTOR
(
c_sdp_crosslets_info_reg_w
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
'0'
);
SIGNAL
i_out_crosslets_info
:
STD_LOGIC_VECTOR
(
c_sdp_crosslets_info_reg_w
-1
DOWNTO
0
)
:
=
(
OTHERS
=>
'0'
);
-- Map crosslets_info slv to record for easier view in Wave window
SIGNAL
crosslets_info_rec
:
t_sdp_crosslets_info
;
SIGNAL
crosslets_info_rec_inout
:
t_sdp_crosslets_info
;
SIGNAL
active_crosslets_info_rec
:
t_sdp_crosslets_info
;
SIGNAL
out_crosslets_info_rec
:
t_sdp_crosslets_info
;
BEGIN
BEGIN
---------------------------------------------------------------
---------------------------------------------------------------
...
@@ -303,7 +310,6 @@ BEGIN
...
@@ -303,7 +310,6 @@ BEGIN
output_sosi_arr
(
0
)
=>
row_sosi
output_sosi_arr
(
0
)
=>
row_sosi
);
);
---------------------------------------------------------------
---------------------------------------------------------------
-- Out Crosslet info pipeline
-- Out Crosslet info pipeline
---------------------------------------------------------------
---------------------------------------------------------------
...
@@ -345,4 +351,10 @@ BEGIN
...
@@ -345,4 +351,10 @@ BEGIN
src_out
=>
out_sosi
src_out
=>
out_sosi
);
);
-- Map crosslets_info slv to record for easier view in Wave window
crosslets_info_rec
<=
func_sdp_map_crosslets_info
(
crosslets_info_reg
);
crosslets_info_rec_inout
<=
func_sdp_map_crosslets_info
(
crosslets_info_reg_in
);
active_crosslets_info_rec
<=
func_sdp_map_crosslets_info
(
active_crosslets_info
);
out_crosslets_info_rec
<=
func_sdp_map_crosslets_info
(
i_out_crosslets_info
);
END
str
;
END
str
;
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