mirror of
https://github.com/iNavFlight/inav.git
synced 2025-07-26 09:45:33 +03:00
Fixed imuMeasuredRotationBF.A scaling
This commit is contained in:
parent
1b4c009a3d
commit
9a0dcf8ae3
1 changed files with 1 additions and 1 deletions
|
@ -549,7 +549,7 @@ static void imuUpdateMeasuredRotationRate(void)
|
|||
imuAccumulatedRateTime = 0.0f;
|
||||
#else
|
||||
for (axis = 0; axis < 3; axis++) {
|
||||
imuMeasuredRotationBF.A[axis] = gyro.gyroADCf[axis];
|
||||
imuMeasuredRotationBF.A[axis] = gyro.gyroADCf[axis] * gyroScale;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue