mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-23 16:23:56 -04:00
ArduPlane : Updated handle_guided_request() to report error.
This commit is contained in:
parent
867360c350
commit
a03941ba02
@ -1104,11 +1104,11 @@ GCS_MAVLINK::data_stream_send(void)
|
|||||||
handle a request to switch to guided mode. This happens via a
|
handle a request to switch to guided mode. This happens via a
|
||||||
callback from handle_mission_item()
|
callback from handle_mission_item()
|
||||||
*/
|
*/
|
||||||
void GCS_MAVLINK::handle_guided_request(AP_Mission::Mission_Command &cmd)
|
bool GCS_MAVLINK::handle_guided_request(AP_Mission::Mission_Command &cmd)
|
||||||
{
|
{
|
||||||
if (plane.control_mode != GUIDED) {
|
if (plane.control_mode != GUIDED) {
|
||||||
// only accept position updates when in GUIDED mode
|
// only accept position updates when in GUIDED mode
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
plane.guided_WP_loc = cmd.content.location;
|
plane.guided_WP_loc = cmd.content.location;
|
||||||
|
|
||||||
@ -1119,6 +1119,7 @@ void GCS_MAVLINK::handle_guided_request(AP_Mission::Mission_Command &cmd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
plane.set_guided_WP();
|
plane.set_guided_WP();
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user