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

including a new package in a node

asked 2019-03-12 15:20:26 -0500

pathare gravatar image

Hi guys,

I'm trying to add a random number generator to the scan n plan application and its proving to be more difficult than I thought it would be. I found a package https://github.com/ros-planning/rando... that I want to include.

I installed the .deb and can find the packing using rospack find.

I added random_numbers in the find_package(catkin REQUIRED COMPONENTS ) and catkin_package() sections of my top level cmake file. I also added depend tag of random_numbers in my top level package.xml file.

in the C++ file I want to use the random number functions, I included the .h as #include random_numbers/random_numbers.h

I then instantiate an instance as random_numbers::RandomNumberGenerator generator;

I keep getting the following error message: error: undefined reference to `random_numbers::RandomNumberGenerator::RandomNumberGenerator()'

any thoughts on what I'm missing? this is probably the first thing I've tried that really deviates from the intro.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2019-03-12 15:50:06 -0500

ahendrix gravatar image

undefined reference is a linking error; it usually means that your target isn't linked against one of the libraries that it is using.

Linking is done by the cmake target_link_libraries command, so you probably need to update that for your target.

edit flag offensive delete link more

Comments

is that still going to be done in the top level cmake? is there ever a time that I do things in the node cmake?

pathare gravatar image pathare  ( 2019-03-13 06:46:42 -0500 )edit

The "top-level CMake"? Can you clarify what you mean by that?

gvdhoorn gravatar image gvdhoorn  ( 2019-03-13 09:10:41 -0500 )edit

I guess there isnt a cmake in the top level source file like I was thinking. The "top level" I'm referring to would be the main application level process I guess. Particularly in this case for the training project that's the "myworkcell_core" node.

pathare gravatar image pathare  ( 2019-03-13 09:23:52 -0500 )edit

No, for typical ROS development environments there is no top-level CMakeLists.txt -- or at least, not one that is created / managed by users.

Note: there typically also isn't a CMakeLists.txt per node, but per package.

gvdhoorn gravatar image gvdhoorn  ( 2019-03-13 09:28:42 -0500 )edit

Ok, yeah I can see the difference. In the "myworkcell_core" package I have two nodes. So if I'm trying to use this in a different package that would be where I want to modify the cmake then?

pathare gravatar image pathare  ( 2019-03-13 09:33:48 -0500 )edit

So if I'm trying to use this in a different package

what is "this"?

gvdhoorn gravatar image gvdhoorn  ( 2019-03-13 09:49:31 -0500 )edit

This random number generator package. I want to use it in the "fake_ar_publisher" package so it would be included in that package cmake? It is a complete package though, so does it need to be added as a package in my top level source directory (catkin_ws/src)? I'll reiterate at this point that I can already find the package using rospack find in my workspace.

pathare gravatar image pathare  ( 2019-03-13 09:54:57 -0500 )edit

Please don't take this as me not wanting to explain things to you, but I'd suggest taking a look at the Catkin documentation. Especially the Resolving dependencies section.

gvdhoorn gravatar image gvdhoorn  ( 2019-03-13 09:59:32 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2019-03-12 15:20:26 -0500

Seen: 436 times

Last updated: Mar 12 '19