-
Notifications
You must be signed in to change notification settings - Fork 17.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ArduPlane: add AutoLand fixed-wing mode
- Loading branch information
Showing
12 changed files
with
176 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
#include "mode.h" | ||
#include "Plane.h" | ||
#include <GCS_MAVLink/GCS.h> | ||
|
||
/* | ||
mode AutoLand parameters | ||
*/ | ||
const AP_Param::GroupInfo ModeAutoLand::var_info[] = { | ||
// @Param: WP_ALT | ||
// @DisplayName: Final approach WP altitude | ||
// @Description: This is the target altitude for final approach waypoint | ||
// @Range: 0 200 | ||
// @Increment: 1 | ||
// @Units: m | ||
// @User: Standard | ||
AP_GROUPINFO("WP_ALT", 1, ModeAutoLand, final_wp_alt, 55), | ||
|
||
// @Param: DIST | ||
// @DisplayName: Final approach WP distance | ||
// @Description: This is the distance from Home that the final approach waypoint is set. The waypoint point will be in the opposite direction of takeoff (the direction the plane is facing when the plane sets its takeoff heading) | ||
// @Range: 0 700 | ||
// @Increment: 1 | ||
// @Units: m | ||
// @User: Standard | ||
AP_GROUPINFO("WP_DIST", 2, ModeAutoLand, final_wp_dist, 400), | ||
|
||
AP_GROUPEND | ||
}; | ||
|
||
ModeAutoLand::ModeAutoLand() : | ||
Mode() | ||
{ | ||
AP_Param::setup_object_defaults(this, var_info); | ||
} | ||
|
||
bool ModeAutoLand::_enter() | ||
{ | ||
//must be flying to enter | ||
if (!plane.is_flying()) { | ||
return false; | ||
} | ||
|
||
//if do_land_start exists, jump to it | ||
if( (plane.mission.contains_item(MAV_CMD_DO_LAND_START)) && (plane.arming.is_armed())) { | ||
if (plane.have_position && plane.mission.jump_to_landing_sequence(plane.current_loc)) { | ||
// switch to AUTO | ||
plane.mission.set_force_resume(true); | ||
if (plane.set_mode(plane.mode_auto, ModeReason::FIXED_WING_AUTOLAND)) { | ||
return true; | ||
} | ||
} | ||
} | ||
|
||
//setup final approach waypoint | ||
plane.prev_WP_loc = plane.current_loc; | ||
const Location &home = ahrs.get_home(); | ||
plane.set_target_altitude_current(); | ||
plane.next_WP_loc = home; | ||
uint16_t bearing_cd = wrap_360((plane.takeoff_state.takeoff_initial_direction + 180)); | ||
plane.next_WP_loc.offset_bearing(bearing_cd, final_wp_dist); | ||
plane.next_WP_loc.alt = home.alt + final_wp_alt*100; | ||
|
||
// create a command to fly to final approach waypoint and start it | ||
cmd.id = MAV_CMD_NAV_WAYPOINT; | ||
cmd.content.location = plane.next_WP_loc; | ||
plane.start_command(cmd); | ||
land_started = false; | ||
|
||
return true; | ||
} | ||
|
||
void ModeAutoLand::update() | ||
{ | ||
plane.calc_nav_roll(); | ||
plane.calc_nav_pitch(); | ||
plane.set_offset_altitude_location(plane.prev_WP_loc, plane.next_WP_loc); | ||
if (plane.landing.is_throttle_suppressed()) { | ||
// if landing is considered complete throttle is never allowed, regardless of landing type | ||
SRV_Channels::set_output_scaled(SRV_Channel::k_throttle, 0.0); | ||
} else { | ||
plane.calc_throttle(); | ||
} | ||
} | ||
|
||
void ModeAutoLand::navigate() | ||
{ | ||
// check to see if if we have reached final approach waypoint, switch to NAV_LAND command and start it once if so | ||
if (!land_started){ | ||
if (plane.verify_nav_wp(cmd)){ | ||
const Location &home_loc = ahrs.get_home(); | ||
cmd.id = MAV_CMD_NAV_LAND; | ||
cmd.content.location = home_loc; | ||
land_started = true; | ||
plane.prev_WP_loc = plane.current_loc; | ||
plane.next_WP_loc = home_loc; | ||
plane.set_offset_altitude_location(plane.prev_WP_loc, plane.next_WP_loc); | ||
plane.start_command(cmd); | ||
} | ||
return; | ||
//otherwise keep flying the current command | ||
} else { | ||
plane.verify_command(cmd); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters