mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-22 08:38:36 -04:00
GCS_Mavlink: output fast sampling startup messages
This commit is contained in:
parent
faf9bbbf3a
commit
05416daef3
@ -3436,6 +3436,13 @@ void GCS_MAVLINK::send_banner()
|
||||
if (hal.rcout->get_output_mode_banner(banner_msg, sizeof(banner_msg))) {
|
||||
send_text(MAV_SEVERITY_INFO, "%s", banner_msg);
|
||||
}
|
||||
|
||||
// output any fast sampling status messages
|
||||
for (uint8_t i = 0; i < INS_MAX_BACKENDS; i++) {
|
||||
if (AP::ins().get_output_banner(i, banner_msg, sizeof(banner_msg))) {
|
||||
send_text(MAV_SEVERITY_INFO, "%s", banner_msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user