mirror of https://github.com/ArduPilot/ardupilot
Rover: individual accel and gyro status to GCS
This commit is contained in:
parent
c2cdc0468b
commit
9de1ae8fbb
|
@ -158,8 +158,11 @@ static NOINLINE void send_extended_status1(mavlink_channel_t chan)
|
|||
if (gps.status() >= AP_GPS::GPS_OK_FIX_3D) {
|
||||
control_sensors_health |= MAV_SYS_STATUS_SENSOR_GPS;
|
||||
}
|
||||
if (!ins.healthy()) {
|
||||
control_sensors_health &= ~(MAV_SYS_STATUS_SENSOR_3D_GYRO | MAV_SYS_STATUS_SENSOR_3D_ACCEL);
|
||||
if (!ins.get_gyro_health_all()) {
|
||||
control_sensors_health &= ~MAV_SYS_STATUS_SENSOR_3D_GYRO;
|
||||
}
|
||||
if (!ins.get_accel_health_all()) {
|
||||
control_sensors_health &= ~MAV_SYS_STATUS_SENSOR_3D_ACCEL;
|
||||
}
|
||||
|
||||
if (!ahrs.healthy()) {
|
||||
|
|
Loading…
Reference in New Issue