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

grouchy's profile - activity

2022-09-25 23:39:44 -0500 received badge  Great Question (source)
2021-10-15 04:24:16 -0500 received badge  Good Question (source)
2021-07-11 18:34:47 -0500 received badge  Notable Question (source)
2021-04-15 08:50:17 -0500 received badge  Nice Question (source)
2021-04-15 08:50:15 -0500 received badge  Famous Question (source)
2021-03-05 07:57:21 -0500 received badge  Student (source)
2021-03-05 07:56:49 -0500 received badge  Notable Question (source)
2021-02-23 15:25:05 -0500 received badge  Famous Question (source)
2021-02-15 02:32:20 -0500 received badge  Popular Question (source)
2021-02-14 07:17:51 -0500 commented question ROS2 disable logging to file

I guess I wanted to show I'd searched for similar questions before posting a new one. I should have said: "Here is a sim

2021-02-14 07:03:12 -0500 commented question ROS2 disable logging to file

Thanks for the extra info @gvdhoorn. I didn't want to include too many links to ROS1-specific solutions in my question,

2021-02-14 07:02:49 -0500 commented question ROS2 disable logging to file

Thanks for the extra info @gvdhoorn. I didn't want to include too many links to ROS1 in my question, because this questi

2021-02-14 05:56:06 -0500 asked a question ROS2 disable logging to file

ROS2 disable logging to file On ROS2 Foxy, it seems rclcpp nodes create log files in ~/.ros/log. Is there any way to dis

2020-12-23 23:46:50 -0500 received badge  Popular Question (source)
2020-12-21 03:46:26 -0500 edited question Why do roscpp publishers and subscribers take so much longer to connect than their rospy counterparts?

Why do roscpp publishers and subscribers take so much longer to connect than their rospy counterparts? When a roscpp sub

2020-12-21 03:42:09 -0500 asked a question Why do roscpp publishers and subscribers take so much longer to connect than their rospy counterparts?

Why do roscpp publishers and subscribers take so much longer to connect than their rospy counterparts? When a roscpp sub

2020-11-25 23:16:51 -0500 received badge  Famous Question (source)
2020-10-24 05:21:42 -0500 received badge  Notable Question (source)
2020-08-21 06:15:31 -0500 received badge  Popular Question (source)
2020-08-18 16:45:00 -0500 commented answer controller_manager behaviour when a hardware error occurs

I reckon option 2 fits best my understanding of how ros_control works, though most likely its my understanding that's wr

2020-08-18 16:41:15 -0500 commented answer controller_manager behaviour when a hardware error occurs

I reckon option 2 fits best my understanding of how ros_control works, though most likely its my understanding that's wr

2020-08-18 13:05:52 -0500 asked a question controller_manager behaviour when a hardware error occurs

controller_manager behaviour when a hardware error occurs I'm integrating ros_control and thus controller_manager with a

2020-08-08 05:07:37 -0500 received badge  Notable Question (source)
2020-07-13 16:43:54 -0500 received badge  Famous Question (source)
2020-07-11 12:32:16 -0500 received badge  Popular Question (source)
2020-07-11 03:16:48 -0500 answered a question Mechanism to prevent multiple publishers simultaneously publishing contradictory messages to a topic?

It's been three months so I figured I'd give an update on where I got to with this. Based on gvdhoorn's et al suggestio

2020-07-11 02:38:25 -0500 asked a question Why is my node not logging to a file?

Why is my node not logging to a file? The roscpp logging documentation states: Everything enabled goes into the log

2020-04-22 02:09:21 -0500 received badge  Enthusiast
2020-04-21 20:17:15 -0500 received badge  Notable Question (source)
2020-04-13 16:17:38 -0500 marked best answer Mechanism to prevent multiple publishers simultaneously publishing contradictory messages to a topic?

Is there a way to prevent multiple publishers simultaneously publishing messages to the same topic? I think I'm looking for a way for a node to lock access to a topic and release it when it's done. While a node holds the lock, no other nodes should be able to publish to this topic and their requests to lock the resource should fail. I realize this idea contradicts the principles of pub-sub, so perhaps I'm thinking about this in the wrong way.

The cmd_vel (geometry_msgs/Twist) topic is a pertinent example as interleaving messages from multiple publishers containing drastically different velocities could cause rather undesirable vibrations in the robot.

The obvious solution is to simply not run multiple nodes that can publish to the same topic, but I would like to run multiple nodes that could publish this topic at any time depending on user input. E.g. the operator could nudge a joystick while a trajectory planner is running.

I was wondering if anyone else had thought of an elegant solution to this problem or approached the problem differently before I reinvented the wheel. remote_mutex looks promising, but there is precious little information about it, and no mention of a repository as far as I can tell.

2020-04-13 16:17:38 -0500 received badge  Scholar (source)
2020-04-13 16:17:23 -0500 received badge  Supporter (source)
2020-04-13 16:17:11 -0500 commented answer Mechanism to prevent multiple publishers simultaneously publishing contradictory messages to a topic?

Thanks for turning me onto vapour_master, it's pretty interesting for plenty of reasons. Otherwise as you say running a

2020-04-13 16:01:06 -0500 commented answer Mechanism to prevent multiple publishers simultaneously publishing contradictory messages to a topic?

Thank you for taking the time to carefully consider my question. I had considered this issue orthogonal to security. Fo

2020-04-13 15:57:27 -0500 commented answer Mechanism to prevent multiple publishers simultaneously publishing contradictory messages to a topic?

Thank you for taking the time to carefully consider my question. I had considered this issue orthogonal to security. Fo

2020-04-13 14:54:18 -0500 received badge  Popular Question (source)
2020-04-13 07:22:58 -0500 asked a question Mechanism to prevent multiple publishers simultaneously publishing contradictory messages to a topic?

Mechanism to prevent multiple publishers simultaneously publishing contradictory messages to a topic? Is there a way to