1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-27 16:54:15 +01:00

Coding style fixes

This commit is contained in:
Erik Gustavsson 2012-11-11 21:10:52 +01:00
parent 104c61a174
commit 04c194fa48

View File

@ -486,8 +486,12 @@ static void updateAttitude(AccelsData * accelsData, GyrosData * gyrosData)
// Account for filtered gravity vector magnitude
float grot_mag;
if(accel_filter_enabled) grot_mag = sqrtf(grot[0]*grot[0] + grot[1]*grot[1] + grot[2]*grot[2]);
else grot_mag = 1.0f;
if (accel_filter_enabled)
grot_mag = sqrtf(grot[0]*grot[0] + grot[1]*grot[1] + grot[2]*grot[2]);
else
grot_mag = 1.0f;
if (grot_mag < 1.0e-3f)
return;