ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

dyn_recfg c++: compiling but no items in rqt_reconfigure

asked 2017-03-07 02:51:15 -0500

JanOr gravatar image

updated 2017-03-07 03:18:05 -0500

gvdhoorn gravatar image

HI, I try to get the dynamic reconfigure to run in c++. My Project is compiling without problems, but the variables do not appear in rqt? I have a class based structure like following:

//Class Instance: class_instance.h

#include "ros/ros.h"
#include "project_name/ManipulatorConfig.h"
#include <dynamic_reconfigure/server.h>
#include <boost/bind.hpp>

class ClassInstance{
    void ClassInstance::subReconfigureCallback(project_name::ProjectConfig &config, uint32_t level) {
      ROS_INFO("Reconfigure Request: %f", config.joint1_angle);
      ROS_INFO("Reconfigure Request: %f", config.joint2_angle);
      ROS_INFO("Reconfigure Request: %f", config.joint3_angle);
   }
   ClassInstance(){
     dynamic_reconfigure::Server<project_name::ProjectConfig> server;
     dynamic_reconfigure::Server<project_name::ProjectConfig>::CallbackType f;
     f = boost::bind(&ClassInstance::subReconfigureCallback, this, _1, _2);
     server.setCallback(f);
   }
}

//Main: main.cpp

#include "ros/ros.h"
#include "class_instance.h" 
int main(int argc, char **argv){
    ros::init(argc, argv, "project_name_node");
    ClassInstance class_instance;
    ros::spin();    
    return 0; 
}

//ProjectConfig.cfg

#!/usr/bin/env python
PACKAGE = "project_name"
from dynamic_reconfigure.parameter_generator_catkin import *
gen = ParameterGenerator()
gen.add("var1", double_t, 0, "A double parameter",    0, 0.0,  2.0)
gen.add("var2", double_t, 0, "A double parameter",    0, 0.0,  2.0)
gen.add("var3", double_t, 0, "A double parameter",    0, 0.0,  2.0)
exit(gen.generate(PACKAGE, "project_name", "Project"))

The CMAKELISTS and PACKAGE are created according to the dynamix reconfigure tutorial. Do you have any idea? Thanks a lot!

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2017-03-07 02:59:10 -0500

gvdhoorn gravatar image
class ClassInstance{
   ...
   ClassInstance(){
     dynamic_reconfigure::Server<project_name::ProjectConfig> server;
     dynamic_reconfigure::Server<project_name::ProjectConfig>::CallbackType f;
     f = boost::bind(&ClassInstance::subReconfigureCallback, this, _1, _2);
     server.setCallback(f);
   }
}

This is really more a C++ issue than something to do with ROS, but: you're server variable is not a member of your class, but just an instance that has a scope that is local to the ClassInstance constructor.

On other words: server will only exist for the short time that the c'tor is executed, after which it will be destroyed.

Make server a member variable and then initialise it in your c'tor, that should resolve your issue.

edit flag offensive delete link more

Comments

Wow that was fast. You are absolutely right. It works now. Thanks a lot!

JanOr gravatar image JanOr  ( 2017-03-07 03:05:10 -0500 )edit

Question Tools

Stats

Asked: 2017-03-07 02:51:15 -0500

Seen: 330 times

Last updated: Mar 07 '17