mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-22 00:28:30 -04:00
Copter: send EKF_STATUS_REPORT in extra3 stream
This commit is contained in:
parent
230ca583d1
commit
553261d4ce
@ -625,6 +625,12 @@ bool GCS_MAVLINK::try_send_message(enum ap_message id)
|
||||
#endif
|
||||
break;
|
||||
|
||||
case MSG_EKF_STATUS_REPORT:
|
||||
#if AP_AHRS_NAVEKF_AVAILABLE
|
||||
CHECK_PAYLOAD_SIZE(EKF_STATUS_REPORT);
|
||||
ahrs.get_NavEKF().send_status_report(chan);
|
||||
#endif
|
||||
break;
|
||||
|
||||
case MSG_FENCE_STATUS:
|
||||
case MSG_WIND:
|
||||
@ -854,6 +860,7 @@ GCS_MAVLINK::data_stream_send(void)
|
||||
send_message(MSG_MOUNT_STATUS);
|
||||
send_message(MSG_OPTICAL_FLOW);
|
||||
send_message(MSG_GIMBAL_REPORT);
|
||||
send_message(MSG_EKF_STATUS_REPORT);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user