mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-04 06:58:39 -04:00
GCS_MAVLink: handle param_request_list in GCS_MAVLINK base class
This commit is contained in:
parent
640b2b7a13
commit
8a7a1b77dd
@ -1785,6 +1785,8 @@ void GCS_MAVLINK::handle_common_message(mavlink_message_t *msg)
|
||||
handle_setup_signing(msg);
|
||||
break;
|
||||
|
||||
case MAVLINK_MSG_ID_PARAM_REQUEST_LIST:
|
||||
/* fall through */
|
||||
case MAVLINK_MSG_ID_PARAM_SET:
|
||||
/* fall through */
|
||||
case MAVLINK_MSG_ID_PARAM_REQUEST_READ:
|
||||
|
@ -441,6 +441,9 @@ void GCS_MAVLINK::send_parameter_reply(void)
|
||||
void GCS_MAVLINK::handle_common_param_message(mavlink_message_t *msg)
|
||||
{
|
||||
switch (msg->msgid) {
|
||||
case MAVLINK_MSG_ID_PARAM_REQUEST_LIST:
|
||||
handle_param_request_list(msg);
|
||||
break;
|
||||
case MAVLINK_MSG_ID_PARAM_SET:
|
||||
handle_param_set(msg);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user