Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RawiMU: fixed units on accel/gyro integral #62

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions uavcan/equipment/ahrs/1003.RawIMU.uavcan
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ float32 integration_interval
# 3. angular velocity around Z (yaw rate)
#
float16[3] rate_gyro_latest # Latest sample, radian/second
float32[3] rate_gyro_integral # Integrated samples, radian/second
float32[3] rate_gyro_integral # Integrated samples, radian

#
# Linear acceleration samples in meter/(second^2).
Expand All @@ -34,7 +34,7 @@ float32[3] rate_gyro_integral # Integrated samples, radian/second
# 3. linear acceleration along Z (down positive)
#
float16[3] accelerometer_latest # Latest sample, meter/(second^2)
float32[3] accelerometer_integral # Integrated samples, meter/(second^2)
float32[3] accelerometer_integral # Integrated samples, meter/second

#
# Covariance matrix. The diagonal entries are ordered as follows:
Expand Down