forked from Archive/PX4-Autopilot
Tiltrotor params: set default for VT_TILT_TRANS to 0.4
0.4 tilt is more reasobale to get nice transitions than the previous 0.3. Signed-off-by: Silvan Fuhrer <silvan@auterion.com>
This commit is contained in:
parent
19029526d0
commit
0d7933beac
|
@ -39,7 +39,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* Position of tilt servo in mc mode
|
||||
* Normalized tilt in Hover
|
||||
*
|
||||
* @min 0.0
|
||||
* @max 1.0
|
||||
|
@ -50,7 +50,7 @@
|
|||
PARAM_DEFINE_FLOAT(VT_TILT_MC, 0.0f);
|
||||
|
||||
/**
|
||||
* Position of tilt servo in transition mode
|
||||
* Normalized tilt transition to FW
|
||||
*
|
||||
* @min 0.0
|
||||
* @max 1.0
|
||||
|
@ -58,10 +58,10 @@ PARAM_DEFINE_FLOAT(VT_TILT_MC, 0.0f);
|
|||
* @decimal 3
|
||||
* @group VTOL Attitude Control
|
||||
*/
|
||||
PARAM_DEFINE_FLOAT(VT_TILT_TRANS, 0.3f);
|
||||
PARAM_DEFINE_FLOAT(VT_TILT_TRANS, 0.4f);
|
||||
|
||||
/**
|
||||
* Position of tilt servo in fw mode
|
||||
* Normalized tilt in FW
|
||||
*
|
||||
* @min 0.0
|
||||
* @max 1.0
|
||||
|
|
Loading…
Reference in New Issue