-
Notifications
You must be signed in to change notification settings - Fork 429
Update realtime containers #1721
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
Conversation
f093e00 to
ba875d3
Compare
|
This pull request is in conflict. Could you fix it @christophfroehlich? |
|
This pull request is in conflict. Could you fix it @christophfroehlich? |
|
This pull request is in conflict. Could you fix it @christophfroehlich? |
saikishor
left a 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.
LGTM
| joints_command_subscriber_ = get_node()->create_subscription<CmdType>( | ||
| "~/commands", rclcpp::SystemDefaultsQoS(), | ||
| [this](const CmdType::SharedPtr msg) { rt_command_ptr_.writeFromNonRT(msg); }); | ||
| [this](const CmdType::SharedPtr msg) { rt_command_.set(*msg); }); |
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.
May be we should check here with std::all_of that all of the data elements are finite values
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 would be a behavior change right? maybe we can do that in a follow-up PR?
(cherry picked from commit a88bf0a) # Conflicts: # ackermann_steering_controller/test/test_ackermann_steering_controller.cpp # bicycle_steering_controller/test/test_bicycle_steering_controller.cpp # forward_command_controller/src/forward_controllers_base.cpp # pid_controller/src/pid_controller.cpp # pid_controller/test/test_pid_controller.cpp # pid_controller/test/test_pid_controller.hpp # tricycle_steering_controller/test/test_tricycle_steering_controller.cpp
Co-authored-by: Christoph Fröhlich <[email protected]>
Apply changes from the guidelines added with ros-controls/realtime_tools#347