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

xeronia's profile - activity

2014-10-12 00:56:25 -0500 received badge  Self-Learner (source)
2014-10-12 00:56:25 -0500 received badge  Teacher (source)
2013-01-17 01:53:56 -0500 received badge  Famous Question (source)
2013-01-17 01:53:56 -0500 received badge  Popular Question (source)
2013-01-17 01:53:56 -0500 received badge  Notable Question (source)
2012-08-28 04:44:08 -0500 received badge  Notable Question (source)
2012-08-28 04:44:08 -0500 received badge  Famous Question (source)
2012-06-13 17:33:17 -0500 received badge  Popular Question (source)
2011-07-25 22:33:10 -0500 received badge  Student (source)
2011-07-25 20:40:11 -0500 received badge  Scholar (source)
2011-07-25 20:40:11 -0500 marked best answer What happens is a node receives a message while it's in the middle of a callback?

callbacks will only be called from ros::spin(Once) or by manually calling the callback-queues to be processed.

Unless you use some kind of threading the function will finish and the other callback will be called in the next loop.

2011-07-25 10:34:01 -0500 asked a question What happens is a node receives a message while it's in the middle of a callback?

I'm thinking of having a node send a message to another node as part of a callback function. It should receive a message from another node at about this time as well, before it finishes the callback function. What will ROS do in this case? Will the node pause the first callback function in order to execute the second, or will it finish executing the first callback before executing the callback function for the message it just received?

Thanks!

2011-06-24 04:46:13 -0500 commented answer Using the "Player" package
I want it to support a Logitech Quickcam Orbit/Sphere AF. Currently, I have the camera working and functioning in a Player program.
2011-06-24 04:45:44 -0500 answered a question Using the "Player" package

I got Player and ROS to integrate without the Player package, with ROS Diamondback and Player 3.0.2.

Instructions are here: http://brice-rebsamen.blogspot.com/2011/05/first-exercise-with-ros-node-to.html

The key is to edit the CMakeLists.txt file so that ROS finds all of the Player libraries that are installed during compilation.

2011-06-22 19:34:19 -0500 answered a question Using the "Player" package

I want it to support a Logitech Quickcam Orbit/Sphere AF. Currently, I have the camera working and functioning in a Player program.

2011-06-22 12:54:12 -0500 asked a question Using the "Player" package

Hi,

I am trying to use the "Player" package with a package that I am working on, but I can't seem to find any documentation telling me how to use that package.

Right now, I have "player" listed as a dependency in my manifest.xml file of the package I'm writing, and that's it. Running "cmake ." in the directory doesn't give any errors. Running "make" tells me that it's not finding any Player packages.

Is there something I'm missing in CMakeLists.txt?

Thanks!