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

Straszheim's profile - activity

2016-02-12 05:11:55 -0500 received badge  Taxonomist
2014-04-24 01:57:24 -0500 received badge  Good Answer (source)
2013-06-10 10:17:36 -0500 received badge  Nice Answer (source)
2011-06-28 01:52:10 -0500 received badge  Nice Answer (source)
2011-06-17 12:31:54 -0500 answered a question It is allowed to change the update() method frequency for PR2 controllers?

in the pr2_ethercat package, look in main.cpp for:

period = 1e+6; // 1 ms in nanoseconds

but you shouldn't do this on a real PR2

2011-06-17 12:13:47 -0500 received badge  Necromancer (source)
2011-06-17 12:12:32 -0500 answered a question Are there any other signal interrupts with roscpp besides the default ctrl+c sigint handler

There can be only one handler for any given signal at a time. ROS does install a handler for SIGINT. It is not possible to catch and handle SIGKILL.

2011-06-17 11:49:10 -0500 answered a question kinect_tools compilation problem

There is an eigen3 package that is distinct from eigen... different code.

2011-06-17 11:46:28 -0500 answered a question hand_interaction unaligned array assertion
2011-06-17 11:43:04 -0500 commented answer What is package textured_object_detection used for?
Was this the package where the detection was textured, as opposed to the objects detected?
2011-06-17 11:22:17 -0500 answered a question Building ROS on Fedora 15

This is a python 2.6 vs 2.7 issue I'm pretty sure. Patches to rosmake are trickling in.

2011-06-17 11:16:37 -0500 answered a question Hardware communication fails after ros::init

You're going to need to find the very first point at which execution diverges from the working and nonworking versions. At this point you could ask, "why does ros::init change this specific behavior", but with what is here it is hard to say.

2011-06-17 11:10:41 -0500 answered a question Using rosservice from webui

Webui was, at one point, for "internal use only". At this point it is completely unsupported...

2011-06-17 10:58:48 -0500 answered a question Node management tool

This doesn't exist. You're not the first to think of it and some informal design has been done, but there is nothing usable.

2011-06-17 10:51:40 -0500 answered a question Loading a file from a python ros node

you also could use roslaunch and the $(find) mechanism:

http://www.ros.org/wiki/roslaunch/XML

2011-06-17 10:45:44 -0500 received badge  Organizer (source)
2011-06-17 10:33:59 -0500 answered a question ros cross-compile for gumstix?
2011-05-12 04:45:54 -0500 answered a question make eclipse-project in stack

This will be more straightforward under rosbuild2, where there is a single invocation of cmake and therefore a single project file generated.

2011-05-12 04:44:37 -0500 received badge  Critic (source)
2011-05-12 04:43:30 -0500 answered a question Is there functionality built into ros to get nodes to print a stacktrace on crash?

There is not. You could ticket this as an enhancement...

2011-03-14 16:28:05 -0500 answered a question Timer callbacks not working

I can't reproduce this on 10.04 or 10.10 with diamondback:

% ./bin/timers
[ INFO] [1300163272.915589903]: Callback 1 triggered
[ INFO] [1300163273.015990217]: Callback 1 triggered
[ INFO] [1300163273.115590082]: Callback 1 triggered
[ INFO] [1300163273.216186940]: Callback 1 triggered
[ INFO] [1300163273.315749665]: Callback 1 triggered
2011-03-13 15:14:04 -0500 commented answer How to create an executable in the $package/bin directory ?
That makes sense... and Ouch.
2011-03-13 15:12:39 -0500 commented answer Build Architecture Question
Spot on, thanks.
2011-02-26 06:47:32 -0500 answered a question How to create an executable in the $package/bin directory ?

You're not doing any installing so the install command doesn't come in to play. This should do it:

set(RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin)

see the docs at

cmake --help-full | less

You'd need to post your whole cmakelists for me to be sure.

2011-02-24 09:18:21 -0500 commented answer Minimizing compiler memory, pcl_ros
How important is the beard? Aside: I don't know of any upcoming boards from nvidia that combine ARM and a gpu that can run CUDA code (which gpu'd pcl will require). e.g. the tegras don't run CUDA code.
2011-02-21 01:38:13 -0500 received badge  Nice Answer (source)
2011-02-17 19:04:16 -0500 received badge  Editor (source)
2011-02-17 17:31:16 -0500 answered a question Cleaning up when moving a stack/package to a different directory so rosmake won't complain

I think you want:

find -name CMakeCache.txt -delete

I'm guessing it is the cmake generated makefiles that are problematic (they don't like being moved around). The missing CMakeCache.txt will force regeneration.

2011-02-17 00:22:23 -0500 received badge  Teacher (source)
2011-02-16 10:40:23 -0500 answered a question Which IDE(s) do ROS developers use?

Somebody took the IDE out of emacs without telling me. ;)

2011-02-16 10:37:59 -0500 answered a question Is anybody in ROS community using PySide?

I don't know of either right now; presumably because everything is wxwidgets and associated wxpython/swig stuff. Plans are to move to Qt as you may know, but nothing has yet. Availability on Ubuntu will be important in the long run. [edited] looks like the commenters below have some good info.

2011-02-15 13:45:48 -0500 received badge  Supporter (source)