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

Revision history [back]

click to hide/show revision 1
initial version

I manage to solve this problem. The issue was feedbackCallback method. Wrong version:


void feedbackCallback(const minicar_control::msg::Feedback &fb_msg);

Right version:


void feedbackCallback(const minicar_control::msg::Feedback::SharedPtr fb_msg);

@ravijoshi, thank you for your help. I didn't thought, that callback will not be executed.