2020-09-06 23:06:13 -03:00
|
|
|
#
|
|
|
|
# Sensor check metrics. This will be zero for a sensor that's primary or unpopulated.
|
|
|
|
#
|
|
|
|
uint64 timestamp # time since system start (microseconds)
|
|
|
|
|
|
|
|
uint32 accel_device_id_primary # current primary accel device id for reference
|
|
|
|
|
2020-10-27 11:56:11 -03:00
|
|
|
uint32[4] accel_device_ids
|
2020-12-15 04:18:05 -04:00
|
|
|
float32[4] accel_inconsistency_m_s_s # magnitude of acceleration difference between IMU instance and mean in m/s^2.
|
2020-10-27 11:56:11 -03:00
|
|
|
bool[4] accel_healthy
|
2021-07-30 10:54:19 -03:00
|
|
|
uint8[4] accel_priority
|
2020-09-06 23:06:13 -03:00
|
|
|
|
|
|
|
uint32 gyro_device_id_primary # current primary gyro device id for reference
|
|
|
|
|
2020-10-27 11:56:11 -03:00
|
|
|
uint32[4] gyro_device_ids
|
|
|
|
float32[4] gyro_inconsistency_rad_s # magnitude of angular rate difference between IMU instance and mean in (rad/s).
|
|
|
|
bool[4] gyro_healthy
|
2021-07-30 10:54:19 -03:00
|
|
|
uint8[4] gyro_priority
|