-
Notifications
You must be signed in to change notification settings - Fork 331
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switching to example_interfaces #674
base: rolling
Are you sure you want to change the base?
Conversation
Signed-off-by: CursedRock17 <[email protected]>
Signed-off-by: CursedRock17 <[email protected]>
Signed-off-by: CursedRock17 <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm with green CI
@@ -54,16 +54,16 @@ class Talker : public rclcpp::Node | |||
// rclcpp::KeepAll{} if the user wishes. | |||
// (rclcpp::KeepLast(7) -> rclcpp::KeepAll() fails to compile) | |||
rclcpp::QoS qos(rclcpp::KeepLast{7}); | |||
pub_ = this->create_publisher<std_msgs::msg::String>("chatter", qos); | |||
pub_ = this->create_publisher<example_interfaces::msg::String>("chatter", qos); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should resolve ros2/examples#377 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This pull request solves the
demos
side of this ros2_documentation issue in which we switch fromstd_msgs
toexample_interfaces
because std_msgs was deprecated about 4 years ago.