mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
EKF: Use #define function for isfinite check
This commit is contained in:
parent
91f886cb5e
commit
d1f3f4c916
@ -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)) {
|
||||
|
||||
@ -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};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user