GCS_MAVLink: support SECURE_COMMAND

This commit is contained in:
Andrew Tridgell 2022-09-02 21:06:17 +10:00
parent 0388460c92
commit 611f26f16c

View File

@ -3889,6 +3889,13 @@ void GCS_MAVLINK::handle_common_message(const mavlink_message_t &msg)
AP::opendroneid().handle_msg(chan, msg); AP::opendroneid().handle_msg(chan, msg);
break; break;
#endif #endif
#if AP_SIGNED_FIRMWARE
case MAVLINK_MSG_ID_SECURE_COMMAND:
case MAVLINK_MSG_ID_SECURE_COMMAND_REPLY:
AP_CheckFirmware::handle_msg(chan, msg);
break;
#endif
} }
} }