Skip to content

Commit

Permalink
Add missing depencency of tf2_eigen in ROS2 version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kailin committed Mar 14, 2023
1 parent d4dd798 commit f14f2ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ The driver is designed to listen on a TCP or Serial port for the [_Fixposition A
## Changelogs

_For questions about compatibility, please contact Fixpositions Support [email protected]_

- [6.0.2](https://github.com/fixposition/fixposition_driver/releases/tag/6.0.2)
- Add missing depencency of `tf2_eigen` in `fixposition_driver_ros2/CMakeList.txt`
- [6.0.1](https://github.com/fixposition/fixposition_driver/releases/tag/6.0.1)
- Adapted to be compatible with updated Fixposition message definitions
- **Compatible with Vision-RTK 2 software released after 09.03.2023**
Expand Down
3 changes: 2 additions & 1 deletion fixposition_driver_ros2/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ find_package(rosidl_default_generators REQUIRED)
find_package(rclcpp REQUIRED)
find_package(tf2 REQUIRED)
find_package(tf2_ros REQUIRED)
find_package(tf2_eigen REQUIRED)
find_package(fixposition_gnss_tf REQUIRED)
find_package(fixposition_driver_lib REQUIRED)

Expand Down Expand Up @@ -79,7 +80,7 @@ install(DIRECTORY
"launch"
DESTINATION share/${PROJECT_NAME}/
)
ament_target_dependencies(${PROJECT_NAME}_exec rclcpp std_msgs nav_msgs geometry_msgs sensor_msgs tf2_ros fixposition_gnss_tf fixposition_driver_lib)
ament_target_dependencies(${PROJECT_NAME}_exec rclcpp std_msgs nav_msgs geometry_msgs sensor_msgs tf2_ros tf2_eigen fixposition_gnss_tf fixposition_driver_lib)

# define ament package for this project
ament_package()

0 comments on commit f14f2ca

Please sign in to comment.