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

dual arm demo pr #555

Merged
merged 3 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions smacc2_client_library/moveit2z_client/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package moveit2z_client
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.3.16 (2023-07-16)
-------------------
* Merge branch 'humble' of https://github.com/robosoft-ai/SMACC2 into humble
* Brettpac branch (`#518 <https://github.com/robosoft-ai/SMACC2/issues/518>`_)
* Attempt to fix weird issue with ros buildfarm
* More on this buildfarm issue
---------
Co-authored-by: brettpac <[email protected]>
Co-authored-by: brettpac <[email protected]>
* Contributors: brettpac, pabloinigoblasco

2.3.6 (2023-03-12)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ struct CbLoadWaypointsFile : public smacc2::SmaccAsyncClientBehavior
public:
CbLoadWaypointsFile(std::string filepath);

CbLoadWaypointsFile(std::string parameter_name, std::string packagenamesapce);
CbLoadWaypointsFile(std::string parameter_name, std::string packagenamespace);

void onEntry() override;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ namespace cl_nav2z

CbLoadWaypointsFile::CbLoadWaypointsFile(std::string filepath) : filepath_(filepath) {}

CbLoadWaypointsFile::CbLoadWaypointsFile(std::string parameter_name, std::string packagenamesapce)
: parameterName_(parameter_name), packageNamespace_(packagenamesapce)
CbLoadWaypointsFile::CbLoadWaypointsFile(std::string parameter_name, std::string packagenamespace)
: parameterName_(parameter_name), packageNamespace_(packagenamespace)
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
<!-- TODO(#40): Package not available in ROS 2, find equivalent when migrating launch files
<exec_depend>topic_tools</exec_depend>
-->
<!-- This package is referenced in the warehouse launch files, but does not build out of the box at the moment.
Commented the dependency until this works. -->
<!-- <exec_depend>warehouse_ros_mongo</exec_depend> -->

<export>
<build_type>ament_cmake</build_type>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
-->
<!-- This package is referenced in the warehouse launch files, but does not build out of the box at the moment.
Commented the dependency until this works. -->
<!-- <exec_depend>warehouse_ros_mongo</exec_depend> -->

<export>
<build_type>ament_cmake</build_type>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace cl_moveit2z
class CbMoveSynchronizedLinkGoals : public smacc2::SmaccAsyncClientBehavior
{
public:
CbMoveSynchronizedLinkGoals(const std::vector<geometry_msgs::msg::PoseStamped>& /*poses*/, const std::vector<std::string>& /*names*/)
CbMoveSynchronizedLinkGoals(const std::vector<geometry_msgs::msg::PoseStamped>& poses, const std::vector<std::string>& names)
{

}
Expand Down Expand Up @@ -66,7 +66,7 @@ class CbMoveSynchronizedLinkGoals : public smacc2::SmaccAsyncClientBehavior
}

private:
void onMessageReceived(const sensor_msgs::msg::JointState & /*msg*/)
void onMessageReceived(const sensor_msgs::msg::JointState & msg)
{
postSuccessEvent();
mutex.unlock();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class CbWaitJointState : public smacc2::SmaccAsyncClientBehavior
}

private:
void onMessageReceived(const sensor_msgs::msg::JointState & /*msg*/)
void onMessageReceived(const sensor_msgs::msg::JointState & msg)
{
RCLCPP_INFO(getLogger(), "CbWaitJointState::onMessageReceived, posting event");
postSuccessEvent();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<depend>smacc2</depend>
<depend>moveit2z_client</depend>
<depend>controller_manager</depend>
<!-- <depend>warehouse_ros_mongo</depend> -->
<depend>moveit_configs_utils</depend>
<exec_depend>moveit_resources_panda_description</exec_depend>

Expand Down
Loading