File tree 2 files changed +19
-0
lines changed
2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ add_service_files(
94
94
ExecuteAttachCollisionBox.srv
95
95
ExecuteBinaryAction.srv
96
96
ExecuteDetachCollision.srv
97
+ ExecuteEllipticalTrajectory.srv
97
98
ExecuteFrankaGripperGrasp.srv
98
99
ExecuteGroupJointStates.srv
99
100
ExecuteGroupNamedStates.srv
Original file line number Diff line number Diff line change
1
+ # Execute moving a robot with a target elliptical trajectory
2
+
3
+ # Requests
4
+ # radius_major: the major radius for the elliptical trajectory
5
+ # radius_minor: the minor radius for the elliptical trajectory
6
+ # vel_max: max velocity of the trajectory
7
+ # acceleration_time: acceleration time for the trajectory
8
+ # run_time: the duration of the trajectory
9
+
10
+ float64 radius_major
11
+ float64 radius_minor
12
+ float64 vel_max
13
+ float64 acceleration_time
14
+ float64 run_time
15
+ ---
16
+ uint8 SUCCEEDED=0
17
+ uint8 FAILED=1
18
+ uint8 result_status
You can’t perform that action at this time.
0 commit comments