Skip to content

Commit f73520d

Browse files
committed
add a new srv file
1 parent d5d3cfa commit f73520d

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ add_service_files(
9494
ExecuteAttachCollisionBox.srv
9595
ExecuteBinaryAction.srv
9696
ExecuteDetachCollision.srv
97+
ExecuteEllipticalTrajectory.srv
9798
ExecuteFrankaGripperGrasp.srv
9899
ExecuteGroupJointStates.srv
99100
ExecuteGroupNamedStates.srv

srv/ExecuteEllipticalTrajectory.srv

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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

0 commit comments

Comments
 (0)