Plane: set gyros disabled when calibrating
This commit is contained in:
parent
aec7907571
commit
fa70c95c8e
@ -290,6 +290,12 @@ static NOINLINE void send_extended_status1(mavlink_channel_t chan)
|
||||
}
|
||||
}
|
||||
|
||||
if (AP_Notify::flags.initialising) {
|
||||
// while initialising the gyros and accels are not enabled
|
||||
control_sensors_enabled &= ~(MAV_SYS_STATUS_SENSOR_3D_GYRO | MAV_SYS_STATUS_SENSOR_3D_ACCEL);
|
||||
control_sensors_health &= ~(MAV_SYS_STATUS_SENSOR_3D_GYRO | MAV_SYS_STATUS_SENSOR_3D_ACCEL);
|
||||
}
|
||||
|
||||
mavlink_msg_sys_status_send(
|
||||
chan,
|
||||
control_sensors_present,
|
||||
|
Loading…
Reference in New Issue
Block a user