Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MUonE Processor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
cms-tracker-phase2-backend-systems
Back End Firmware
MUonE Processor
Commits
4fb5e576
Commit
4fb5e576
authored
1 year ago
by
Kirika Uchida
Committed by
Mark Pesaresi
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
added on more pipeline for bcid check
parent
227d6071
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/firmware/hdl/EcalDataAggregator.vhd
+3
-3
3 additions, 3 deletions
common/firmware/hdl/EcalDataAggregator.vhd
with
3 additions
and
3 deletions
common/firmware/hdl/EcalDataAggregator.vhd
+
3
−
3
View file @
4fb5e576
...
...
@@ -26,7 +26,7 @@ architecture rtl of EcalDataAggregator is
signal
ecal_data_reg
:
std_logic_vector
(
28
*
16
-1
downto
0
);
signal
valid_reg
:
std_logic
:
=
'0'
;
type
tBcIdPipe
is
array
(
integer
range
0
to
7
)
of
std_logic_vector
(
11
downto
0
);
type
tBcIdPipe
is
array
(
integer
range
0
to
8
)
of
std_logic_vector
(
11
downto
0
);
signal
bcid_p
:
tBcIdPipe
;
begin
...
...
@@ -57,7 +57,7 @@ begin
if
rising_edge
(
clk_p
)
then
bcid_p
(
0
)
<=
bcid
;
for
i
in
0
to
6
loop
for
i
in
0
to
7
loop
bcid_p
(
i
+
1
)
<=
bcid_p
(
i
);
end
loop
;
...
...
@@ -78,7 +78,7 @@ begin
data_out
(
0
)
.
start
<=
'1'
;
end
if
;
if
unsigned
(
bcid
)
=
unsigned
(
bcid_p
(
7
))
+
1
or
(
unsigned
(
bcid
)
=
0
and
unsigned
(
bcid_p
(
7
))
=
3563
)
then
if
unsigned
(
bcid
_p
(
0
)
)
=
unsigned
(
bcid_p
(
8
))
+
1
or
(
unsigned
(
bcid
_p
(
0
)
)
=
0
and
unsigned
(
bcid_p
(
8
))
=
3563
)
then
timer
:
=
0
;
ecal_data_reg
<=
ecal_data
;
valid_reg
<=
'1'
;
...
...
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