mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-30 09:54:06 +08:00
- voting is now at a central place instead of duplicated within the
estimators
-> this also means that estimators that did not do voting so far,
now have voting, like ekf2
- estimators requiring more than that can still subscribe to the raw
sensors
- allows sensors_combined to be 3 times smaller
- reduces logger, memcpy (cache) & RAM overhead
- all modules requiring only 1 or 2 sensor values now automatically get
the voted result
- this also adds voting to baro
23 lines
891 B
Plaintext
23 lines
891 B
Plaintext
#
|
|
# Sensor readings in SI-unit form.
|
|
#
|
|
# These fields are scaled and offset-compensated where possible and do not
|
|
# change with board revisions and sensor updates.
|
|
#
|
|
|
|
# gyro timstamp is equal to the timestamp of the message
|
|
float32[3] gyro_integral_rad # delta angle in the NED body frame in rad in the integration time frame
|
|
uint64 gyro_integral_dt # delta time for gyro integral in us
|
|
|
|
uint64 accelerometer_timestamp # Accelerometer timestamp
|
|
float32[3] accelerometer_integral_m_s # velocity in NED body frame, in m/s^2
|
|
uint64 accelerometer_integral_dt # delta time for accel integral in us
|
|
|
|
uint64 magnetometer_timestamp # Magnetometer timestamp
|
|
float32[3] magnetometer_ga # Magnetic field in NED body frame, in Gauss
|
|
|
|
uint64 baro_timestamp # Barometer timestamp
|
|
float32 baro_alt_meter # Altitude, already temp. comp.
|
|
float32 baro_temp_celcius # Temperature in degrees celsius
|
|
|