mirror of https://github.com/ArduPilot/ardupilot
Will add a landing command to last WP if we are on the ground.
This commit is contained in:
parent
648ab5f4ae
commit
29554b7d73
|
@ -134,8 +134,13 @@ static void read_trim_switch()
|
||||||
// max out at 100 since I think we need to stay under the EEPROM limit
|
// max out at 100 since I think we need to stay under the EEPROM limit
|
||||||
CH7_wp_index = constrain(CH7_wp_index, 1, 100);
|
CH7_wp_index = constrain(CH7_wp_index, 1, 100);
|
||||||
|
|
||||||
|
if(g.rc_3.control_in > 0){
|
||||||
// set our location ID to 16, MAV_CMD_NAV_WAYPOINT
|
// set our location ID to 16, MAV_CMD_NAV_WAYPOINT
|
||||||
current_loc.id = MAV_CMD_NAV_WAYPOINT;
|
current_loc.id = MAV_CMD_NAV_WAYPOINT;
|
||||||
|
}else{
|
||||||
|
// set our location ID to 21, MAV_CMD_NAV_LAND
|
||||||
|
current_loc.id = MAV_CMD_NAV_LAND;
|
||||||
|
}
|
||||||
|
|
||||||
// save command
|
// save command
|
||||||
set_cmd_with_index(current_loc, CH7_wp_index);
|
set_cmd_with_index(current_loc, CH7_wp_index);
|
||||||
|
|
Loading…
Reference in New Issue