catkin_simple building a srv
A colleague is trying to build a custom ROS service through catkin_simple and is getting the following error:
Any idea as to what I should tell them to do?
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
A colleague is trying to build a custom ROS service through catkin_simple and is getting the following error:
Any idea as to what I should tell them to do?
Asked: 2015-09-21 18:10:38 -0600
Seen: 725 times
Last updated: Sep 21 '15
Is it possible to change "msg" and "srv" folder position in a package ?
how to generate documentation for msg/srv files using rosdoc
How to receive and array of floats over a user defined message type ?
Undefined reference for string constant in service
Roslaunch across multiple machines failing when calling nodes.
ros service - Why do I have multiple definitions of main?
ROS Beginner Tutorials: Examining the Simple Service and Client (python) - need some help [closed]
ROS Beginner Tutorials: Examining the Simple Service and Client (python) - need some help
Parameters to be included in the following rosservice call:rosservice call /re_comm/request_2d_map
Well there are plenty of hints in this message. Did you specify
generate_messages
correctly with all dependencies? Why does he search the Float64 message in a package named 'velocity_project'? This message is defined in 'std_msgs'.Aside from the error of accessing a Float64 from "velocity project" (if thats even what is being said, looks like its just originating there, to me), the issue is still present as to what to do in terms of catkin_simple when generating a new service or message without
generate_messages
.