mirror of https://github.com/ArduPilot/ardupilot
DCM: fixed an uninitialised variable warning
This commit is contained in:
parent
d8234882d4
commit
c73c55aa90
|
@ -367,7 +367,7 @@ AP_DCM::drift_correction(void)
|
||||||
float integrator_magnitude;
|
float integrator_magnitude;
|
||||||
Vector3f accel;
|
Vector3f accel;
|
||||||
Vector3f error;
|
Vector3f error;
|
||||||
float error_norm;
|
float error_norm = 0;
|
||||||
const float gravity_squared = (9.80665*9.80665);
|
const float gravity_squared = (9.80665*9.80665);
|
||||||
|
|
||||||
accel = _accel_vector;
|
accel = _accel_vector;
|
||||||
|
|
Loading…
Reference in New Issue