EKF: Use #define function for isfinite check

This commit is contained in:
Paul Riseborough 2018-09-02 09:32:01 +10:00 committed by Paul Riseborough
parent 91f886cb5e
commit d1f3f4c916
2 changed files with 3 additions and 3 deletions

View File

@ -513,7 +513,7 @@ void Ekf::controlGpsFusion()
// GPS yaw aiding selection logic
if ((_params.fusion_mode & MASK_USE_GPSYAW)
&& isfinite(_gps_sample_delayed.yaw)
&& ISFINITE(_gps_sample_delayed.yaw)
&& _control_status.flags.tilt_align
&& (!_control_status.flags.gps_yaw || !_control_status.flags.yaw_align)
&& (_time_last_imu - _time_last_gps < 2 * GPS_MAX_INTERVAL)) {

View File

@ -59,7 +59,7 @@ void Ekf::fuseGpsAntYaw()
float measured_hdg;
// check if data has been set to NAN indicating no measurement
if (isfinite(_gps_sample_delayed.yaw)) {
if (ISFINITE(_gps_sample_delayed.yaw)) {
// calculate the observed yaw angle of antenna array, converting a from body to antenna yaw measurement
measured_hdg = _gps_sample_delayed.yaw + _gps_yaw_offset;
@ -293,7 +293,7 @@ void Ekf::fuseGpsAntYaw()
bool Ekf::resetGpsAntYaw()
{
// check if data has been set to NAN indicating no measurement
if (isfinite(_gps_sample_delayed.yaw)) {
if (ISFINITE(_gps_sample_delayed.yaw)) {
// define the predicted antenna array vector and rotate into earth frame
Vector3f ant_vec_bf = {cosf(_gps_yaw_offset), sinf(_gps_yaw_offset), 0.0f};