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

How does ROS2 select the default QoS profile ?

asked 2018-07-25 06:37:44 -0500

aks gravatar image

I have a ROS2 based python code, which mentions nothing about the QoS Settings. I assume that it must be taking some default profile.

How can I view this default profile ? I mean where is the source of this profile ? Is it xml based ? Can I also edit it ?

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
2

answered 2018-07-25 07:37:54 -0500

dhood gravatar image

The defaults are defined here in rmw, and are described here. The default profiles are wrapped accordingly in rclpy (example), or you can customise the QoS settings like this. Some RMW implementations support xml file configuration in which case the rmw_qos_profile_system_default profile can be used to pass through to that configuration.

edit flag offensive delete link more

Comments

Thanks for the quick explanation @dhood. One question : If nothing at all is mentioned in the code(about QoS settings), e.g. talker.py, does it always use the default QoS or does it mean that it doesnt use any QoS in this case ?

aks gravatar image aks  ( 2018-07-25 07:48:42 -0500 )edit

without it being specified, pub/sub will use the profile rmw_qos_profile_default, services will use rmw_qos_profile_services_default, etc.

dhood gravatar image dhood  ( 2018-07-25 15:59:17 -0500 )edit

which doers rviz use? I am assuming rmw_qos_profile_default, I have a lidar for example where the points are invisible unless i manually change the QoS to best effort.

morten gravatar image morten  ( 2021-10-22 09:16:20 -0500 )edit
1

answered 2021-11-18 12:54:44 -0500

AndyZe gravatar image

For those who are lazy like myself, plus it's not really covered in the tutorials, here's how you specify the QoS for a topic subscription.

  twist_stamped_sub_ =
      node_->create_subscription<geometry_msgs::msg::TwistStamped>(parameters_->cartesian_command_in_topic,
                                                                   rclcpp::SystemDefaultsQoS(),
                                                                   std::bind(&ServoCalcs::twistStampedCB, this, _1));
edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2018-07-25 06:37:44 -0500

Seen: 4,385 times

Last updated: Nov 18 '21