Skip to content

Commit

Permalink
Updated version of OdometryWithAcceleration
Browse files Browse the repository at this point in the history
Following up ros/common_msgs#87
  • Loading branch information
tfoote committed Dec 20, 2018
1 parent 42b525e commit fd9fcc7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions proposed_aerial_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ add_message_files(
LinearAcceleration.msg
MavlinkAnnotatedWaypoints.msg
MavlinkWaypointParameters.msg
OdometryWithAcceleration.msg
UpperTriangularCovariance.msg
UpperTriangularCovariance3.msg
)
Expand Down
12 changes: 12 additions & 0 deletions proposed_aerial_msgs/msg/OdometryWithAcceleration.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This represents an estimate of a position, velocity, and acceleration in free space.
# The pose in this message should be specified in the coordinate frame given by header.frame_id.
# The velocity in this message should be specified in the coordinate frame given by the child_frame_id.
# The acceleration in this message should be specified in the coordinate frame given by the child_frame_id.
Header header
string child_frame_id
geometry_msgs/Pose pose
UpperTriangularCovariance pose_covariance
geometry_msgs/Twist velocity
UpperTriangularCovariance velocity_covariance
geometry_msgs/Twist acceleration
UpperTriangularCovariance acceleration_covariance

0 comments on commit fd9fcc7

Please sign in to comment.