fw pos ctrl: takeoff and landing nudging enabled by default

This commit is contained in:
Thomas Stastny 2022-07-18 11:19:25 +02:00 committed by Daniel Agar
parent 121cc1fce8
commit 26cb55ec2c
2 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -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);