-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added indigo and groovy separated version
- Loading branch information
Alessio Tonioni
committed
Nov 21, 2015
1 parent
a16ed7c
commit 90074d1
Showing
1,162 changed files
with
67,458 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(action_controller) | ||
|
||
if(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE) | ||
set(CMAKE_BUILD_TYPE Release) | ||
endif() | ||
|
||
find_package(Boost REQUIRED thread) | ||
|
||
include_directories(SYSTEM "msg_gen/cpp/include") | ||
|
||
find_package(catkin REQUIRED COMPONENTS | ||
moveit_core | ||
pluginlib | ||
actionlib | ||
roscpp | ||
trajectory_msgs | ||
actionlib_msgs | ||
std_msgs | ||
message_generation | ||
) | ||
|
||
include_directories(${catkin_INCLUDE_DIRS}) | ||
link_directories(${catkin_LIBRARY_DIRS}) | ||
|
||
add_message_files( | ||
FILES | ||
MultiDofFollowJointTrajectoryFeedback.msg | ||
MultiDofFollowJointTrajectoryGoal.msg | ||
MultiDofFollowJointTrajectoryResult.msg | ||
MultiDofFollowJointTrajectoryActionFeedback.msg | ||
MultiDofFollowJointTrajectoryActionGoal.msg | ||
MultiDofFollowJointTrajectoryActionResult.msg | ||
MultiDofFollowJointTrajectoryAction.msg | ||
) | ||
|
||
generate_messages( | ||
DEPENDENCIES | ||
std_msgs | ||
trajectory_msgs | ||
actionlib_msgs | ||
action_controller | ||
) | ||
|
||
catkin_package( | ||
LIBRARIES | ||
INCLUDE_DIRS | ||
DEPENDS | ||
CATKIN_DEPENDS message_runtime | ||
moveit_core | ||
) | ||
|
||
include_directories(include) | ||
|
||
# add_library(action_controller src/actionController.cpp) | ||
add_executable(action_controller src/actionController.cpp) | ||
target_link_libraries(action_controller ${catkin_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT}) | ||
|
||
|
||
#install(TARGETS action_controller LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Simple action controller to translate the trajectory produced from moveit plugin in cmd_vel for the hector quadrotor contreller. It interface itself with moveit plugin using a costum defined action: MultiDofFollowJointTrajectory.action |
17 changes: 17 additions & 0 deletions
17
ROS - Indigo/action_controller/action/MultiDofFollowJointTrajectory.action
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# The joint trajectory to follow | ||
moveit_msgs/MultiDOFJointTrajectory trajectory | ||
--- | ||
int32 error_code | ||
int32 SUCCESSFUL = 0 | ||
int32 INVALID_GOAL = -1 | ||
int32 INVALID_JOINTS = -2 | ||
int32 OLD_HEADER_TIMESTAMP = -3 | ||
int32 PATH_TOLERANCE_VIOLATED = -4 | ||
int32 GOAL_TOLERANCE_VIOLATED = -5 | ||
|
||
--- | ||
Header header | ||
string[] joint_names | ||
moveit_msgs/MultiDOFJointTrajectoryPoint desired | ||
moveit_msgs/MultiDOFJointTrajectoryPoint actual | ||
moveit_msgs/MultiDOFJointTrajectoryPoint error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
\mainpage | ||
\htmlinclude manifest.html | ||
|
||
\b action_controller | ||
|
||
<!-- | ||
Provide an overview of your package. | ||
--> | ||
|
||
--> | ||
|
||
|
||
*/ |
5 changes: 5 additions & 0 deletions
5
ROS - Indigo/action_controller/msg/MultiDofFollowJointTrajectoryAction.msg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ====== | ||
|
||
MultiDofFollowJointTrajectoryActionGoal action_goal | ||
MultiDofFollowJointTrajectoryActionResult action_result | ||
MultiDofFollowJointTrajectoryActionFeedback action_feedback |
5 changes: 5 additions & 0 deletions
5
ROS - Indigo/action_controller/msg/MultiDofFollowJointTrajectoryActionFeedback.msg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ====== | ||
|
||
Header header | ||
actionlib_msgs/GoalStatus status | ||
MultiDofFollowJointTrajectoryFeedback feedback |
5 changes: 5 additions & 0 deletions
5
ROS - Indigo/action_controller/msg/MultiDofFollowJointTrajectoryActionGoal.msg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ====== | ||
|
||
Header header | ||
actionlib_msgs/GoalID goal_id | ||
MultiDofFollowJointTrajectoryGoal goal |
5 changes: 5 additions & 0 deletions
5
ROS - Indigo/action_controller/msg/MultiDofFollowJointTrajectoryActionResult.msg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ====== | ||
|
||
Header header | ||
actionlib_msgs/GoalStatus status | ||
MultiDofFollowJointTrajectoryResult result |
7 changes: 7 additions & 0 deletions
7
ROS - Indigo/action_controller/msg/MultiDofFollowJointTrajectoryFeedback.msg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ====== | ||
Header header | ||
string[] joint_names | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint desired | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint actual | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint error | ||
|
3 changes: 3 additions & 0 deletions
3
ROS - Indigo/action_controller/msg/MultiDofFollowJointTrajectoryGoal.msg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ====== | ||
# The joint trajectory to follow | ||
trajectory_msgs/MultiDOFJointTrajectory trajectory |
9 changes: 9 additions & 0 deletions
9
ROS - Indigo/action_controller/msg/MultiDofFollowJointTrajectoryResult.msg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ====== | ||
int32 error_code | ||
int32 SUCCESSFUL = 0 | ||
int32 INVALID_GOAL = -1 | ||
int32 INVALID_JOINTS = -2 | ||
int32 OLD_HEADER_TIMESTAMP = -3 | ||
int32 PATH_TOLERANCE_VIOLATED = -4 | ||
int32 GOAL_TOLERANCE_VIOLATED = -5 | ||
|
Oops, something went wrong.