mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
- checked register mechanism and simple watchdog
- driver checks for errors gradually and can reconfigure itself
- respect IMU_GYRO_RATEMAX at the driver level
- fixed sensor INT16_MIN and INT16_MAX handling (y & z axis are flipped before publishing)
- increased sensor_gyro_fifo max size (enables running the driver much slower, but still transferring all raw data)
- PX4Accelerometer/PX4Gyroscope remove unnecessary memsets
18 lines
421 B
Plaintext
18 lines
421 B
Plaintext
uint64 timestamp # time since system start (microseconds)
|
|
|
|
uint32 device_id # unique device ID for the sensor that does not change between power cycles
|
|
|
|
uint64 error_count
|
|
|
|
float32 temperature
|
|
|
|
uint8 rotation
|
|
|
|
uint32[3] clipping # clipping per axis
|
|
|
|
uint16 measure_rate_hz
|
|
|
|
float32 full_scale_range
|
|
|
|
float32 vibration_metric # high frequency vibration level in the IMU delta velocity data (m/s)
|