Skip to content
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
541 changes: 0 additions & 541 deletions RELEASING.md

This file was deleted.

5 changes: 2 additions & 3 deletions smacc2/include/smacc2/client_behaviors/cb_call_service.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,13 @@ class CbServiceCall : public smacc2::SmaccAsyncClientBehavior

std::shared_future<std::shared_ptr<typename ServiceType::Response>> resultFuture_;

typename std::shared_ptr<typename ServiceType::Response> result_;
std::chrono::milliseconds pollRate_;

protected:
//rclcpp::NodeHandle nh_;
std::shared_ptr<rclcpp::Client<ServiceType>> client_;
std::string serviceName_;
std::shared_ptr<typename ServiceType::Request> request_;
typename std::shared_ptr<typename ServiceType::Response> result_;
std::chrono::milliseconds pollRate_;

virtual void onServiceResponse(std::shared_ptr<typename ServiceType::Response> /*result*/)
{
Expand Down
3 changes: 1 addition & 2 deletions smacc2/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@

<author email="pablo@ibrobotics.com">Pablo Inigo Blasco</author>
<author email="brett@robosoft.ai">Brett Aldrich</author>
<maintainer email="pablo@ibrobotics.com">Pablo Inigo Blasco</maintainer>
<maintainer email="denis@stoglrobotics.de">Denis Stogl</maintainer>
<maintainer email="brett@robosoft.ai">Brett Aldrich</maintainer>
<license>Apache-2.0</license>

<buildtool_depend>ament_cmake</buildtool_depend>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ void CbPositionControlFreeSpace::onEntry()
geometry_msgs::msg::Pose currentPose = pose->toPoseMsg();

rclcpp::Rate loop_rate(10);
double countAngle = 0;
auto prevyaw = tf2::getYaw(currentPose.orientation);

// PID controller gains (proportional, integral, and derivative)
double kp_linear = 0.5;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ void CbSpiralMotion::onEntry()
cmd_vel.linear.x = maxLinearVelocity;
}

float signVal = (cmd_vel.angular.z >= 0.0f) ? 1.0f : -1.0f;
// cmd_vel.angular.z -= signVal * angularAcceleration * dt;

float ellapsedTimeFactor = current_time.seconds() / spiralMotionDuration.seconds();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ void CpWaypointNavigatorBase::loadWayPointsFromFile(std::string filepath)

if (wp_node != NULL)
{
for (int64_t i = 0; i < wp_node->size(); ++i)
for (std::size_t i = 0; i < wp_node->size(); ++i)
{
// Parse waypoint entries on YAML
geometry_msgs::msg::Pose wp;
Expand Down Expand Up @@ -551,7 +551,7 @@ void CpWaypointNavigatorBase::loadWayPointsFromFile2(std::string filepath)

if (wp_node != NULL)
{
for (int64_t i = 0; i < wp_node->size(); ++i)
for (std::size_t i = 0; i < wp_node->size(); ++i)
{
// Parse waypoint entries on YAML
geometry_msgs::msg::Pose wp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ def generate_launch_description():
Node(
package="cl_keyboard",
executable="keyboard_server_node.py",
name="cl_keyboard",
name="keyboard_server_node",
output="screen",
prefix="xterm -hold -e",
prefix="konsole --hold -p tabtitle='Keyboard Server' -e",
arguments=["--ros-args", "--log-level", "INFO"],
),
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>sm_cl_keyboard_unit_test_1</name>
<version>3.0.1</version>
<description>The sm_cl_keyboard_unit_test_1 package</description>
<maintainer email="pablo@ibrobotics.com">Pablo Inigo Blasco</maintainer>
<maintainer email="brett@robosoft.ai">Brett Aldrich</maintainer>
<license>Apache-2.0</license>

<buildtool_depend>ament_cmake</buildtool_depend>
Expand All @@ -13,7 +13,7 @@
<depend>cl_keyboard</depend>
<depend>smacc2</depend>

<exec_depend>xterm</exec_depend>
<exec_depend>konsole</exec_depend>

<export>
<build_type>ament_cmake</build_type>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@
<name>sm_cl_ros2_timer_unit_test_1</name>
<version>3.0.1</version>
<description>The sm_cl_ros2_timer_unit_test_1 package</description>
<maintainer email="pablo@ibrobotics.com">Pablo Inigo Blasco</maintainer>
<maintainer email="brett@robosoft.ai">Brett Aldrich</maintainer>
<license>Apache-2.0</license>

<buildtool_depend>ament_cmake</buildtool_depend>

<depend>cl_ros2_timer</depend>
<depend>smacc2</depend>

<exec_depend>xterm</exec_depend>

<export>
<build_type>ament_cmake</build_type>
</export>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
<name>sm_panda_cl_moveit2z_cb_inventory</name>
<version>3.0.1</version>
<description>The sm_panda_cl_moveit2z_cb_inventory package</description>
<maintainer email="smacc2@smacc2.cool">SMACC2 is cool</maintainer>
<maintainer email="brett@robosoft.ai">Brett Aldrich</maintainer>
<license>Apache-2.0</license>
<license>MyLicense</license>

<buildtool_depend>ament_cmake</buildtool_depend>

Expand All @@ -31,8 +30,8 @@
<depend>rclcpp</depend>
<depend>yaml-cpp</depend>


<exec_depend>joint_trajectory_controller</exec_depend>
<exec_depend>konsole</exec_depend>

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