Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ApplicationCore
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
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
ChimeraTK Mirror
ApplicationCore
Commits
e179e37c
Commit
e179e37c
authored
5 years ago
by
Martin Christoph Hierholzer
Browse files
Options
Downloads
Patches
Plain Diff
do not read device registers at application start (explanation in a comment...)
parent
e320efe5
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
src/Application.cc
+11
-3
11 additions, 3 deletions
src/Application.cc
with
11 additions
and
3 deletions
src/Application.cc
+
11
−
3
View file @
e179e37c
...
...
@@ -165,11 +165,19 @@ void Application::run() {
deviceModule
->
run
();
}
// read all input variables once, to set the startup value e.g. coming from
// the config file (without triggering an action inside the application)
// Read all non-device variables once, to set the startup value from the persistency layer
// (without triggering an action inside the application)
// Note: this will read all application variables directly connected to either the control system or to another
// application module, e.g. the ConfigReader (which will provide initial values as well).
// Device variables are excluded for two reasons: Firstly, the device might be in an exception state when launching
// the application, so reading the variable would block until the device is properly opened. Secondly, some strange
// devices might cause side-effects when registers are read, and there would be no way to prevent these automatic
// reads from happening. If an application requires having an initial value from the device, it can simply issue
// a readLatest() at the beginning of its mainLoop() function.
for
(
auto
&
module
:
getSubmoduleListRecursive
())
{
for
(
auto
&
variable
:
module
->
getAccessorList
())
{
if
(
variable
.
getDirection
().
dir
==
VariableDirection
::
consuming
)
{
if
(
variable
.
getDirection
().
dir
==
VariableDirection
::
consuming
&&
variable
.
getOwner
().
getFeedingNode
().
getType
()
!=
NodeType
::
Device
)
{
variable
.
getAppAccessorNoType
().
readLatest
();
}
}
...
...
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