Skip to content

Commit

Permalink
re-order msg fields and doc to stick to ros convention
Browse files Browse the repository at this point in the history
Signed-off-by: Alaa El Jawad <[email protected]>
  • Loading branch information
ejalaa12 committed May 31, 2023
1 parent d1ae152 commit 0fc99bb
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions proto/gz/msgs/imu.proto
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,19 @@ import "gz/msgs/float_v.proto";
message IMU
{
/// \brief Optional header data
Header header = 1;
Header header = 1;

string entity_name = 2;

string entity_name = 2;
Quaternion orientation = 3;
Vector3d angular_velocity = 4;
Vector3d linear_acceleration = 5;
Float_V orientation_covariance = 6;
Float_V angular_velocity_covariance = 7;
Quaternion orientation = 3;
/// Row major about x, y, z
Float_V orientation_covariance = 4;

Vector3d angular_velocity = 5;
/// Row major about x, y, z
Float_V angular_velocity_covariance = 6;

Vector3d linear_acceleration = 7;
/// Row major about x, y, z
Float_V linear_acceleration_covariance = 8;
}

0 comments on commit 0fc99bb

Please sign in to comment.