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

joaocandre's profile - activity

2024-02-23 00:46:05 -0500 received badge  Notable Question (source)
2024-02-23 00:46:05 -0500 received badge  Famous Question (source)
2022-09-19 14:53:21 -0500 received badge  Notable Question (source)
2022-08-29 17:01:55 -0500 marked best answer No DEBUG messages on stdout/stderr

When printing/logging messages with ROS_DEBUG there is no output on stdout/stderr, despite launching a node with output="screen". On the other hand, ROS_INFO, ROS_WARN and ROS_ERROR (along with their variants) work as intended, printing the message to the console.

Looking into ROS logging documentation, debug messages should be printed by default, while warning and error message shouldn't. In additions, nothing is printed to logfiles.

How do I go about fixing this?

2022-08-29 16:10:27 -0500 received badge  Popular Question (source)
2022-08-28 21:30:58 -0500 edited question No DEBUG messages on stdout/stderr

No DEBUG messages on stdout/stderr When printing/logging messages with ROS_DEBUG there is no output on stdout/stderr, de

2022-08-28 21:30:58 -0500 received badge  Editor (source)
2022-08-28 21:30:35 -0500 asked a question No DEBUG messages on stdout/stderr

No DEBUG messages on stdout/stderr When printing/logging messages with ROS_DEBUG there is no output on stdout/stderr, de

2022-07-25 11:53:07 -0500 received badge  Popular Question (source)
2022-07-25 09:04:44 -0500 commented answer Common usage of NodeHandle?

Instantiating NodeHandle does not initialize a new node though, just a handle to perform ROS operations. So the node dia

2022-07-25 08:48:15 -0500 commented answer Common usage of NodeHandle?

Instantiating NodeHandle does not initialize a new node though, just a handle to perform ROS operations. So the node dia

2022-07-24 22:25:43 -0500 received badge  Nice Question (source)
2022-07-24 16:26:11 -0500 received badge  Notable Question (source)
2022-07-24 16:26:11 -0500 received badge  Famous Question (source)
2022-07-24 16:26:11 -0500 received badge  Popular Question (source)
2022-07-24 13:51:40 -0500 asked a question Common usage of NodeHandle?

Common usage of NodeHandle? When developing classes that provide ROS-specific functionality, what is the recommended app

2021-06-18 20:54:38 -0500 received badge  Famous Question (source)
2021-06-18 20:54:38 -0500 received badge  Notable Question (source)
2021-06-13 22:27:59 -0500 received badge  Famous Question (source)
2021-03-09 11:41:20 -0500 received badge  Popular Question (source)
2021-03-09 08:37:57 -0500 marked best answer Synchronizing different nodes on different machines

What would be the best approach to synchronize two ROS2 nodes (i.e. a common shared clock/time) on two different machines, connected over a wireless network?

At present I've implemented a third node on one of the machines providing a clock, but apparently there is a slight delay/latency of 5-20ms on the other machine, which is variable, and thus hinders the accuracy of time readings.

Is this delay caused/affected by ROS or solely by the network configuration? Is there any tool built into ROS that can help with precise syncrhonization?

2021-03-09 08:37:57 -0500 received badge  Scholar (source)
2021-03-09 08:34:07 -0500 commented answer Synchronizing different nodes on different machines

I'm indeed publishing to \clock, mostly for simplicity/verbosity, but what exactly would be the difference in using a di

2021-03-09 08:24:29 -0500 commented answer Synchronizing different nodes on different machines

I'll check ntp and chrony, they seem to be what I'm looking for. My particular setup involves a Raspberry Pi acting as a

2021-03-09 08:00:50 -0500 received badge  Supporter (source)
2021-03-09 04:56:31 -0500 asked a question Synchronizing different nodes on different machines

Synchronizing different nodes on different machines What would be the best approach to synchronize two ROS2 nodes (i.e.

2021-02-14 22:12:08 -0500 received badge  Famous Question (source)
2021-02-07 04:06:06 -0500 received badge  Student (source)
2021-02-06 17:36:07 -0500 asked a question Multiple NodeHandle instances vs shared NodeHandle

Multiple NodeHandle instances vs shared NodeHandle Conceptually, when writing a C++ node wherein several classes are ins

2020-12-22 07:15:16 -0500 received badge  Notable Question (source)
2020-12-22 07:15:16 -0500 received badge  Popular Question (source)
2020-08-21 11:02:14 -0500 received badge  Famous Question (source)
2020-06-30 14:55:16 -0500 received badge  Notable Question (source)
2020-06-30 14:55:16 -0500 received badge  Popular Question (source)
2020-06-23 02:30:01 -0500 received badge  Famous Question (source)
2020-06-21 00:43:19 -0500 received badge  Notable Question (source)
2020-05-26 10:40:47 -0500 asked a question Most efficient way to save Images to file?

Most efficient way to save Images to file? I'm trying to save both RGB and Depth images from a camera stream, however us

2020-02-27 19:04:00 -0500 commented answer Redirectign output of included launch file

Unfortunately it is not my package and I would like to avoid directly changing anything in it, including its launch file

2020-02-27 18:45:46 -0500 received badge  Notable Question (source)
2020-02-27 09:53:18 -0500 asked a question Redirectign output of included launch file

Redirectign output of included launch file Is it possible to redirect the output of a node launched through a separate l

2020-02-07 05:40:48 -0500 received badge  Popular Question (source)
2020-01-29 09:49:26 -0500 asked a question How large are Subscriber/Publisher/ServiceServer instances?

How large are Subscriber/Publisher/ServiceServer instances? I'm writing a wrapper class that advertises several topics a

2020-01-29 08:16:03 -0500 commented question Is passing an extra unused parameter/message to a callback good practice?

In my particular implementation using typed callbacks, I am declaring multiple ros::ServiceServer objects as members of

2020-01-29 08:12:27 -0500 commented question Is passing an extra unused parameter/message to a callback good practice?

In my paticular implementation using typed callbacks, I am declaring multiple ros::ServiceServer objects as members of m

2020-01-29 07:56:59 -0500 commented question Is passing an extra unused parameter/message to a callback good practice?

15-20 services in total. The callbacks and their instantiation are part of a "ROS wrapper" class - each service routine

2020-01-29 03:28:25 -0500 received badge  Popular Question (source)
2020-01-28 20:25:55 -0500 asked a question Is passing an extra unused parameter/message to a callback good practice?

Is passing an extra unused parameter/message to a callback good practice? I'm writing a node that advertises several (15

2020-01-09 12:17:02 -0500 received badge  Popular Question (source)
2019-12-06 07:21:14 -0500 edited question Unable to load controller spawner node

Unable to load controller spawner node For some reason controller_manager isn't able to run a spawner node. If I use a l