Skip to content
Snippets Groups Projects
Commit 9368606f authored by Simon Ottenhaus's avatar Simon Ottenhaus
Browse files

added missing using topic

parent 9bdbabcb
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,8 @@ namespace armarx
heartbeatMaxCycleMS = getProperty<long>("HeartbeatMaxCycleMS").getValue();
heartbeatStartupMarginMS = getProperty<long>("HeartbeatStartupMarginMS").getValue();
getArmarXManager()->increaseSchedulers(static_cast<int>(additionalObjectSchedulerCount));
usingTopic(getProperty<std::string>("AggregatedRobotHealthTopicName").getValue());
}
void Management::_postFinishControlThreadInitialization()
......
......@@ -47,6 +47,9 @@ namespace armarx
defineOptionalProperty<long>(
"HeartbeatStartupMarginMS", 1000,
"Startup time for heartbeats");
defineOptionalProperty<std::string>(
"AggregatedRobotHealthTopicName", "AggregatedRobotHealthTopic",
"Name of the AggregatedRobotHealthTopic");
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment