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
c47a70b4
Commit
c47a70b4
authored
1 year ago
by
Reinier van der Walle
Browse files
Options
Downloads
Patches
Plain Diff
corrected fifo size
parent
8e836f6c
No related branches found
No related tags found
1 merge request
!332
Resolve HPR-122
Pipeline
#50600
passed
1 year ago
Stage: linting
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/io/eth/src/vhdl/eth_tester_rx.vhd
+1
-1
1 addition, 1 deletion
libraries/io/eth/src/vhdl/eth_tester_rx.vhd
with
1 addition
and
1 deletion
libraries/io/eth/src/vhdl/eth_tester_rx.vhd
+
1
−
1
View file @
c47a70b4
...
@@ -80,7 +80,7 @@ ARCHITECTURE str OF eth_tester_rx IS
...
@@ -80,7 +80,7 @@ ARCHITECTURE str OF eth_tester_rx IS
-- Rx FIFO size can be much less than rx_block_sz_max, because st_clk >
-- Rx FIFO size can be much less than rx_block_sz_max, because st_clk >
-- eth_clk rate, but with st level tx-rx loopback the Rx FIFO does need
-- eth_clk rate, but with st level tx-rx loopback the Rx FIFO does need
-- rx_block_sz_max FIFO size.
-- rx_block_sz_max FIFO size.
CONSTANT
rx_block_sz_max
:
NATURAL
:
=
c_eth_tester_rx_block_len_max
/
c_in_data_w
;
CONSTANT
rx_block_sz_max
:
NATURAL
:
=
c_eth_tester_rx_block_len_max
/
g_nof_octet_input
;
CONSTANT
c_fifo_size
:
NATURAL
:
=
true_log_pow2
(
rx_block_sz_max
);
CONSTANT
c_fifo_size
:
NATURAL
:
=
true_log_pow2
(
rx_block_sz_max
);
SIGNAL
rx_udp_data
:
STD_LOGIC_VECTOR
(
c_word_w
-1
DOWNTO
0
);
SIGNAL
rx_udp_data
:
STD_LOGIC_VECTOR
(
c_word_w
-1
DOWNTO
0
);
...
...
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