-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from ethz-asl/feature/rename_planning_msgs
Rename planning messages, delete old ones
- Loading branch information
Showing
17 changed files
with
89 additions
and
127 deletions.
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
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
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 |
---|---|---|
@@ -1,34 +1,29 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(planning_msgs) | ||
|
||
find_package(catkin REQUIRED COMPONENTS geometry_msgs sensor_msgs message_generation octomap_msgs trajectory_msgs cmake_modules) | ||
find_package(catkin REQUIRED COMPONENTS geometry_msgs sensor_msgs message_generation mav_msgs trajectory_msgs cmake_modules) | ||
find_package(Eigen REQUIRED) | ||
|
||
include_directories(include ${catkin_INCLUDE_DIRS}) | ||
include_directories(${Eigen_INCLUDE_DIRS}) | ||
|
||
add_message_files( | ||
FILES | ||
OctomapScan.msg | ||
PlanningResponse.msg | ||
WayPointArray.msg | ||
WayPoint.msg | ||
WaypointType.msg | ||
GPSWayPoint.msg | ||
GPSWayPointArray.msg | ||
PointCloudWithPose.msg | ||
PolynomialSegment4D.msg | ||
PolynomialTrajectory4D.msg | ||
) | ||
|
||
add_service_files( | ||
FILES | ||
PlannerService.srv | ||
Octomap.srv | ||
) | ||
|
||
generate_messages( | ||
DEPENDENCIES geometry_msgs sensor_msgs octomap_msgs trajectory_msgs | ||
DEPENDENCIES geometry_msgs sensor_msgs mav_msgs trajectory_msgs | ||
) | ||
|
||
catkin_package( | ||
INCLUDE_DIRS include ${Eigen_INCLUDE_DIRS} | ||
CATKIN_DEPENDS message_runtime geometry_msgs sensor_msgs octomap_msgs trajectory_msgs | ||
CATKIN_DEPENDS message_runtime geometry_msgs sensor_msgs mav_msgs trajectory_msgs | ||
) |
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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 @@ | ||
Header header | ||
int32 num_coeffs # order of the polynomial + 1, should match size of x[] | ||
duration segment_time # duration of the segment | ||
float64[] x # coefficients for the x-axis, INCREASING order | ||
float64[] y # coefficients for the y-axis, INCREASING order | ||
float64[] z # coefficients for the z-axis, INCREASING order | ||
float64[] yaw # coefficients for the yaw, INCREASING order |
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,2 @@ | ||
Header header | ||
PolynomialSegment4D[] segments |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,37 +1,29 @@ | ||
<package> | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<name>planning_msgs</name> | ||
<version>1.0.0</version> | ||
<description>planning_msgs</description> | ||
<version>0.0.0</version> | ||
<description> | ||
Messages specific to MAV planning, especially polynomial planning. | ||
</description> | ||
|
||
<maintainer email="markus.achtelik_devel@mavt.ethz.ch">Markus Achtelik</maintainer> | ||
<maintainer email="helen.oleynikova@mavt.ethz.ch">Helen Oleynikova</maintainer> | ||
|
||
<author>Simon Lynen</author> | ||
<author>Markus Achtelik</author> | ||
<author>Pascal Gohl</author> | ||
<author>Sammy Omari</author> | ||
<author>Michael Burri</author> | ||
<author>Fadri Furrer</author> | ||
<author>Helen Oleynikova</author> | ||
|
||
<license>ASL 2.0</license> | ||
|
||
<url type="website">https://github.com/ethz-asl/mav_comm</url> | ||
<url type="bugtracker">https://github.com/ethz-asl/mav_comm/issues</url> | ||
|
||
<!-- Dependencies which this package needs to build itself. --> | ||
<buildtool_depend>catkin</buildtool_depend> | ||
|
||
<!-- Dependencies needed to compile this package. --> | ||
<build_depend>message_generation</build_depend> | ||
<build_depend>geometry_msgs</build_depend> | ||
<build_depend>sensor_msgs</build_depend> | ||
<build_depend>octomap_msgs</build_depend> | ||
<build_depend>trajectory_msgs</build_depend> | ||
<build_depend>cmake_modules</build_depend> | ||
|
||
<!-- Dependencies needed after this package is compiled. --> | ||
<run_depend>message_runtime</run_depend> | ||
<run_depend>geometry_msgs</run_depend> | ||
<run_depend>sensor_msgs</run_depend> | ||
<run_depend>octomap_msgs</run_depend> | ||
<run_depend>trajectory_msgs</run_depend> | ||
<depend>mav_msgs</depend> | ||
<depend>message_generation</depend> | ||
<depend>message_runtime</depend> | ||
<depend>trajectory_msgs</depend> | ||
<depend>geometry_msgs</depend> | ||
<depend>sensor_msgs</depend> | ||
</package> |
This file was deleted.
Oops, something went wrong.
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