Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
71eca40b
Commit
71eca40b
authored
Mar 12, 2015
by
Bryant
Browse files
Output audio for NOTICE severity STATUSTEXT messages.
parent
34337970
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/uas/UAS.cc
View file @
71eca40b
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment