mirror of https://github.com/ArduPilot/ardupilot
ArduPlane: handle SETUP_SIGNING message
This commit is contained in:
parent
b85f129cc5
commit
a103e70460
|
@ -2074,6 +2074,13 @@ void GCS_MAVLINK::handleMessage(mavlink_message_t* msg)
|
||||||
case MAVLINK_MSG_ID_ADSB_VEHICLE:
|
case MAVLINK_MSG_ID_ADSB_VEHICLE:
|
||||||
plane.adsb.update_vehicle(msg);
|
plane.adsb.update_vehicle(msg);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
#if MAVLINK_PROTOCOL_VERSION >= 2
|
||||||
|
case MAVLINK_MSG_ID_SETUP_SIGNING:
|
||||||
|
handle_setup_signing(msg);
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
} // end switch
|
} // end switch
|
||||||
} // end handle mavlink
|
} // end handle mavlink
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue