Skip to content
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

[LifecycleManagerClient] clean set_initial_pose and navigate_to_pose #4346

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -84,23 +84,6 @@ class LifecycleManagerClient
*/
SystemStatus is_active(const std::chrono::nanoseconds timeout = std::chrono::nanoseconds(-1));

// A couple convenience methods to facilitate scripting tests
/**
* @brief Set initial pose with covariance
* @param x X position
* @param y Y position
* @param theta orientation
*/
void set_initial_pose(double x, double y, double theta);
/**
* @brief Send goal pose to NavigationToPose action server
* @param x X position
* @param y Y position
* @param theta orientation
* @return true or false
*/
bool navigate_to_pose(double x, double y, double theta);

protected:
using ManageLifecycleNodes = nav2_msgs::srv::ManageLifecycleNodes;

Expand Down
Loading