Skip to content

Commit

Permalink
fix: required min. libfranka version
Browse files Browse the repository at this point in the history
  • Loading branch information
BarisYazici committed Jun 27, 2024
1 parent 9969c3f commit d3d0fb4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
15 changes: 7 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,18 @@

## 0.1.15 - 2024-06-21

Requires libfranka >= 0.13.4 and franka_description >= 0.3.0 requires ROS 2 Humble
Requires libfranka >= 0.13.2 and franka_description >= 0.3.0 requires ROS 2 Humble

* franka\_gazebo\_bringup: Released and supports joint position, velocity and effort commands
* franka\_ign\_ros2\_control: ROS 2 hardware interface for gazebo controller. Modified to add gravity torques for Franka robots.

## 0.1.14 - 2024-05-13

Requires libfranka >= 0.13.4, requires ROS 2 Humble
Requires libfranka >= 0.13.2, and franka_description >= 0.2.0 requires ROS 2 Humble

* add pinocchio dependency to franka_hardware and franka_gripper
* install pinocchio in .devcontainer
* feature: Added error recovery action to ros 2 node
* removed: hardcoded panda robot references
* devcontainer: install pinocchio dependency from ros-humble-pinocchio apt package
* feature: Added error recovery action to ROS 2 node
* removed: hard-coded panda robot references
* removed: franka_description package
* using the franka_description standalone package https://github.com/frankaemika/franka_description
* franka_hardware prefixes the robot_state and robot model state interfaces with the read robot name from the urdf.
Expand All @@ -23,8 +22,8 @@ Requires libfranka >= 0.13.4, requires ROS 2 Humble

Requires libfranka >= 0.13.2, requires ROS 2 Humble

* update libfranka dependency on devcontainer to 0.13.3(requires system image 5.5.0)
* fix .devcontainer typo
* update libfranka dependency in devcontainer to 0.13.3(requires system image 5.5.0)
* fix devcontainer typo

## 0.1.12 - 2024-01-12

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<description>
Gazebo joint interface for position, velocity and effort control.
The effort interface includes the gravity torques added to the commanded torques.
Supporting state interface reading for each joint; position, velocity and effort.
</description>
</class>
</library>
2 changes: 1 addition & 1 deletion franka_gripper/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ find_package(std_srvs REQUIRED)
find_package(sensor_msgs REQUIRED)
find_package(control_msgs REQUIRED)

find_package(Franka 0.13.3 REQUIRED)
find_package(Franka 0.13.2 REQUIRED)

add_library(gripper_server SHARED
src/gripper_action_server.cpp)
Expand Down
2 changes: 1 addition & 1 deletion franka_hardware/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ find_package(rclcpp_action REQUIRED)
find_package(franka_msgs REQUIRED)
find_package(hardware_interface REQUIRED)
find_package(pluginlib REQUIRED)
find_package(Franka 0.13.3 REQUIRED)
find_package(Franka 0.13.2 REQUIRED)
find_package(rclcpp_components REQUIRED)

add_library(franka_hardware SHARED
Expand Down

0 comments on commit d3d0fb4

Please sign in to comment.