Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Computing
cbmroot
Commits
ff96893e
Commit
ff96893e
authored
11 months ago
by
Felix Weiglhofer
Committed by
Pierre-Alain Loizeau
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
online: Print equipment id in hex.
parent
86f8b7c1
No related branches found
No related tags found
1 merge request
!1799
online: Print equipment id in hex.
Pipeline
#29208
passed
11 months ago
Stage: package
Stage: verify
Stage: documentation
Stage: deploy
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
algo/unpack/CommonUnpacker.h
+4
-2
4 additions, 2 deletions
algo/unpack/CommonUnpacker.h
with
4 additions
and
2 deletions
algo/unpack/CommonUnpacker.h
+
4
−
2
View file @
ff96893e
...
...
@@ -110,11 +110,13 @@ namespace cbm::algo
if
(
algo
==
fAlgos
.
end
())
{
if
(
!
Contains
(
legalEqIds
,
msDesc
.
eq_id
))
{
L_
(
error
)
<<
"Invalid equip id "
<<
int
{
msDesc
.
eq_id
}
<<
" for subsystem "
<<
ToString
(
subsystem
);
L_
(
error
)
<<
"Invalid equip id "
<<
std
::
hex
<<
int
{
msDesc
.
eq_id
}
<<
std
::
dec
<<
" for subsystem "
<<
ToString
(
subsystem
);
monitorOut
.
errInvalidEqId
++
;
}
else
{
L_
(
error
)
<<
"Invalid system version "
<<
int
{
msDesc
.
sys_ver
}
<<
" for subsystem "
<<
ToString
(
subsystem
);
L_
(
error
)
<<
"Invalid system version "
<<
std
::
hex
<<
int
{
msDesc
.
sys_ver
}
<<
std
::
dec
<<
" for subsystem "
<<
ToString
(
subsystem
);
monitorOut
.
errInvalidSysVer
++
;
}
continue
;
...
...
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