Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cmsos
worksuite
Commits
738cbccc
Commit
738cbccc
authored
Oct 29, 2021
by
Andrea Petrucci
Browse files
references
#275
: add READY state to enable high voltage DCS bit
parent
fd936733
Changes
2
Hide whitespace changes
Inline
Side-by-side
evb/include/evb/version.h
View file @
738cbccc
...
...
@@ -5,8 +5,8 @@
#define WORKSUITE_EVB_VERSION_MAJOR 6
#define WORKSUITE_EVB_VERSION_MINOR 9
#define WORKSUITE_EVB_VERSION_PATCH
5
#define WORKSUITE_EVB_PREVIOUS_VERSIONS "6.5.0,6.5.1,6.5.2,6.6.0,6.6.1,6.7.0,6.7.1,6.8.0,6.8.1,6.8.2,6.9.0,6.9.1,6.9.2,6.9.3,6.9.4"
#define WORKSUITE_EVB_VERSION_PATCH
6
#define WORKSUITE_EVB_PREVIOUS_VERSIONS "6.5.0,6.5.1,6.5.2,6.6.0,6.6.1,6.7.0,6.7.1,6.8.0,6.8.1,6.8.2,6.9.0,6.9.1,6.9.2,6.9.3,6.9.4
,6.9.5
"
#define WORKSUITE_EVB_VERSION_CODE PACKAGE_VERSION_CODE(WORKSUITE_EVB_VERSION_MAJOR,WORKSUITE_EVB_VERSION_MINOR,WORKSUITE_EVB_VERSION_PATCH)
#ifndef WORKSUITE_EVB_PREVIOUS_VERSIONS
...
...
evb/src/common/readoutunit/MetaDataRetrieverDIPBridge.cc
View file @
738cbccc
...
...
@@ -393,7 +393,7 @@ void evb::readoutunit::MetaDataRetrieverDIPBridge::handleMessage(toolbox::mem::R
const
std
::
string
state
=
dynamic_cast
<
xdata
::
String
*>
(
p
)
->
value_
;
if
(
state
==
"ON"
)
if
(
state
==
"ON"
||
state
==
"READY"
)
lastDCS_
.
highVoltageReady
|=
(
1
<<
pos
);
else
lastDCS_
.
highVoltageReady
&=
~
(
1
<<
pos
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment