Skip to content
Snippets Groups Projects
Commit d36b06f7 authored by Daniel Agar's avatar Daniel Agar Committed by Lorenz Meier
Browse files

fw_pos_control_l1: FW_LND_EARLYCFG disable by default

 - change to boolean param
parent 6d30b13a
No related branches found
No related tags found
No related merge requests found
......@@ -334,19 +334,18 @@ PARAM_DEFINE_INT32(FW_LND_USETER, 0);
/**
* Early landing configuration deployment
*
* When set to 0/disabled, the landing configuration (flaps, landing airspeed, etc.) is only activated
* on the final approach to landing. When set to 1/enabled, it is already activated when entering the
* final loiter-down (loiter-to-alt) WP before the landing approach. This shifts the (often large)
* When disabled, the landing configuration (flaps, landing airspeed, etc.) is only activated
* on the final approach to landing. When enabled, it is already activated when entering the
* final loiter-down (loiter-to-alt) waypoint before the landing approach. This shifts the (often large)
* altitude and airspeed errors caused by the configuration change away from the ground such that
* these are not so critical. It also gives the controller enough time to adapt to the new
* configuration such that the landing approach starts with a cleaner initial state.
*
* @value 0 Disable early land configuration deployment
* @value 1 Enable early land configuration deployment
* @boolean
*
* @group FW L1 Control
*/
PARAM_DEFINE_INT32(FW_LND_EARLYCFG, 1);
PARAM_DEFINE_INT32(FW_LND_EARLYCFG, 0);
/**
* Flare, minimum pitch
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment