Skip to content

Commit

Permalink
Merge ad212aa into d58a6ce
Browse files Browse the repository at this point in the history
  • Loading branch information
ejalaa12 authored Aug 1, 2023
2 parents d58a6ce + ad212aa commit 7e2dea6
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions proto/gz/msgs/imu.proto
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,24 @@ option java_outer_classname = "IMUProtos";
import "gz/msgs/header.proto";
import "gz/msgs/vector3d.proto";
import "gz/msgs/quaternion.proto";
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;
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 7e2dea6

Please sign in to comment.