Browse Source

Sub: move setting of GPS SYS_STATUS bits up to base class

zr-v5.1
Peter Barker 5 years ago committed by Andrew Tridgell
parent
commit
526adee814
  1. 8
      ArduSub/GCS_Sub.cpp

8
ArduSub/GCS_Sub.cpp

@ -24,11 +24,6 @@ void GCS_Sub::update_vehicle_sensor_status_flags() @@ -24,11 +24,6 @@ void GCS_Sub::update_vehicle_sensor_status_flags()
control_sensors_present |= MAV_SYS_STATUS_SENSOR_ABSOLUTE_PRESSURE;
control_sensors_enabled |= MAV_SYS_STATUS_SENSOR_ABSOLUTE_PRESSURE;
}
const AP_GPS &gps = AP::gps();
if (gps.status() > AP_GPS::NO_GPS) {
control_sensors_present |= MAV_SYS_STATUS_SENSOR_GPS;
control_sensors_enabled |= MAV_SYS_STATUS_SENSOR_GPS;
}
#if OPTFLOW == ENABLED
const OpticalFlow *optflow = AP::opticalflow();
if (optflow && optflow->enabled()) {
@ -61,9 +56,6 @@ void GCS_Sub::update_vehicle_sensor_status_flags() @@ -61,9 +56,6 @@ void GCS_Sub::update_vehicle_sensor_status_flags()
if (sub.sensor_health.depth) {
control_sensors_health |= MAV_SYS_STATUS_SENSOR_ABSOLUTE_PRESSURE;
}
if (gps.is_healthy()) {
control_sensors_health |= MAV_SYS_STATUS_SENSOR_GPS;
}
#if OPTFLOW == ENABLED
if (optflow && optflow->healthy()) {
control_sensors_health |= MAV_SYS_STATUS_SENSOR_OPTICAL_FLOW;

Loading…
Cancel
Save