forked from Archive/PX4-Autopilot
fw pos ctrl: takeoff and landing nudging enabled by default
This commit is contained in:
parent
121cc1fce8
commit
26cb55ec2c
|
@ -1045,9 +1045,9 @@ PARAM_DEFINE_FLOAT(FW_LND_TD_OFF, 3.0);
|
||||||
* @value 0 Disable nudging
|
* @value 0 Disable nudging
|
||||||
* @value 1 Nudge approach angle
|
* @value 1 Nudge approach angle
|
||||||
* @value 2 Nudge approach path
|
* @value 2 Nudge approach path
|
||||||
* @group FW L1 Control
|
* @group FW L1 ControlW
|
||||||
*/
|
*/
|
||||||
PARAM_DEFINE_INT32(FW_LND_NUDGE, 0);
|
PARAM_DEFINE_INT32(FW_LND_NUDGE, 2);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bit mask to set the automatic landing abort conditions.
|
* Bit mask to set the automatic landing abort conditions.
|
||||||
|
|
|
@ -155,4 +155,4 @@ PARAM_DEFINE_FLOAT(RWTO_L1_PERIOD, 5.0f);
|
||||||
* @boolean
|
* @boolean
|
||||||
* @group Runway Takeoff
|
* @group Runway Takeoff
|
||||||
*/
|
*/
|
||||||
PARAM_DEFINE_INT32(RWTO_NUDGE, 0);
|
PARAM_DEFINE_INT32(RWTO_NUDGE, 1);
|
||||||
|
|
Loading…
Reference in New Issue