Skip to content
Snippets Groups Projects
Commit 3d0d3959 authored by Fabian Reister's avatar Fabian Reister
Browse files

sensor value prefix

parent 31fda255
No related branches found
No related tags found
2 merge requests!157armem/dev => master,!144robot state memory update
...@@ -72,11 +72,13 @@ namespace armarx::armem::server::robot_state ...@@ -72,11 +72,13 @@ namespace armarx::armem::server::robot_state
armarx::PropertyDefinitionsPtr RobotStateMemory::createPropertyDefinitions() armarx::PropertyDefinitionsPtr RobotStateMemory::createPropertyDefinitions()
{ {
const std::string robotUnitPrefix{sensorValuePrefix};
armarx::PropertyDefinitionsPtr defs = new ComponentPropertyDefinitions(getConfigIdentifier()); armarx::PropertyDefinitionsPtr defs = new ComponentPropertyDefinitions(getConfigIdentifier());
defs->optional(robotUnitSensorPrefix, "RobotUnit.SensorValuePrefix", "Prefix of all sensor values"); defs->optional(robotUnitSensorPrefix, robotUnitPrefix + "SensorValuePrefix", "Prefix of all sensor values");
defs->optional(robotUnitMemoryBatchSize, "RobotUnit.MemoryBatchSize", "The size of the entity snapshot to send to the memory. Min is 1"); defs->optional(robotUnitMemoryBatchSize, robotUnitPrefix + "MemoryBatchSize", "The size of the entity snapshot to send to the memory. Min is 1");
defs->optional(robotUnitPollFrequency, "RobotUnit.UpdateFrequency", "The frequency in Hz to store values. All other values get discarded. Min is 1, max is " + std::to_string(ROBOT_UNIT_MAXIMUM_FREQUENCY)); defs->optional(robotUnitPollFrequency, robotUnitPrefix + "UpdateFrequency", "The frequency in Hz to store values. All other values get discarded. Min is 1, max is " + std::to_string(ROBOT_UNIT_MAXIMUM_FREQUENCY));
defs->optional(robotUnitConfigPath, "robotUnit.ConfigPath", "Specify a configuration file to group the sensor values specifically."); defs->optional(robotUnitConfigPath, robotUnitPrefix + "ConfigPath", "Specify a configuration file to group the sensor values specifically.");
descriptionSegment.defineProperties(defs); descriptionSegment.defineProperties(defs);
proprioceptionSegment.defineProperties(defs); proprioceptionSegment.defineProperties(defs);
......
...@@ -139,6 +139,8 @@ namespace armarx::armem::server::robot_state ...@@ -139,6 +139,8 @@ namespace armarx::armem::server::robot_state
// params // params
static constexpr int ROBOT_UNIT_MAXIMUM_FREQUENCY = 100; static constexpr int ROBOT_UNIT_MAXIMUM_FREQUENCY = 100;
static constexpr const char* sensorValuePrefix = "RobotUnit.";
int robotUnitPollFrequency = 50; int robotUnitPollFrequency = 50;
std::string robotUnitSensorPrefix = "sens.*"; std::string robotUnitSensorPrefix = "sens.*";
unsigned int robotUnitMemoryBatchSize = 50; unsigned int robotUnitMemoryBatchSize = 50;
......
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