Skip to content
5 changes: 5 additions & 0 deletions protobuf_definitions/telemetry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,11 @@ message Imu2Tel {
Imu imu = 1; // Raw IMU data.
}

// Raw IMU data from high precision IMU
message ImuHpTel {
Imu imu = 1;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add // Raw IMU data. to make it consistent with the others, maybe?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes
Also add a comment that there is no Magnetometer in contrast to the other IMUs?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We typically do not have product names in the message definitions, as we might try another IMU sometime in the future. So maybe it's better to keep ImuHpTel or ImuPerformanceTel and CalibratedPerformanceImuTel? Then we can add Adis in the comments, because that is easier to change later. @haavardsyslak

}

// Medusa gamma ray sensor spectrometer data.
message MedusaSpectrometerDataTel {
MedusaSpectrometerData data = 1; // Medusa gamma ray sensor spectrometer data.
Expand Down