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

Add missing xs modules dependencies #69

Merged
merged 1 commit into from
May 15, 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
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@

import copy

from rclpy.callback_groups import ReentrantCallbackGroup
from threading import Lock
from typing import (
Dict,
Expand All @@ -56,6 +55,7 @@
create_interbotix_global_node,
)
import rclpy
from rclpy.callback_groups import ReentrantCallbackGroup
from rclpy.duration import Duration
from rclpy.logging import LoggingSeverity, set_logger_level
from sensor_msgs.msg import JointState
Expand Down
20 changes: 17 additions & 3 deletions interbotix_xs_toolbox/interbotix_xs_modules/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,27 @@
<license>BSD-3-Clause</license>
<author email="[email protected]">Solomon Wiznitzer</author>

<exec_depend>interbotix_xs_msgs</exec_depend>
<exec_depend>action_msgs</exec_depend>
<exec_depend>builtin_interfaces</exec_depend>
<exec_depend>geometry_msgs</exec_depend>
<exec_depend>interbotix_common_modules</exec_depend>
<exec_depend>interbotix_common_modules</exec_depend>
<!-- <exec_depend>interbotix_slate_msgs</exec_depend> -->
<exec_depend>interbotix_xs_msgs</exec_depend>
<exec_depend>interbotix_xs_sdk</exec_depend>
<exec_depend>tf_transformations</exec_depend>
<!-- <exec_depend>irobot_create_msgs</exec_depend> -->
<!-- <exec_depend>kobuki_ros_interfaces</exec_depend> -->
<exec_depend>launch</exec_depend>
<exec_depend>launch_ros</exec_depend>
<exec_depend>launch</exec_depend>
<exec_depend>nav_msgs</exec_depend>
<exec_depend>nav2_msgs</exec_depend>
<exec_depend>rclpy</exec_depend>
<exec_depend>rclpy</exec_depend>
<exec_depend>rclpy</exec_depend>
<exec_depend>sensor_msgs</exec_depend>
<exec_depend>std_msgs</exec_depend>
<exec_depend>tf_transformations</exec_depend>
<exec_depend>trajectory_msgs</exec_depend>
<exec_depend>xacro</exec_depend>

<test_depend>ament_lint_auto</test_depend>
Expand Down
Loading