Skip to content

Commit

Permalink
dual arm demo pr
Browse files Browse the repository at this point in the history
  • Loading branch information
brettpac committed Jul 30, 2024
1 parent da09129 commit 9616e6a
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 203 deletions.
13 changes: 0 additions & 13 deletions smacc2_client_library/moveit2z_client/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,6 @@
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]>
* Contributors: brettpac, pabloinigoblasco

2.3.6 (2023-03-12)
------------------

1.22.1 (2022-11-09)
-------------------
* pre-release
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include <mutex>
#include <thread>

namespace cl_moveit2z
namespace cl_move_base_z
{
struct TfPoseTrack
{
Expand Down Expand Up @@ -96,4 +96,4 @@ class CpTFListener : public smacc2::ISmaccComponent, public smacc2::ISmaccUpdata
std::mutex m_mutex_;
std::list<std::shared_ptr<TfPoseTrack>> poseTracks_;
};
} // namespace cl_moveit2z
} // namespace cl_move_base_z
2 changes: 1 addition & 1 deletion smacc2_client_library/moveit2z_client/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>moveit2z_client</name>
<version>2.3.18</version>
<version>2.3.1</version>

<description>The moveit2z_client package</description>
<maintainer email="[email protected]">Pablo Iñigo Blasco</maintainer>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="3">
<name>panda_arm_1_moveit_config</name>
<version>2.3.18</version>
<version>2.0.4</version>
<description>
<p>
MoveIt Resources for testing: Franka Emika Panda
Expand Down 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

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="3">
<name>panda_arm_2_moveit_config</name>
<version>2.3.18</version>
<version>2.0.4</version>
<description>
<p>
MoveIt Resources for testing: Franka Emika Panda
Expand Down 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 @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>sm_multi_panda_sim</name>
<version>2.3.18</version>
<version>0.0.0</version>
<description>The sm_multi_panda_sim package</description>
<maintainer email="[email protected]">SMACC2 is cool</maintainer>
<license>Apache-2.0</license>
Expand All @@ -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

0 comments on commit 9616e6a

Please sign in to comment.