PX4 Firmware
PX4 Autopilot Software http://px4.io
params.c
Go to the documentation of this file.
1 
2 /**
3  * Multicopter air-mode
4  *
5  * The air-mode enables the mixer to increase the total thrust of the multirotor
6  * in order to keep attitude and rate control even at low and high throttle.
7  *
8  * This function should be disabled during tuning as it will help the controller
9  * to diverge if the closed-loop is unstable (i.e. the vehicle is not tuned yet).
10  *
11  * Enabling air-mode for yaw requires the use of an arming switch.
12  *
13  * @value 0 Disabled
14  * @value 1 Roll/Pitch
15  * @value 2 Roll/Pitch/Yaw
16  * @group Mixer Output
17  */
18 PARAM_DEFINE_INT32(MC_AIRMODE, 0);
19 
20 /**
21  * Motor Ordering
22  *
23  * Determines the motor ordering. This can be used for example in combination with
24  * a 4-in-1 ESC that assumes a motor ordering which is different from PX4.
25  *
26  * ONLY supported for Quads.
27  *
28  * When changing this, make sure to test the motor response without props first.
29  *
30  * @value 0 PX4
31  * @value 1 Betaflight / Cleanflight
32  *
33  * @group Mixer Output
34  */
35 PARAM_DEFINE_INT32(MOT_ORDERING, 0);
PARAM_DEFINE_INT32(GPS_DUMP_COMM, 0)
Dump GPS communication to a file.