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

Properly configure moveit controllers #60

Merged
merged 2 commits into from
Mar 7, 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
2 changes: 1 addition & 1 deletion abb_bringup/test/test_command_topics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ TEST_F(TaskPlanningFixture, ControllerTopicsTest)
// Define a map of the topics to check and their types
std::map<std::string, std::string> expected_topic_names_and_types = {
{ "/joint_trajectory_controller/joint_trajectory", "trajectory_msgs/msg/JointTrajectory" },
{ "/joint_trajectory_controller/state", "control_msgs/msg/JointTrajectoryControllerState" }
{ "/joint_trajectory_controller/controller_state", "control_msgs/msg/JointTrajectoryControllerState" }
};
for (const auto& [topic_name, topic_type] : expected_topic_names_and_types)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,22 @@ trajectory_execution:
allowed_execution_duration_scaling: 1.2
allowed_goal_duration_margin: 0.5
allowed_start_tolerance: 0.01
trajectory_duration_monitoring: true

moveit_controller_manager: moveit_simple_controller_manager/MoveItSimpleControllerManager

controller_names:
- joint_trajectory_controller
moveit_simple_controller_manager:
controller_names:
- joint_trajectory_controller

joint_trajectory_controller:
action_ns: follow_joint_trajectory
type: FollowJointTrajectory
default: true
joints:
- joint_1
- joint_2
- joint_3
- joint_4
- joint_5
- joint_6
joint_trajectory_controller:
action_ns: follow_joint_trajectory
type: FollowJointTrajectory
default: true
joints:
- joint_1
- joint_2
- joint_3
- joint_4
- joint_5
- joint_6
Loading