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

nightduck's profile - activity

2022-11-24 13:09:19 -0500 received badge  Notable Question (source)
2022-08-26 19:49:58 -0500 received badge  Popular Question (source)
2022-07-27 11:05:44 -0500 answered a question How to specify rmw_implementation to test_rmw_implementation

test_rmw_implementation will test all implementations, not just the one So there was never any issue, but coincidentall

2022-07-27 11:05:44 -0500 received badge  Rapid Responder (source)
2022-07-26 17:52:55 -0500 asked a question test_rmw_implementation

test_rmw_implementation I'm trying to make use of the unit tests in test_rmw_implementation, but it'll only ever use the

2022-07-26 17:52:24 -0500 asked a question How to specify rmw_implementation to test_rmw_implementation

How to specify rmw_implementation to test_rmw_implementation I'm trying to make use of the unit tests in test_rmw_implem

2021-08-06 03:15:24 -0500 received badge  Famous Question (source)
2021-01-06 12:36:15 -0500 received badge  Notable Question (source)
2020-10-20 00:03:46 -0500 received badge  Popular Question (source)
2020-10-19 10:36:08 -0500 received badge  Popular Question (source)
2020-10-19 10:02:40 -0500 answered a question Building ros1_bridge, but ros1 workspace not getting sourced

There was a typo in the package.xml. "mapping_ruiles"

2020-10-15 23:28:55 -0500 received badge  Famous Question (source)
2020-10-15 23:28:27 -0500 asked a question Package not visible after sourcing local_setup.bash, but works with setup.bash

Package not visible after sourcing local_setup.bash, but works with setup.bash If I run source devel/setup.bash I can

2020-10-15 21:05:10 -0500 asked a question Building ros1_bridge, but ros1 workspace not getting sourced

Building ros1_bridge, but ros1 workspace not getting sourced I've followed the instructions here to build ros1_bridge wi

2020-10-09 01:05:11 -0500 received badge  Famous Question (source)
2020-10-09 01:05:11 -0500 received badge  Notable Question (source)
2020-08-17 09:12:01 -0500 received badge  Notable Question (source)
2020-08-17 09:12:01 -0500 received badge  Popular Question (source)
2020-06-25 13:51:03 -0500 received badge  Popular Question (source)
2020-06-19 20:21:22 -0500 received badge  Enthusiast
2020-06-04 14:50:20 -0500 asked a question Project won't build because CMAKE_PROJECT_NAME variable not present

Project won't build because CMAKE_PROJECT_NAME variable not present I'm migrating part of a project, mav_trajectory_gene

2020-04-11 12:37:22 -0500 commented answer Can't find service header files

That was it, thank you. I missed that step in the wiki

2020-04-11 12:35:43 -0500 marked best answer Can't find service header files

I can build my project and running rosservice show benchmark_suite/status will reveal it has indeed been declared. But I cannot for the life of me find the header fine. The devel/include directory doesn't exist and inserting a #include "benchmark_suite/status.h" line in my .cpp file shows a "not found error" when building.

CMakeList.txt excerpts:

find_package(catkin REQUIRED COMPONENTS
  roscpp
  rosmsg
  std_msgs
  message_generation
)
...
add_service_files(
  FILES
  status.srv
)
...
add_executable(cubic src/cubic.cpp)
target_link_libraries(cubic ${catkin_LIBRARIES})

package.xml excerpts

...
<build_depend>message_generation</build_depend>
<exec_depend>message_runtime</exec_depend>
...
2020-04-11 12:35:43 -0500 received badge  Scholar (source)
2020-04-11 12:35:42 -0500 received badge  Supporter (source)
2020-04-10 14:23:26 -0500 asked a question Can't find service header files

Can't find service header files I can build my project and running rosservice show benchmark_suite/status will reveal it