Browse Source

Plane: change sensor health check to prevent false positive

mission-4.1.18
floaledm 8 years ago
parent
commit
68df5b7606
  1. 2
      ArduPlane/GCS_Mavlink.cpp

2
ArduPlane/GCS_Mavlink.cpp

@ -347,7 +347,7 @@ void Plane::send_extended_status1(mavlink_channel_t chan) @@ -347,7 +347,7 @@ void Plane::send_extended_status1(mavlink_channel_t chan)
#if FRSKY_TELEM_ENABLED == ENABLED
// give mask of error flags to Frsky_Telemetry
uint32_t sensors_error_flags = (control_sensors_health ^ control_sensors_enabled) & control_sensors_present;
uint32_t sensors_error_flags = !control_sensors_health & control_sensors_enabled & control_sensors_present;
frsky_telemetry.update_sensor_status_flags(sensors_error_flags);
#endif
}

Loading…
Cancel
Save