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

Sonne's profile - activity

2015-05-29 13:01:18 -0500 received badge  Enlightened (source)
2014-10-20 09:21:03 -0500 received badge  Good Answer (source)
2013-09-11 09:22:12 -0500 received badge  Nice Answer (source)
2013-09-11 09:22:09 -0500 received badge  Nice Question (source)
2013-08-29 10:51:33 -0500 received badge  Self-Learner (source)
2013-08-29 10:51:28 -0500 received badge  Famous Question (source)
2013-07-29 21:30:57 -0500 received badge  Famous Question (source)
2013-07-22 05:28:41 -0500 received badge  Teacher (source)
2013-07-15 21:45:35 -0500 received badge  Notable Question (source)
2013-07-06 08:24:06 -0500 received badge  Popular Question (source)
2013-07-05 23:06:41 -0500 commented question Error: ... is not a package or launch file name

Seems to work fine, if the workspace contains only catkin packages. If there are packages which need to be build with 'catkin_make_isolated' it doesn't work, so that I need to use CATKIN_IGNORE files. Has anyone an idea who to build without putting CATKIN_IGNORE files in the packages in such case?

2013-07-03 05:48:44 -0500 commented question Error: ... is not a package or launch file name

Thank you. This works fine.

2013-07-03 05:12:22 -0500 commented answer Update Problem, Error: is not a package or launch file name

Ok, I thought it could be the same problem like I have. But I use catkin. Have you tried to build your package again?

2013-07-03 05:05:52 -0500 answered a question Update Problem, Error: is not a package or launch file name

Hi,

what kind of build system do you use? If you use catkin, did you source the setup file?

Greetz Sonne

2013-07-03 03:49:06 -0500 asked a question Error: ... is not a package or launch file name

Hi,

I'm using ROS groovy and have some packages in my workspace. When I use catkin_make and just want to build one of these packages, I put a CATKIN_IGNORE file into the packages I don't want to be build.

But when I now try to launch one of the packages which have a CATKIN_IGNORE file, roslaunch can't launch and shows "myPackage is not a package or launch file name".

Shouldn't it be possible to launch even if there is a catkin ignore file in the package?

Has anyone experience with catkin_make? Does anyone know how to build just one packet? Any idea how to do this without copying and deleting CATKIN_IGNORE files every time?

2013-06-19 19:20:29 -0500 commented answer Catkin can't find move_base

Here you can find the catkinized packages https://github.com/jonbinney/navigation/tree/groovy-devel-catkinized-1

2013-06-19 02:27:39 -0500 commented answer Catkin can't find move_base

Good question. I'm not sure, but could it be that this dependencies are only needed if the dependency packages of navigation stack are not compiled?

2013-06-18 23:43:05 -0500 answered a question Catkin can't find move_base

For me it seem to work, when I remove the dependency from CMakeLists.txt and package.xml.

2013-06-13 06:34:39 -0500 received badge  Notable Question (source)
2013-06-12 23:03:37 -0500 commented answer "No source available for main()" while debugging in Eclipse IDE

@William Ok, I added a note on the http://www.ros.org/wiki/IDEs

2013-06-11 11:08:58 -0500 commented answer "No source available for main()" while debugging in Eclipse IDE

Hi joq and William, I followed the catkin tutorials http://www.ros.org/wiki/catkin/Tutorials and http://www.ros.org/wiki/IDEs .Here in section "2.2 Catkin-y Approach" is a link to http://answers.ros.org/question/52013/catkin-and-eclipse/ but didn't realized thats also the solution for my problem.

2013-06-11 08:29:33 -0500 received badge  Student (source)
2013-06-11 05:03:50 -0500 received badge  Popular Question (source)
2013-06-11 04:57:30 -0500 answered a question "No source available for main()" while debugging in Eclipse IDE

Ok, found the solution. Would be nice if this maybe could be a hint in the tutorial for beginners like me ;)

Just cd to build directory and then use

cmake ../src -DCMAKE_BUILD_TYPE=Debug

Now in Eclipse degugging should work.

2013-06-08 04:55:32 -0500 received badge  Editor (source)
2013-06-08 04:44:49 -0500 received badge  Organizer (source)
2013-06-08 04:43:25 -0500 asked a question "No source available for main()" while debugging in Eclipse IDE

Hi,

I'm new to ros groovy and using catkin. I created a workspace, a catkin package with catkin_create_pkg and an eclipse project with catkin_make --force-cmake -G"Eclipse CDT4 - Unix Makefiles". Now in my workspace I have the src, devel and build folder and I can run the program in eclipse IDE. Therefore I need to choose "Run configurations" -> Created new Launch and browsed the binary. But if I try to debug it, eclipse doesn't show the source code, if it stops at a breakpoint and I just get No source available for main().

Does anyone have a solution?