mirror of https://github.com/ArduPilot/ardupilot
AC_Fence: add always land option
This commit is contained in:
parent
ccefe9da84
commit
cb8210599e
|
@ -24,7 +24,7 @@ const AP_Param::GroupInfo AC_Fence::var_info[] = {
|
|||
// @Param: ACTION
|
||||
// @DisplayName: Fence Action
|
||||
// @Description: What action should be taken when fence is breached
|
||||
// @Values: 0:Report Only,1:RTL or Land
|
||||
// @Values: 0:Report Only,1:RTL or Land, 2:Always land
|
||||
// @User: Standard
|
||||
AP_GROUPINFO("ACTION", 2, AC_Fence, _action, AC_FENCE_ACTION_RTL_AND_LAND),
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
// valid actions should a fence be breached
|
||||
#define AC_FENCE_ACTION_REPORT_ONLY 0 // report to GCS that boundary has been breached but take no further action
|
||||
#define AC_FENCE_ACTION_RTL_AND_LAND 1 // return to launch and, if that fails, land
|
||||
|
||||
#define AC_FENCE_ACTION_ALWAYS_LAND 2 // always land
|
||||
// default boundaries
|
||||
#define AC_FENCE_ALT_MAX_DEFAULT 100.0f // default max altitude is 100m
|
||||
#define AC_FENCE_ALT_MIN_DEFAULT -10.0f // default maximum depth in meters
|
||||
|
|
Loading…
Reference in New Issue