Skip to content

Commit fd9fcc7

Browse files
committed
Updated version of OdometryWithAcceleration
Following up ros/common_msgs#87
1 parent 42b525e commit fd9fcc7

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

proposed_aerial_msgs/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ add_message_files(
5757
LinearAcceleration.msg
5858
MavlinkAnnotatedWaypoints.msg
5959
MavlinkWaypointParameters.msg
60+
OdometryWithAcceleration.msg
6061
UpperTriangularCovariance.msg
6162
UpperTriangularCovariance3.msg
6263
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This represents an estimate of a position, velocity, and acceleration in free space.
2+
# The pose in this message should be specified in the coordinate frame given by header.frame_id.
3+
# The velocity in this message should be specified in the coordinate frame given by the child_frame_id.
4+
# The acceleration in this message should be specified in the coordinate frame given by the child_frame_id.
5+
Header header
6+
string child_frame_id
7+
geometry_msgs/Pose pose
8+
UpperTriangularCovariance pose_covariance
9+
geometry_msgs/Twist velocity
10+
UpperTriangularCovariance velocity_covariance
11+
geometry_msgs/Twist acceleration
12+
UpperTriangularCovariance acceleration_covariance

0 commit comments

Comments
 (0)