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

Ugesh's profile - activity

2021-07-12 16:10:30 -0500 asked a question hector_sensors_description package for neotic

hector_sensors_description package for neotic Hi, I am getting below errors when tried to follow some tutorial and tried

2021-06-14 00:39:58 -0500 commented question DDS Tutorial with ROS2

@kscottz could please kindly support me here

2021-06-14 00:39:09 -0500 commented question Problems when installing ros noetic on ubuntu 20.04

Hi, Some where you're using the sudo in your system. Can you restart and check once again

2021-06-12 19:56:25 -0500 received badge  Notable Question (source)
2021-06-11 14:22:51 -0500 commented question DDS Tutorial with ROS2

I am looking for an example and wanted to see through the logs how the discovery of the service works looks for some tut

2021-06-11 14:16:46 -0500 received badge  Popular Question (source)
2021-06-08 09:43:10 -0500 answered a question ros2: simple talker listener example using static discovery

Have you found the solution, if yes, could you please kindly share the solution?

2021-06-07 13:24:21 -0500 asked a question DDS Tutorial with ROS2

DDS Tutorial with ROS2 Hi, I am trying to find the DDS Tutorial with ROS2 but there are many documents which leads to co

2021-05-18 14:28:26 -0500 received badge  Enthusiast
2021-05-18 08:09:15 -0500 marked best answer SubscriberStatusCallback not called in talker node

Hi, I am trying to implement the simple listener and talker as explained in ROS tutorial link http://wiki.ros.org/ROS/Tutorials/Wri... but I have done a small modification, the publishing to the topic will happen, whenever the listener node connects to the talker, otherwise the message will not be published.

Please check the below talker node implementation but some how the callback is not triggered whenever the listener is subscribed to the topic.

void Publisher::CreateTopic(const std::string &topicname, const std::size_t &queue)
{
    const ros::SubscriberStatusCallback callback_conn = std::bind(&Publisher::SubscriberStatusCallback_connect, this, std::placeholders::_1);
    const ros::SubscriberStatusCallback callback_discon = std::bind(&Publisher::SubscriberStatusCallback_Disconnect, this, std::placeholders::_1);
    chatter_pb = handle.advertise<std_msgs::String>(topicname, queue, callback_conn, callback_discon);
}
2021-05-16 06:40:20 -0500 received badge  Popular Question (source)
2021-05-15 21:45:11 -0500 answered a question SubscriberStatusCallback not called in talker node

I have found the reason, I have used the ros::spinOnce(); instead of ros::spin() so no callbacks are processed incase of

2021-05-15 09:49:33 -0500 received badge  Student (source)
2021-05-14 20:37:38 -0500 asked a question SubscriberStatusCallback not called in talker node

SubscriberStatusCallback not called in listner node Hi, I am trying to implement the simple listener and talker as expla