forked from Archive/PX4-Autopilot
navigator: for FW: on landing, disable switch to NAV_STATE_READY when landing
This commit is contained in:
parent
18b28f0efd
commit
1f62cede68
|
@ -1259,7 +1259,13 @@ Navigator::check_mission_item_reached()
|
|||
}
|
||||
|
||||
if (_mission_item_triplet.current.nav_cmd == NAV_CMD_LAND) {
|
||||
if (_vstatus.is_rotary_wing) {
|
||||
return _vstatus.condition_landed;
|
||||
} else {
|
||||
/* For fw there is currently no landing detector:
|
||||
* make sure control is not stopped when overshooting the landing waypoint */
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/* XXX TODO count turns */
|
||||
|
|
Loading…
Reference in New Issue