2016-01-28 06:52:39 -04:00
/****************************************************************************
*
* Copyright ( c ) 2015 Estimation and Control Library ( ECL ) . All rights reserved .
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions
* are met :
*
* 1. Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
* 2. Redistributions in binary form must reproduce the above copyright
* notice , this list of conditions and the following disclaimer in
* the documentation and / or other materials provided with the
* distribution .
* 3. Neither the name ECL nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission .
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* " AS IS " AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT
* LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT ,
* INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING ,
* BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS
* OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT
* LIABILITY , OR TORT ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE , EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE .
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* @ file control . cpp
* Control functions for ekf attitude and position estimator .
*
* @ author Paul Riseborough < p_riseborough @ live . com . au >
*
*/
# include "ekf.h"
void Ekf : : controlFusionModes ( )
{
2016-04-05 10:14:04 -03:00
// Store the status to enable change detection
_control_status_prev . value = _control_status . value ;
2016-01-31 04:01:44 -04:00
// Determine the vehicle status
calculateVehicleStatus ( ) ;
2016-02-11 23:27:25 -04:00
// Get the magnetic declination
calcMagDeclination ( ) ;
2016-05-03 07:59:49 -03:00
// Once the angular uncertainty has reduced sufficiently, initialise the yaw and magnetic field states
float total_angle_variance = P [ 0 ] [ 0 ] + P [ 1 ] [ 1 ] + P [ 2 ] [ 2 ] + P [ 3 ] [ 3 ] ;
2016-05-04 01:46:20 -03:00
if ( total_angle_variance < 0.002f & & ! _control_status . flags . tilt_align ) {
2016-03-07 05:31:19 -04:00
_control_status . flags . tilt_align = true ;
_control_status . flags . yaw_align = resetMagHeading ( _mag_sample_delayed . mag ) ;
}
2016-01-31 04:01:44 -04:00
// optical flow fusion mode selection logic
2016-03-07 05:31:19 -04:00
// to start using optical flow data we need angular alignment complete, and fresh optical flow and height above terrain data
if ( ( _params . fusion_mode & MASK_USE_OF ) & & ! _control_status . flags . opt_flow & & _control_status . flags . tilt_align
& & ( _time_last_imu - _time_last_optflow ) < 5e5 & & ( _time_last_imu - _time_last_hagl_fuse ) < 5e5 ) {
// If the heading is not aligned, reset the yaw and magnetic field states
if ( ! _control_status . flags . yaw_align ) {
_control_status . flags . yaw_align = resetMagHeading ( _mag_sample_delayed . mag ) ;
}
// If the heading is valid, start using optical flow aiding
if ( _control_status . flags . yaw_align ) {
// set the flag and reset the fusion timeout
_control_status . flags . opt_flow = true ;
_time_last_of_fuse = _time_last_imu ;
// if we are not using GPS and are in air, then we need to reset the velocity to be consistent with the optical flow reading
if ( ! _control_status . flags . gps ) {
// calculate the rotation matrix from body to earth frame
matrix : : Dcm < float > body_to_earth ( _state . quat_nominal ) ;
// constrain height above ground to be above minimum possible
float heightAboveGndEst = fmaxf ( ( _terrain_vpos - _state . pos ( 2 ) ) , _params . rng_gnd_clearance ) ;
// calculate absolute distance from focal point to centre of frame assuming a flat earth
float range = heightAboveGndEst / body_to_earth ( 2 , 2 ) ;
if ( _in_air & & ( range - _params . rng_gnd_clearance ) > 0.3f & & _flow_sample_delayed . dt > 0.05f ) {
// calculate X and Y body relative velocities from OF measurements
Vector3f vel_optflow_body ;
vel_optflow_body ( 0 ) = - range * _flow_sample_delayed . flowRadXYcomp ( 1 ) / _flow_sample_delayed . dt ;
vel_optflow_body ( 1 ) = range * _flow_sample_delayed . flowRadXYcomp ( 0 ) / _flow_sample_delayed . dt ;
vel_optflow_body ( 2 ) = 0.0f ;
// rotate from body to earth frame
Vector3f vel_optflow_earth ;
vel_optflow_earth = body_to_earth * vel_optflow_body ;
// take x and Y components
_state . vel ( 0 ) = vel_optflow_earth ( 0 ) ;
_state . vel ( 1 ) = vel_optflow_earth ( 1 ) ;
} else {
_state . vel . setZero ( ) ;
}
}
}
} else if ( ! ( _params . fusion_mode & MASK_USE_OF ) ) {
_control_status . flags . opt_flow = false ;
}
2016-01-31 04:01:44 -04:00
// GPS fusion mode selection logic
2016-03-07 05:31:19 -04:00
// To start use GPS we need angular alignment completed, the local NED origin set and fresh GPS data
if ( ( _params . fusion_mode & MASK_USE_GPS ) & & ! _control_status . flags . gps ) {
2016-02-11 23:28:40 -04:00
if ( _control_status . flags . tilt_align & & ( _time_last_imu - _time_last_gps ) < 5e5 & & _NED_origin_initialised
2016-01-31 04:01:44 -04:00
& & ( _time_last_imu - _last_gps_fail_us > 5e6 ) ) {
2016-02-24 05:13:42 -04:00
// If the heading is not aligned, reset the yaw and magnetic field states
if ( ! _control_status . flags . yaw_align ) {
_control_status . flags . yaw_align = resetMagHeading ( _mag_sample_delayed . mag ) ;
}
2016-02-11 23:34:12 -04:00
2016-03-10 00:14:50 -04:00
// If the heading is valid start using gps aiding
2016-02-11 23:34:12 -04:00
if ( _control_status . flags . yaw_align ) {
_control_status . flags . gps = true ;
2016-03-07 05:31:19 -04:00
_time_last_gps = _time_last_imu ;
2016-03-13 06:14:16 -03:00
2016-03-10 00:14:50 -04:00
// if we are not already aiding with optical flow, then we need to reset the position and velocity
if ( ! _control_status . flags . opt_flow ) {
_control_status . flags . gps = resetPosition ( ) ;
_control_status . flags . gps = resetVelocity ( ) ;
}
2016-02-11 23:34:12 -04:00
}
2016-01-31 04:01:44 -04:00
}
2016-03-07 05:31:19 -04:00
} else if ( ! ( _params . fusion_mode & MASK_USE_GPS ) ) {
_control_status . flags . gps = false ;
2016-01-31 04:01:44 -04:00
}
// handle the case when we are relying on GPS fusion and lose it
if ( _control_status . flags . gps & & ! _control_status . flags . opt_flow ) {
// We are relying on GPS aiding to constrain attitude drift so after 10 seconds without aiding we need to do something
if ( ( _time_last_imu - _time_last_pos_fuse > 10e6 ) & & ( _time_last_imu - _time_last_vel_fuse > 10e6 ) ) {
if ( _time_last_imu - _time_last_gps > 5e5 ) {
// if we don't have gps then we need to switch to the non-aiding mode, zero the veloity states
// and set the synthetic GPS position to the current estimate
_control_status . flags . gps = false ;
_last_known_posNE ( 0 ) = _state . pos ( 0 ) ;
_last_known_posNE ( 1 ) = _state . pos ( 1 ) ;
_state . vel . setZero ( ) ;
} else {
// Reset states to the last GPS measurement
resetPosition ( ) ;
resetVelocity ( ) ;
2016-04-21 19:33:11 -03:00
// Reset the timeout counters
_time_last_pos_fuse = _time_last_imu ;
_time_last_vel_fuse = _time_last_imu ;
2016-01-31 04:01:44 -04:00
}
}
}
2016-03-15 03:07:33 -03:00
/*
* Handle the case where we have not fused height measurements recently and
* uncertainty exceeds the max allowable . Reset using the best available height
* measurement source , continue using it after the reset and declare the current
* source failed if we have switched .
*/
2016-04-21 20:24:04 -03:00
// check for inertial sensing errors as evidenced by the vertical innovations having the same sign and not stale
bool bad_vert_accel = ( _control_status . flags . baro_hgt & & // we can only run this check if vertical position and velocity observations are indepedant
( _vel_pos_innov [ 5 ] * _vel_pos_innov [ 2 ] > 0.0f ) & & // vertical position and velocity sensors are in agreement
( ( _imu_sample_delayed . time_us - _baro_sample_delayed . time_us ) < 2 * BARO_MAX_INTERVAL ) & & // vertical position data is fresh
( ( _imu_sample_delayed . time_us - _gps_sample_delayed . time_us ) < 2 * GPS_MAX_INTERVAL ) & & // vertical velocity data is freshs
_vel_pos_test_ratio [ 2 ] > 1.0f & & // vertical velocty innovations have failed innovation consistency checks
_vel_pos_test_ratio [ 5 ] > 1.0f ) ; // vertical position innovations have failed innovation consistency checks
// record time of last bad vert accel
if ( bad_vert_accel ) {
_time_bad_vert_accel = _time_last_imu ;
}
2016-03-15 03:07:33 -03:00
if ( ( P [ 8 ] [ 8 ] > sq ( _params . hgt_reset_lim ) ) & & ( ( _time_last_imu - _time_last_hgt_fuse ) > 5e6 ) ) {
2016-04-21 21:50:53 -03:00
// boolean that indicates we will do a height reset
bool reset_height = false ;
2016-03-15 03:07:33 -03:00
// handle the case where we are using baro for height
if ( _control_status . flags . baro_hgt ) {
// check if GPS height is available
gpsSample gps_init = _gps_buffer . get_newest ( ) ;
bool gps_hgt_available = ( ( _time_last_imu - gps_init . time_us ) < 2 * GPS_MAX_INTERVAL ) ;
bool gps_hgt_accurate = ( gps_init . vacc < _params . req_vacc ) ;
baroSample baro_init = _baro_buffer . get_newest ( ) ;
bool baro_hgt_available = ( ( _time_last_imu - baro_init . time_us ) < 2 * BARO_MAX_INTERVAL ) ;
2016-04-21 20:24:04 -03:00
// check for inertial sensing errors in the last 10 seconds
bool prev_bad_vert_accel = ( _time_last_imu - _time_bad_vert_accel < 10E6 ) ;
2016-04-21 19:39:24 -03:00
2016-04-21 21:50:53 -03:00
// reset to GPS if adequate GPS data is available and the timeout cannot be blamed on IMU data
bool reset_to_gps = gps_hgt_available & & gps_hgt_accurate & & ! _gps_hgt_faulty & & ! prev_bad_vert_accel ;
// reset to GPS if GPS data is available and there is no Baro data
reset_to_gps = reset_to_gps | | ( gps_hgt_available & & ! baro_hgt_available ) ;
// reset to Baro if we are not doing a GPS reset and baro data is available
bool reset_to_baro = ! reset_to_gps & & baro_hgt_available ;
if ( reset_to_gps ) {
// set height sensor health
2016-03-15 03:07:33 -03:00
_baro_hgt_faulty = true ;
2016-04-21 21:50:53 -03:00
_gps_hgt_faulty = false ;
// declare the GPS height healthy
_gps_hgt_faulty = false ;
// reset the height mode
2016-03-15 03:07:33 -03:00
_control_status . flags . baro_hgt = false ;
_control_status . flags . gps_hgt = true ;
_control_status . flags . rng_hgt = false ;
2016-04-21 21:50:53 -03:00
// request a reset
reset_height = true ;
2016-04-21 19:39:24 -03:00
printf ( " EKF baro hgt timeout - reset to GPS \n " ) ;
2016-04-21 21:50:53 -03:00
} else if ( reset_to_baro ) {
// set height sensor health
_baro_hgt_faulty = false ;
// reset the height mode
_control_status . flags . baro_hgt = true ;
_control_status . flags . gps_hgt = false ;
_control_status . flags . rng_hgt = false ;
// request a reset
reset_height = true ;
printf ( " EKF baro hgt timeout - reset to baro \n " ) ;
} else {
// we have nothing we can reset to
// deny a reset
reset_height = false ;
2016-03-15 03:07:33 -03:00
}
}
// handle the case we are using GPS for height
if ( _control_status . flags . gps_hgt ) {
// check if GPS height is available
gpsSample gps_init = _gps_buffer . get_newest ( ) ;
bool gps_hgt_available = ( ( _time_last_imu - gps_init . time_us ) < 2 * GPS_MAX_INTERVAL ) ;
bool gps_hgt_accurate = ( gps_init . vacc < _params . req_vacc ) ;
// check the baro height source for consistency and freshness
baroSample baro_init = _baro_buffer . get_newest ( ) ;
bool baro_data_fresh = ( ( _time_last_imu - baro_init . time_us ) < 2 * BARO_MAX_INTERVAL ) ;
float baro_innov = _state . pos ( 2 ) - ( _hgt_sensor_offset - baro_init . hgt + _baro_hgt_offset ) ;
bool baro_data_consistent = fabsf ( baro_innov ) < ( sq ( _params . baro_noise ) + P [ 8 ] [ 8 ] ) * sq ( _params . baro_innov_gate ) ;
2016-04-21 21:50:53 -03:00
// if baro data is acceptable and GPS data is inaccurate, reset height to baro
bool reset_to_baro = baro_data_consistent & & baro_data_fresh & & ! _baro_hgt_faulty & & ! gps_hgt_accurate ;
// if GPS height is unavailable and baro data is available, reset height to baro
reset_to_baro = reset_to_baro | | ( ! gps_hgt_available & & baro_data_fresh ) ;
// if we cannot switch to baro and GPs data is available, reset height to GPS
bool reset_to_gps = ! reset_to_baro & & gps_hgt_available ;
if ( reset_to_baro ) {
// set height sensor health
2016-03-15 03:07:33 -03:00
_gps_hgt_faulty = true ;
2016-04-21 21:50:53 -03:00
_baro_hgt_faulty = false ;
// reset the height mode
2016-03-15 03:07:33 -03:00
_control_status . flags . baro_hgt = true ;
_control_status . flags . gps_hgt = false ;
_control_status . flags . rng_hgt = false ;
2016-04-21 21:50:53 -03:00
// request a reset
reset_height = true ;
printf ( " EKF gps hgt timeout - reset to baro \n " ) ;
} else if ( reset_to_gps ) {
// set height sensor health
_gps_hgt_faulty = false ;
// reset the height mode
_control_status . flags . baro_hgt = false ;
_control_status . flags . gps_hgt = true ;
_control_status . flags . rng_hgt = false ;
// request a reset
reset_height = true ;
printf ( " EKF gps hgt timeout - reset to GPS \n " ) ;
} else {
// we have nothing to reset to
reset_height = false ;
2016-03-15 03:07:33 -03:00
}
}
// handle the case we are using range finder for height
if ( _control_status . flags . rng_hgt ) {
// check if range finder data is available
rangeSample rng_init = _range_buffer . get_newest ( ) ;
bool rng_data_available = ( ( _time_last_imu - rng_init . time_us ) < 2 * RNG_MAX_INTERVAL ) ;
// check if baro data is available
baroSample baro_init = _baro_buffer . get_newest ( ) ;
bool baro_data_available = ( ( _time_last_imu - baro_init . time_us ) < 2 * BARO_MAX_INTERVAL ) ;
// check if baro data is consistent
float baro_innov = _state . pos ( 2 ) - ( _hgt_sensor_offset - baro_init . hgt + _baro_hgt_offset ) ;
bool baro_data_consistent = sq ( baro_innov ) < ( sq ( _params . baro_noise ) + P [ 8 ] [ 8 ] ) * sq ( _params . baro_innov_gate ) ;
2016-04-21 21:50:53 -03:00
// reset to baro if data is available and we have no range data
bool reset_to_baro = ! rng_data_available & & baro_data_available ;
// reset to baro if data is acceptable
reset_to_baro = reset_to_baro | | ( baro_data_consistent & & baro_data_available & & ! _baro_hgt_faulty ) ;
// reset to range data if it is available and we cannot switch to baro
bool reset_to_rng = ! reset_to_baro & & rng_data_available ;
if ( reset_to_baro ) {
// set height sensor health
2016-03-15 03:07:33 -03:00
_rng_hgt_faulty = true ;
2016-04-21 21:50:53 -03:00
_baro_hgt_faulty = false ;
// reset the height mode
2016-03-15 03:07:33 -03:00
_control_status . flags . baro_hgt = true ;
_control_status . flags . gps_hgt = false ;
_control_status . flags . rng_hgt = false ;
2016-04-21 21:50:53 -03:00
// request a reset
reset_height = true ;
printf ( " EKF rng hgt timeout - reset to baro \n " ) ;
} else if ( reset_to_rng ) {
// set height sensor health
_rng_hgt_faulty = false ;
// reset the height mode
_control_status . flags . baro_hgt = false ;
_control_status . flags . gps_hgt = false ;
_control_status . flags . rng_hgt = true ;
// request a reset
reset_height = true ;
printf ( " EKF rng hgt timeout - reset to rng hgt \n " ) ;
} else {
// we have nothing to reset to
reset_height = false ;
2016-03-15 03:07:33 -03:00
}
}
2016-02-24 21:53:58 -04:00
// Reset vertical position and velocity states to the last measurement
2016-04-21 21:50:53 -03:00
if ( reset_height ) {
resetHeight ( ) ;
// Reset the timout timer
_time_last_hgt_fuse = _time_last_imu ;
}
2016-04-21 19:33:11 -03:00
2016-02-24 21:53:58 -04:00
}
2016-01-31 04:01:44 -04:00
// handle the case when we are relying on optical flow fusion and lose it
if ( _control_status . flags . opt_flow & & ! _control_status . flags . gps ) {
2016-03-07 05:31:19 -04:00
// We are relying on flow aiding to constrain attitude drift so after 5s without aiding we need to do something
if ( ( _time_last_imu - _time_last_of_fuse > 5e6 ) ) {
// Switch to the non-aiding mode, zero the veloity states
// and set the synthetic position to the current estimate
_control_status . flags . opt_flow = false ;
_last_known_posNE ( 0 ) = _state . pos ( 0 ) ;
_last_known_posNE ( 1 ) = _state . pos ( 1 ) ;
_state . vel . setZero ( ) ;
}
2016-01-31 04:01:44 -04:00
}
// Determine if we should use simple magnetic heading fusion which works better when there are large external disturbances
// or the more accurate 3-axis fusion
2016-02-11 23:38:24 -04:00
if ( _params . mag_fusion_type = = MAG_FUSE_TYPE_AUTO ) {
if ( ! _control_status . flags . armed ) {
2016-03-01 00:35:17 -04:00
// use heading fusion for initial startup
_control_status . flags . mag_hdg = true ;
2016-02-11 23:38:24 -04:00
_control_status . flags . mag_3D = false ;
} else {
if ( _control_status . flags . in_air ) {
2016-03-01 00:35:45 -04:00
// if transitioning into 3-axis fusion mode, we need to initialise the yaw angle and field states
2016-02-24 05:17:22 -04:00
if ( ! _control_status . flags . mag_3D ) {
_control_status . flags . yaw_align = resetMagHeading ( _mag_sample_delayed . mag ) ;
}
2016-03-01 00:35:45 -04:00
// use 3D mag fusion when airborne
2016-02-11 23:38:24 -04:00
_control_status . flags . mag_hdg = false ;
_control_status . flags . mag_3D = true ;
} else {
2016-03-01 00:35:17 -04:00
// use heading fusion when on the ground
_control_status . flags . mag_hdg = true ;
2016-02-11 23:38:24 -04:00
_control_status . flags . mag_3D = false ;
}
}
} else if ( _params . mag_fusion_type = = MAG_FUSE_TYPE_HEADING ) {
2016-03-01 00:35:17 -04:00
// always use heading fusion
_control_status . flags . mag_hdg = true ;
2016-01-31 04:01:44 -04:00
_control_status . flags . mag_3D = false ;
2016-02-11 23:38:24 -04:00
} else if ( _params . mag_fusion_type = = MAG_FUSE_TYPE_3D ) {
2016-03-01 00:35:45 -04:00
// if transitioning into 3-axis fusion mode, we need to initialise the yaw angle and field states
2016-02-24 05:17:22 -04:00
if ( ! _control_status . flags . mag_3D ) {
_control_status . flags . yaw_align = resetMagHeading ( _mag_sample_delayed . mag ) ;
}
2016-02-11 23:38:24 -04:00
// always use 3-axis mag fusion
_control_status . flags . mag_hdg = false ;
_control_status . flags . mag_3D = true ;
2016-01-31 04:01:44 -04:00
2016-02-11 23:38:24 -04:00
} else {
// do no magnetometer fusion at all
_control_status . flags . mag_hdg = false ;
_control_status . flags . mag_3D = false ;
2016-01-31 04:01:44 -04:00
}
2016-02-07 23:15:41 -04:00
2016-02-11 23:38:24 -04:00
// if we are using 3-axis magnetometer fusion, but without external aiding, then the declination must be fused as an observation to prevent long term heading drift
// fusing declination when gps aiding is available is optional, but recommneded to prevent problem if the vehicle is static for extended periods of time
if ( _control_status . flags . mag_3D & & ( ! _control_status . flags . gps | | ( _params . mag_declination_source & MASK_FUSE_DECL ) ) ) {
2016-02-08 16:44:34 -04:00
_control_status . flags . mag_dec = true ;
2016-02-08 00:12:38 -04:00
} else {
2016-02-08 16:44:34 -04:00
_control_status . flags . mag_dec = false ;
2016-02-08 00:12:38 -04:00
}
2016-02-11 23:38:24 -04:00
2016-03-07 05:31:19 -04:00
// Control the soure of height measurements for the main filter
2016-03-15 03:07:33 -03:00
if ( ( _params . vdist_sensor_type = = VDIST_SENSOR_BARO & & ! _baro_hgt_faulty ) | | _control_status . flags . baro_hgt ) {
2016-03-13 06:14:16 -03:00
_control_status . flags . baro_hgt = true ;
_control_status . flags . gps_hgt = false ;
2016-03-15 03:07:33 -03:00
_control_status . flags . rng_hgt = false ;
2016-03-07 05:31:19 -04:00
2016-03-15 03:07:33 -03:00
} else if ( ( _params . vdist_sensor_type = = VDIST_SENSOR_GPS & & ! _gps_hgt_faulty ) | | _control_status . flags . gps_hgt ) {
2016-03-13 04:44:34 -03:00
_control_status . flags . baro_hgt = false ;
2016-03-15 03:07:33 -03:00
_control_status . flags . gps_hgt = true ;
_control_status . flags . rng_hgt = false ;
2016-03-13 04:44:34 -03:00
2016-03-15 03:07:33 -03:00
} else if ( _params . vdist_sensor_type = = VDIST_SENSOR_RANGE & & ! _rng_hgt_faulty ) {
2016-03-13 04:44:34 -03:00
_control_status . flags . baro_hgt = false ;
_control_status . flags . gps_hgt = false ;
2016-03-15 03:07:33 -03:00
_control_status . flags . rng_hgt = true ;
2016-03-13 04:44:34 -03:00
}
2016-03-07 05:31:19 -04:00
2016-04-05 10:14:04 -03:00
// if the airspeed measurements have timed out for 10 seconds we declare the wind estimate to be invalid
if ( _time_last_imu - _time_last_arsp_fuse > 10e6 | | _time_last_arsp_fuse = = 0 ) {
2016-02-15 19:04:37 -04:00
_control_status . flags . wind = false ;
2016-04-05 10:14:04 -03:00
} else {
_control_status . flags . wind = true ;
2016-02-15 19:04:37 -04:00
}
2016-01-28 06:52:39 -04:00
}
void Ekf : : calculateVehicleStatus ( )
{
2016-01-31 04:01:44 -04:00
// determine if the vehicle is armed
_control_status . flags . armed = _vehicle_armed ;
// record vertical position whilst disarmed to use as a height change reference
if ( ! _control_status . flags . armed ) {
_last_disarmed_posD = _state . pos ( 2 ) ;
}
// Transition to in-air occurs when armed and when altitude has increased sufficiently from the altitude at arming
2016-03-03 05:46:48 -04:00
bool in_air = _control_status . flags . armed & & ( _state . pos ( 2 ) - _last_disarmed_posD ) < - 1.0f ;
2016-03-07 05:31:19 -04:00
2016-03-03 05:46:48 -04:00
if ( ! _control_status . flags . in_air & & in_air ) {
2016-01-31 04:01:44 -04:00
_control_status . flags . in_air = true ;
}
2016-03-03 05:46:48 -04:00
// Transition to on-ground occurs when disarmed or if the land detector indicated landed state
if ( _control_status . flags . in_air & & ( ! _control_status . flags . armed | | ! _in_air ) ) {
2016-01-31 04:01:44 -04:00
_control_status . flags . in_air = false ;
}
2016-01-28 06:52:39 -04:00
}