Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add covariance fields to imu message #333

Merged
merged 4 commits into from
Aug 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}