How to reduce the number of topics when running a ros 2 application #5296
Unanswered
Syamkamalnadhc
asked this question in
Q&A
Replies: 1 comment
-
Hi @Syamkamalnadhc, thanks for using Fast DDS.
They are not necessary, but useful. Check their usage in this ROS 2 documentation section.
You should include the following C++ snippet in your application code. rclcpp::NodeOptions options;
options.start_parameter_services(false);
options.start_parameter_event_publisher(false);
Node("example_node", options);
Please, refer to the ROS 2 parameters documentation. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I run a simple single publisher ROS2-Humble application.
I Enabled FastDDS info logs and observed the below topics (other than the topic given in application for communication).
Queries
Beta Was this translation helpful? Give feedback.
All reactions