You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: moveit_py/src/moveit/moveit_ros/trajectory_execution_manager/trajectory_execution_manager.cpp
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ void initTrajectoryExecutionManager(py::module& m)
64
64
R"(
65
65
Make sure the active controllers are such that trajectories that actuate joints in the specified group can be executed.
66
66
67
-
If manage_controllers_ is false and the controllers that happen to be active do not cover the joints in the group to be actuated, this function fails.
67
+
If the 'moveit_manage_controllers' parameter is false and the controllers that happen to be active do not cover the joints in the group to be actuated, this function fails.
68
68
)")
69
69
70
70
.def("ensure_active_controllers_for_joints",
@@ -73,23 +73,23 @@ void initTrajectoryExecutionManager(py::module& m)
73
73
R"(
74
74
Make sure the active controllers are such that trajectories that actuate joints in the specified set can be executed.
75
75
76
-
If manage_controllers_ is false and the controllers that happen to be active do not cover the joints to be actuated, this function fails.
76
+
If the 'moveit_manage_controllers' parameter is false and the controllers that happen to be active do not cover the joints to be actuated, this function fails.
If manage_controllers_ is false and the controllers that happen to be active to not include the one specified as argument, this function fails.
84
+
If the 'moveit_manage_controllers' parameter is false and the controllers that happen to be active do not include the one specified as argument, this function fails.
Make sure a particular set of controllers are active.
91
91
92
-
If manage_controllers_ is false and the controllers that happen to be active to not include the ones specified as argument, this function fails.
92
+
If the 'moveit_manage_controllers' parameter is false and the controllers that happen to be active do not include the ones specified as argument, this function fails.
Copy file name to clipboardExpand all lines: moveit_ros/planning/trajectory_execution_manager/include/moveit/trajectory_execution_manager/trajectory_execution_manager.h
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -105,30 +105,30 @@ class MOVEIT_TRAJECTORY_EXECUTION_MANAGER_EXPORT TrajectoryExecutionManager
105
105
106
106
/** \brief Make sure the active controllers are such that trajectories that actuate joints in the specified group can
107
107
be executed.
108
-
\note If manage_controllers_ is false and the controllers that happen to be active do not cover the joints in the
109
-
group to be actuated, this function fails. */
108
+
\note If the 'moveit_manage_controllers' parameter is false and the controllers that happen to be active do not
109
+
cover the joints in the group to be actuated, this function fails. */
0 commit comments