mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 17:38:32 -04:00
Copter: use handle_common_message()
This commit is contained in:
parent
90c4214a3e
commit
df3e434607
@ -845,12 +845,6 @@ void GCS_MAVLINK_Copter::handleMessage(mavlink_message_t* msg)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case MAVLINK_MSG_ID_PARAM_REQUEST_READ: // MAV ID: 20
|
|
||||||
{
|
|
||||||
handle_param_request_read(msg);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
case MAVLINK_MSG_ID_PARAM_REQUEST_LIST: // MAV ID: 21
|
case MAVLINK_MSG_ID_PARAM_REQUEST_LIST: // MAV ID: 21
|
||||||
{
|
{
|
||||||
// mark the firmware version in the tlog
|
// mark the firmware version in the tlog
|
||||||
@ -1972,10 +1966,9 @@ void GCS_MAVLINK_Copter::handleMessage(mavlink_message_t* msg)
|
|||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case MAVLINK_MSG_ID_SETUP_SIGNING:
|
default:
|
||||||
handle_setup_signing(msg);
|
handle_common_message(msg);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
} // end switch
|
} // end switch
|
||||||
} // end handle mavlink
|
} // end handle mavlink
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user