Commit bcbc0379 authored by Lorenz Meier's avatar Lorenz Meier

Fixed voice output

parent 917d0e50
......@@ -2801,6 +2801,10 @@ QString UAS::getAudioModeTextFor(int id)
{
mode += "guided";
}
else if (modeid & (uint8_t)MAV_MODE_FLAG_DECODE_POSITION_STABILIZE)
{
mode += "stabilized";
}
else if (modeid & (uint8_t)MAV_MODE_FLAG_DECODE_POSITION_MANUAL)
{
mode += "manual";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment