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

stbuebel's profile - activity

2020-09-15 03:50:34 -0500 received badge  Famous Question (source)
2019-09-02 09:10:05 -0500 received badge  Famous Question (source)
2019-05-13 10:50:17 -0500 received badge  Notable Question (source)
2019-05-09 11:44:21 -0500 marked best answer ROS2 Services in Python

Hello,

I have been looking everywhere for documentation on how to add .srv files to a workspace when using the Python build system for ROS2. I assume something needs to go in the setup.py (as well as the package.xml) but don't know what to add.

To be clear, I just want to define a simple service.srv for use in my custom package, and can't figure out how to import my service into my python script (seems like documentation on this is sparse...).

Thanks in advance!

2019-05-09 11:43:29 -0500 received badge  Popular Question (source)
2019-05-08 19:19:45 -0500 asked a question ROS2 Services in Python

ROS2 Services in Python Hello, I have been looking everywhere for documentation on how to add .srv files to a workspace

2019-01-29 10:55:05 -0500 received badge  Supporter (source)
2019-01-29 10:55:03 -0500 marked best answer catkin_make issue updating .srv and .cpp file simultaneously

Think of a situation where rosnode (written in c++) is using messages generated by a .srv file. You want to add a field to the .srv file and use it in the rosnode. If you make these changes simultaneously, catkin_make will fail because it does not yet recognize the new field you have added. Is there a way to make sure that message_generation occurs before compilation of c++ files during catkin_make? Would this even avoid the issue?

2019-01-29 10:55:03 -0500 received badge  Scholar (source)
2019-01-29 10:53:38 -0500 received badge  Notable Question (source)
2019-01-29 01:25:51 -0500 received badge  Popular Question (source)
2019-01-28 19:49:49 -0500 asked a question catkin_make issue updating .srv and .cpp file simultaneously

catkin_make issue updating .srv and .cpp file simultaneously Think of a situation where rosnode (written in c++) is usin