Skip to content

Commit e491e00

Browse files
committed
RawiMU: fixed units on accel/gyro integral
actual implementations do use an integral
1 parent af223d9 commit e491e00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

uavcan/equipment/ahrs/1003.RawIMU.uavcan

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ float32 integration_interval
2424
# 3. angular velocity around Z (yaw rate)
2525
#
2626
float16[3] rate_gyro_latest # Latest sample, radian/second
27-
float32[3] rate_gyro_integral # Integrated samples, radian/second
27+
float32[3] rate_gyro_integral # Integrated samples, radian
2828

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

3939
#
4040
# Covariance matrix. The diagonal entries are ordered as follows:

0 commit comments

Comments
 (0)