mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-26 01:17:51 +08:00
sensors/vehicle_imu: replace coning metric with actual integrator coning correction (averaged)
- this saves a relatively expensive higih rate cross product and gives better visibility into what's actually happening internally
This commit is contained in:
@@ -14,9 +14,9 @@ float32 gyro_rate_hz
|
||||
float32 accel_raw_rate_hz # full raw sensor sample rate (Hz)
|
||||
float32 gyro_raw_rate_hz # full raw sensor sample rate (Hz)
|
||||
|
||||
float32 accel_vibration_metric # high frequency vibration level in the IMU delta velocity data (m/s)
|
||||
float32 gyro_vibration_metric # high frequency vibration level in the IMU delta velocity data (m/s)
|
||||
float32 gyro_coning_vibration # Level of coning vibration in the IMU delta angles (rad^2)
|
||||
float32 accel_vibration_metric # high frequency vibration level in the accelerometer data (m/s/s)
|
||||
float32 gyro_vibration_metric # high frequency vibration level in the gyro data (rad/s)
|
||||
float32 delta_angle_coning_metric # average IMU delta angle coning correction (rad^2)
|
||||
|
||||
float32[3] mean_accel # average accelerometer readings since last publication
|
||||
float32[3] mean_gyro # average gyroscope readings since last publication
|
||||
|
||||
Reference in New Issue
Block a user