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
7a6e3130
Commit
7a6e3130
authored
8 years ago
by
Pepping
Browse files
Options
Downloads
Patches
Plain Diff
Added g_unb1_ctrl_board_version generic and added it to info vector.
parent
b9a89028
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
boards/uniboard1/libraries/unb1_board/src/vhdl/unb1_board_system_info.vhd
+5
-3
5 additions, 3 deletions
.../libraries/unb1_board/src/vhdl/unb1_board_system_info.vhd
with
5 additions
and
3 deletions
boards/uniboard1/libraries/unb1_board/src/vhdl/unb1_board_system_info.vhd
+
5
−
3
View file @
7a6e3130
...
@@ -31,9 +31,10 @@ USE work.unb1_board_pkg.ALL;
...
@@ -31,9 +31,10 @@ USE work.unb1_board_pkg.ALL;
ENTITY
unb1_board_system_info
IS
ENTITY
unb1_board_system_info
IS
GENERIC
(
GENERIC
(
g_sim
:
BOOLEAN
:
=
FALSE
;
g_sim
:
BOOLEAN
:
=
FALSE
;
g_fw_version
:
t_unb1_board_fw_version
:
=
c_unb1_board_fw_version
;
-- firmware version x.y (4b.4b)
g_fw_version
:
t_unb1_board_fw_version
:
=
c_unb1_board_fw_version
;
-- firmware version x.y (4b.4b)
g_aux
:
t_c_unb1_board_aux
:
=
c_unb1_board_aux
-- aux contains the hardware version
g_aux
:
t_c_unb1_board_aux
:
=
c_unb1_board_aux
;
-- aux contains the hardware version
g_ctrl_unb1_version
:
NATURAL
:
=
1
);
);
PORT
(
PORT
(
clk
:
IN
STD_LOGIC
;
clk
:
IN
STD_LOGIC
;
...
@@ -86,6 +87,7 @@ BEGIN
...
@@ -86,6 +87,7 @@ BEGIN
p_info
:
PROCESS
(
cs_sim
,
hw_version_reg
,
id_reg
)
p_info
:
PROCESS
(
cs_sim
,
hw_version_reg
,
id_reg
)
BEGIN
BEGIN
nxt_info
<=
(
OTHERS
=>
'0'
);
nxt_info
<=
(
OTHERS
=>
'0'
);
nxt_info
(
27
DOWNTO
24
)
<=
TO_UVEC
(
g_ctrl_unb1_version
,
4
);
nxt_info
(
23
DOWNTO
20
)
<=
TO_UVEC
(
g_fw_version
.
hi
,
4
);
nxt_info
(
23
DOWNTO
20
)
<=
TO_UVEC
(
g_fw_version
.
hi
,
4
);
nxt_info
(
19
DOWNTO
16
)
<=
TO_UVEC
(
g_fw_version
.
lo
,
4
);
nxt_info
(
19
DOWNTO
16
)
<=
TO_UVEC
(
g_fw_version
.
lo
,
4
);
nxt_info
(
10
)
<=
cs_sim
;
nxt_info
(
10
)
<=
cs_sim
;
...
...
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