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
c3cca3e9
"SubSystems/git@git.astron.nl:ro/lofar.git" did not exist on "4c6f03d998913e65b9291c230d875300b000182d"
Commit
c3cca3e9
authored
9 years ago
by
Zanting
Browse files
Options
Downloads
Patches
Plain Diff
Exposed g_use_steps and g_nof_steps to the outside. Needed for testing unb1_reorder.
parent
d20a2ab0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libraries/base/diag/src/vhdl/mms_diag_data_buffer.vhd
+4
-0
4 additions, 0 deletions
libraries/base/diag/src/vhdl/mms_diag_data_buffer.vhd
libraries/base/diag/src/vhdl/mms_diag_tx_seq.vhd
+1
-1
1 addition, 1 deletion
libraries/base/diag/src/vhdl/mms_diag_tx_seq.vhd
with
5 additions
and
1 deletion
libraries/base/diag/src/vhdl/mms_diag_data_buffer.vhd
+
4
−
0
View file @
c3cca3e9
...
@@ -78,6 +78,8 @@ ENTITY mms_diag_data_buffer IS
...
@@ -78,6 +78,8 @@ ENTITY mms_diag_data_buffer IS
g_buf_nof_data
:
NATURAL
:
=
1024
;
-- nof words per data buffer
g_buf_nof_data
:
NATURAL
:
=
1024
;
-- nof words per data buffer
g_buf_use_sync
:
BOOLEAN
:
=
FALSE
;
-- when TRUE start filling the buffer at the in_sync, else after the last word was read
g_buf_use_sync
:
BOOLEAN
:
=
FALSE
;
-- when TRUE start filling the buffer at the in_sync, else after the last word was read
-- Rx_seq
-- Rx_seq
g_use_steps
:
BOOLEAN
:
=
FALSE
;
g_nof_steps
:
NATURAL
:
=
c_diag_seq_rx_reg_nof_steps
;
g_seq_dat_w
:
NATURAL
:
=
32
-- >= 1, test sequence data width. Choose g_seq_dat_w <= g_data_w
g_seq_dat_w
:
NATURAL
:
=
32
-- >= 1, test sequence data width. Choose g_seq_dat_w <= g_data_w
);
);
PORT
(
PORT
(
...
@@ -195,6 +197,8 @@ BEGIN
...
@@ -195,6 +197,8 @@ BEGIN
u_mms_diag_rx_seq
:
ENTITY
work
.
mms_diag_rx_seq
u_mms_diag_rx_seq
:
ENTITY
work
.
mms_diag_rx_seq
GENERIC
MAP
(
GENERIC
MAP
(
g_nof_streams
=>
g_nof_streams
,
g_nof_streams
=>
g_nof_streams
,
g_use_steps
=>
g_use_steps
,
g_nof_steps
=>
g_nof_steps
,
g_seq_dat_w
=>
g_seq_dat_w
,
-- >= 1, test sequence data width
g_seq_dat_w
=>
g_seq_dat_w
,
-- >= 1, test sequence data width
g_data_w
=>
g_data_w
-- >= g_seq_dat_w, user data width
g_data_w
=>
g_data_w
-- >= g_seq_dat_w, user data width
)
)
...
...
This diff is collapsed.
Click to expand it.
libraries/base/diag/src/vhdl/mms_diag_tx_seq.vhd
+
1
−
1
View file @
c3cca3e9
...
@@ -351,7 +351,7 @@ BEGIN
...
@@ -351,7 +351,7 @@ BEGIN
p_tx_seq_src_in_arr
:
PROCESS
(
tx_seq_src_out_arr
)
p_tx_seq_src_in_arr
:
PROCESS
(
tx_seq_src_out_arr
)
BEGIN
BEGIN
FOR
I
IN
0
TO
g_nof_streams
-1
LOOP
FOR
I
IN
0
TO
g_nof_streams
-1
LOOP
tx_seq_src_in_arr
(
I
)
.
ready
<=
tx_seq_src_out
_arr
(
I
)
.
valid
;
tx_seq_src_in_arr
(
I
)
.
ready
<=
usr_snk_in
_arr
(
I
)
.
valid
;
END
LOOP
;
END
LOOP
;
END
PROCESS
;
END
PROCESS
;
...
...
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