mirror of https://github.com/ArduPilot/ardupilot
Rover: support GPS_INPUT mavlink message
This commit is contained in:
parent
c479fcab39
commit
1aaeceac2e
|
@ -1263,6 +1263,12 @@ void GCS_MAVLINK_Rover::handleMessage(mavlink_message_t* msg)
|
|||
break;
|
||||
}
|
||||
|
||||
case MAVLINK_MSG_ID_GPS_INPUT:
|
||||
{
|
||||
rover.gps.handle_msg(msg);
|
||||
break;
|
||||
}
|
||||
|
||||
#if HIL_MODE != HIL_MODE_DISABLED
|
||||
case MAVLINK_MSG_ID_HIL_STATE:
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue