From 71eca40b27a6407d3a80d20d5516e28527709daf Mon Sep 17 00:00:00 2001 From: Bryant Date: Thu, 12 Mar 2015 13:01:03 -0700 Subject: [PATCH] Output audio for NOTICE severity STATUSTEXT messages. --- src/uas/UAS.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/uas/UAS.cc b/src/uas/UAS.cc index c4dbbcb3f1..5401bde859 100644 --- a/src/uas/UAS.cc +++ b/src/uas/UAS.cc @@ -1247,12 +1247,15 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) QByteArray b; b.resize(MAVLINK_MSG_STATUSTEXT_FIELD_TEXT_LEN+1); mavlink_msg_statustext_get_text(&message, b.data()); + // Ensure NUL-termination b[b.length()-1] = '\0'; QString text = QString(b); int severity = mavlink_msg_statustext_get_severity(&message); - if (text.startsWith("#") || severity <= MAV_SEVERITY_WARNING) + // Now if the status message starts with "#audio:", or it's at least a + // severity level of NOTICE or higher, output it as an audio message. + if (text.startsWith("#audio:") || severity <= MAV_SEVERITY_NOTICE) { text.remove("#audio:"); emit textMessageReceived(uasId, message.compid, severity, text); -- GitLab