<?xml version="1.0" encoding="utf-8"?>
        <!-- Dynamically generated list of documented parameters (generated by param_parse.py) -->    
        <paramfile>
        <vehicles>
        <parameters name="ArduPlane">
<param humanName="Eeprom format version number" name="ArduPlane:FORMAT_VERSION" documentation="This value is incremented when changes are made to the eeprom format" user="Advanced">
</param>
<param humanName="MAVLink system ID of this vehicle" name="ArduPlane:SYSID_THISMAV" documentation="Allows setting an individual MAVLink system id for this vehicle to distinguish it from others on the same network" user="Advanced">
<field name="Range">1 255</field>
</param>
<param humanName="Ground station MAVLink system ID" name="ArduPlane:SYSID_MYGCS" documentation="The identifier of the ground station in the MAVLink protocol. Don't change this unless you also modify the ground station to match." user="Advanced">
<field name="Range">1 255</field>
</param>
<param humanName="Autotune level" name="ArduPlane:AUTOTUNE_LEVEL" documentation="Level of aggressiveness of pitch and roll PID gains. Lower values result in a 'softer' tune. Level 6 recommended for most planes." user="Standard">
<field name="Range">1 10</field>
<field name="Increment">1</field>
</param>
<param humanName="Telemetry startup delay " name="ArduPlane:TELEM_DELAY" documentation="The amount of time (in seconds) to delay radio telemetry to prevent an Xbee bricking on power up" user="Standard">
<field name="Range">0 30</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="GCS PID tuning mask" name="ArduPlane:GCS_PID_MASK" documentation="bitmask of PIDs to send MAVLink PID_TUNING messages for" user="Advanced">
<field name="Bitmask">0:Roll,1:Pitch,2:Yaw,3:Steering,4:Landing</field>
</param>
<param humanName="Rudder Mix" name="ArduPlane:KFF_RDDRMIX" documentation="Amount of rudder to add during aileron movement. Increase if nose initially yaws away from roll. Reduces adverse yaw." user="Standard">
<field name="Range">0 1</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Throttle to Pitch Mix" name="ArduPlane:KFF_THR2PTCH" documentation="Degrees of elevator added for full throttle application. Increase to compensate for throttle causing down pitch." user="Advanced">
<field name="Range">0 5</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Low throttle pitch down trim " name="ArduPlane:STAB_PITCH_DOWN" documentation="Degrees of down pitch added when throttle is below TRIM_THROTTLE in FBWA and AUTOTUNE modes. Scales linearly so full value is added when THR_MIN is reached. Helps to keep airspeed higher in glides or landing approaches and prevents accidental stalls. 2 degrees recommended for most planes." user="Advanced">
<field name="Range">0 15</field>
<field name="Increment">0.1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Glide slope minimum" name="ArduPlane:GLIDE_SLOPE_MIN" documentation="This controls the minimum altitude change for a waypoint before a glide slope will be used instead of an immediate altitude change. The default value is 15 meters, which helps to smooth out waypoint missions where small altitude changes happen near waypoints. If you don't want glide slopes to be used in missions then you can set this to zero, which will disable glide slope calculations. Otherwise you can set it to a minimum number of meters of altitude error to the destination waypoint before a glide slope will be used to change altitude." user="Advanced">
<field name="Range">0 1000</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Glide slope threshold" name="ArduPlane:GLIDE_SLOPE_THR" documentation="This controls the height above the glide slope the plane may be before rebuilding a glide slope. This is useful for smoothing out an autotakeoff" user="Advanced">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Stick Mixing" name="ArduPlane:STICK_MIXING" documentation='When enabled, this adds user stick input to the control surfaces in auto modes, allowing the user to have some degree of flight control without changing modes.  There are two types of stick mixing available. If you set STICK_MIXING to 1 then it will use "fly by wire" mixing, which controls the roll and pitch in the same way that the FBWA mode does. This is the safest option if you usually fly ArduPlane in FBWA or FBWB mode. If you set STICK_MIXING to 2 then it will enable direct mixing mode, which is what the STABILIZE mode uses. That will allow for much more extreme maneuvers while in AUTO mode.' user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">FBWMixing</value>
<value code="2">DirectMixing</value>
</values>
</param>
<param humanName="Use FBWA steering in AUTO" name="ArduPlane:AUTO_FBW_STEER" documentation="When enabled this option gives FBWA navigation and steering in AUTO mode. This can be used to allow manual stabilised piloting with waypoint logic for triggering payloads. With this enabled the pilot has the same control over the plane as in FBWA mode, and the normal AUTO navigation is completely disabled. THIS OPTION IS NOT RECOMMENDED FOR NORMAL USE." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="42">Enabled</value>
</values>
</param>
<param humanName="Takeoff throttle min speed" name="ArduPlane:TKOFF_THR_MINSPD" documentation="Minimum GPS ground speed in m/s used by the speed check that un-suppresses throttle in auto-takeoff. This can be be used for catapult launches where you want the motor to engage only after the plane leaves the catapult, but it is preferable to use the TKOFF_THR_MINACC and TKOFF_THR_DELAY parameters for catapult launches due to the errors associated with GPS measurements. For hand launches with a pusher prop it is strongly advised that this parameter be set to a value no less than 4 m/s to provide additional protection against premature motor start. Note that the GPS velocity will lag the real velocity by about 0.5 seconds. The ground speed check is delayed by the TKOFF_THR_DELAY parameter." user="User">
<field name="Range">0 30</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Takeoff throttle min acceleration" name="ArduPlane:TKOFF_THR_MINACC" documentation='Minimum forward acceleration in m/s/s before arming the ground speed check in auto-takeoff. This is meant to be used for hand launches. Setting this value to 0 disables the acceleration test which means the ground speed check will always be armed which could allow GPS velocity jumps to start the engine. For hand launches and bungee launches this should be set to around 15. Also see TKOFF_ACCEL_CNT paramter for control of full "shake to arm".' user="User">
<field name="Range">0 30</field>
<field name="Increment">0.1</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Takeoff throttle delay" name="ArduPlane:TKOFF_THR_DELAY" documentation="This parameter sets the time delay (in 1/10ths of a second) that the ground speed check is delayed after the forward acceleration check controlled by TKOFF_THR_MINACC has passed. For hand launches with pusher propellers it is essential that this is set to a value of no less than 2 (0.2 seconds) to ensure that the aircraft is safely clear of the throwers arm before the motor can start. For bungee launches a larger value can be used (such as 30) to give time for the bungee to release from the aircraft before the motor is started." user="User">
<field name="Range">0 127</field>
<field name="Increment">1</field>
<field name="Units">ds</field>
<field name="UnitText">deciseconds</field>
</param>
<param humanName="Takeoff tail dragger elevator" name="ArduPlane:TKOFF_TDRAG_ELEV" documentation="This parameter sets the amount of elevator to apply during the initial stage of a takeoff. It is used to hold the tail wheel of a taildragger on the ground during the initial takeoff stage to give maximum steering. This option should be combined with the TKOFF_TDRAG_SPD1 option and the GROUND_STEER_ALT option along with tuning of the ground steering controller. A value of zero means to bypass the initial &quot;tail hold&quot; stage of takeoff. Set to zero for hand and catapult launch. For tail-draggers you should normally set this to 100, meaning full up elevator during the initial stage of takeoff. For most tricycle undercarriage aircraft a value of zero will work well, but for some tricycle aircraft a small negative value (say around -20 to -30) will apply down elevator which will hold the nose wheel firmly on the ground during initial acceleration. Only use a negative value if you find that the nosewheel doesn't grip well during takeoff. Too much down elevator on a tricycle undercarriage may cause instability in steering as the plane pivots around the nosewheel. Add down elevator 10 percent at a time." user="User">
<field name="Range">-100 100</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Takeoff tail dragger speed1" name="ArduPlane:TKOFF_TDRAG_SPD1" documentation='This parameter sets the airspeed at which to stop holding the tail down and transition to rudder control of steering on the ground. When TKOFF_TDRAG_SPD1 is reached the pitch of the aircraft will be held level until TKOFF_ROTATE_SPD is reached, at which point the takeoff pitch specified in the mission will be used to "rotate" the pitch for takeoff climb. Set TKOFF_TDRAG_SPD1 to zero to go straight to rotation. This should be set to zero for hand launch and catapult launch. It should also be set to zero for tricycle undercarriages unless you are using the method above to genetly hold the nose wheel down. For tail dragger aircraft it should be set just below the stall speed.' user="User">
<field name="Range">0 30</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Takeoff rotate speed" name="ArduPlane:TKOFF_ROTATE_SPD" documentation='This parameter sets the airspeed at which the aircraft will "rotate", setting climb pitch specified in the mission. If TKOFF_ROTATE_SPD is zero then the climb pitch will be used as soon as takeoff is started. For hand launch and catapult launches a TKOFF_ROTATE_SPD of zero should be set. For all ground launches TKOFF_ROTATE_SPD should be set above the stall speed, usually by about 10 to 30 percent' user="User">
<field name="Range">0 30</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Takeoff throttle slew rate" name="ArduPlane:TKOFF_THR_SLEW" documentation="This parameter sets the slew rate for the throttle during auto takeoff. When this is zero the THR_SLEWRATE parameter is used during takeoff. For rolling takeoffs it can be a good idea to set a lower slewrate for takeoff to give a slower acceleration which can improve ground steering control. The value is a percentage throttle change per second, so a value of 20 means to advance the throttle over 5 seconds on takeoff. Values below 20 are not recommended as they may cause the plane to try to climb out with too little throttle. A value of -1 means no limit on slew rate in takeoff." user="User">
<field name="Range">-1 127</field>
<field name="Increment">1</field>
<field name="Units">%/s</field>
<field name="UnitText">percent per second</field>
</param>
<param humanName="Takeoff pitch limit reduction" name="ArduPlane:TKOFF_PLIM_SEC" documentation="This parameter reduces the pitch minimum limit of an auto-takeoff just a few seconds before it reaches the target altitude. This reduces overshoot by allowing the flight controller to start leveling off a few seconds before reaching the target height. When set to zero, the mission pitch min is enforced all the way to and through the target altitude, otherwise the pitch min slowly reduces to zero in the final segment. This is the pitch_min, not the demand. The flight controller should still be commanding to gain altitude to finish the takeoff but with this param it is not forcing it higher than it wants to be." user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">0.5</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Takeoff flap percentage" name="ArduPlane:TKOFF_FLAP_PCNT" documentation="The amount of flaps (as a percentage) to apply in automatic takeoff" user="Advanced">
<field name="Range">0 100</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="FBWA taildragger channel" name="ArduPlane:FBWA_TDRAG_CHAN" documentation="This is a RC input channel which when it goes above 1700 enables FBWA taildragger takeoff mode. It should be assigned to a momentary switch. Once this feature is enabled it will stay enabled until the aircraft goes above TKOFF_TDRAG_SPD1 airspeed, changes mode, or the pitch goes above the initial pitch when this is engaged or goes below 0 pitch. When enabled the elevator will be forced to TKOFF_TDRAG_ELEV. This option allows for easier takeoffs on taildraggers in FBWA mode, and also makes it easier to test auto-takeoff steering handling in FBWA. Setting it to 0 disables this option." user="Standard">
</param>
<param humanName="Level flight roll limit" name="ArduPlane:LEVEL_ROLL_LIMIT" documentation="This controls the maximum bank angle in degrees during flight modes where level flight is desired, such as in the final stages of landing, and during auto takeoff. This should be a small angle (such as 5 degrees) to prevent a wing hitting the runway during takeoff or landing. Setting this to zero will completely disable heading hold on auto takeoff and final landing approach." user="User">
<field name="Range">0 45</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Bitmask for when to allow negative reverse thrust" name="ArduPlane:USE_REV_THRUST" documentation="This controls when to use reverse thrust. If set to zero then reverse thrust is never used. If set to a non-zero value then the bits correspond to flight stages where reverse thrust may be used. Note that reverse thrust is only ever auto-enabled in auto-throttle modes. In modes where throttle control is pilot controlled the ability to do reverse thrust is controlled by throttle stick input. The most commonly used value for USE_REV_THRUST is 2, which means AUTO_LAND only. That enables reverse thrust in the landing stage of AUTO mode. Another common choice is 1, which means to use reverse thrust in all auto flight stages." user="Advanced">
<field name="Bitmask">0:AUTO_ALWAYS,1:AUTO_LAND,2:AUTO_LOITER_TO_ALT,3:AUTO_LOITER_ALL,4:AUTO_WAYPOINTS,5:LOITER,6:RTL,7:CIRCLE,8:CRUISE,9:FBWB,10:GUIDED</field>
<values>
<value code="0">Never</value>
<value code="1">AutoAlways</value>
<value code="2">AutoLanding</value>
</values>
</param>
<param humanName="Navigation controller selection" name="ArduPlane:NAV_CONTROLLER" documentation="Which navigation controller to enable. Currently the only navigation controller available is L1. From time to time other experimental controllers will be added which are selected using this parameter." user="Standard">
<values>
<value code="0">Default</value>
<value code="1">L1Controller</value>
</values>
</param>
<param humanName="Altitude control algorithm" name="ArduPlane:ALT_CTRL_ALG" documentation="This sets what algorithm will be used for altitude control. The default is zero, which selects the most appropriate algorithm for your airframe. Currently the default is to use TECS (total energy control system). From time to time we will add other experimental altitude control algorithms which will be selected using this parameter." user="Advanced">
<values>
<value code="0">Automatic</value>
</values>
</param>
<param humanName="Altitude offset" name="ArduPlane:ALT_OFFSET" documentation="This is added to the target altitude in automatic flight. It can be used to add a global altitude offset to a mission" user="Advanced">
<field name="Range">-32767 32767</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Waypoint Radius" name="ArduPlane:WP_RADIUS" documentation='Defines the maximum distance from a waypoint that when crossed indicates the waypoint may be complete. To avoid the aircraft looping around the waypoint in case it misses by more than the WP_RADIUS an additional check is made to see if the aircraft has crossed a "finish line" passing through the waypoint and perpendicular to the flight path from the previous waypoint. If that finish line is crossed then the waypoint is considered complete. Note that the navigation controller may decide to turn later than WP_RADIUS before a waypoint, based on how sharp the turn is and the speed of the aircraft. It is safe to set WP_RADIUS much larger than the usual turn radius of your aircraft and the navigation controller will work out when to turn. If you set WP_RADIUS too small then you will tend to overshoot the turns.' user="Standard">
<field name="Range">1 32767</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Waypoint Maximum Radius" name="ArduPlane:WP_MAX_RADIUS" documentation='Sets the maximum distance to a waypoint for the waypoint to be considered complete. This overrides the "cross the finish line" logic that is normally used to consider a waypoint complete. For normal AUTO behaviour this parameter should be set to zero. Using a non-zero value is only recommended when it is critical that the aircraft does approach within the given radius, and should loop around until it has done so. This can cause the aircraft to loop forever if its turn radius is greater than the maximum radius set.' user="Standard">
<field name="Range">0 32767</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Waypoint Loiter Radius" name="ArduPlane:WP_LOITER_RAD" documentation="Defines the distance from the waypoint center, the plane will maintain during a loiter. If you set this value to a negative number then the default loiter direction will be counter-clockwise instead of clockwise." user="Standard">
<field name="Range">-32767 32767</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="RTL loiter radius" name="ArduPlane:RTL_RADIUS" documentation="Defines the radius of the loiter circle when in RTL mode. If this is zero then WP_LOITER_RAD is used. If the radius is negative then a counter-clockwise is used. If positive then a clockwise loiter is used." user="Standard">
<field name="Range">-32767 32767</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Action on geofence breach" name="ArduPlane:FENCE_ACTION" documentation="What to do on fence breach. If this is set to 0 then no action is taken, and geofencing is disabled. If this is set to 1 then the plane will enter GUIDED mode, with the target waypoint as the fence return point. If this is set to 2 then the fence breach is reported to the ground station, but no other action is taken. If set to 3 then the plane enters guided mode but the pilot retains manual throttle control. If set to 4 the plane enters RTL mode, with the target waypoint as the closest rally point (or home point if there are no rally points)." user="Standard">
<values>
<value code="0">None</value>
<value code="1">GuidedMode</value>
<value code="2">ReportOnly</value>
<value code="3">GuidedModeThrPass</value>
<value code="4">RTL_Mode</value>
</values>
</param>
<param humanName="Fence Total" name="ArduPlane:FENCE_TOTAL" documentation="Number of geofence points currently loaded" user="Advanced">
</param>
<param humanName="Fence Channel" name="ArduPlane:FENCE_CHANNEL" documentation="RC Channel to use to enable geofence. PWM input above 1750 enables the geofence" user="Standard">
</param>
<param humanName="Fence Minimum Altitude" name="ArduPlane:FENCE_MINALT" documentation="Minimum altitude allowed before geofence triggers" user="Standard">
<field name="Range">0 32767</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Fence Maximum Altitude" name="ArduPlane:FENCE_MAXALT" documentation="Maximum altitude allowed before geofence triggers" user="Standard">
<field name="Range">0 32767</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Fence Return Altitude" name="ArduPlane:FENCE_RETALT" documentation="Altitude the aircraft will transit to when a fence breach occurs.  If FENCE_RETALT is &lt;= 0 then the midpoint between FENCE_MAXALT and FENCE_MINALT is used, unless FENCE_MAXALT &lt; FENCE_MINALT.  If FENCE_MAXALT &lt; FENCE_MINALT AND FENCE_RETALT is &lt;= 0 then ALT_HOLD_RTL is the altitude used on a fence breach." user="Standard">
<field name="Range">0 32767</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Fence automatic enable" name="ArduPlane:FENCE_AUTOENABLE" documentation="When set to 1, geofence automatically enables after an auto takeoff and automatically disables at the beginning of an auto landing.  When on the ground before takeoff the fence is disabled.  When set to 2, the fence autoenables after an auto takeoff, but only disables the fence floor during landing. It is highly recommended to not use this option for line of sight flying and use a fence enable channel instead. When set to 3 the fence auto-enables when the vehicle is armed and disables when disarmed and arming will fail if the fence cannot be enabled or is outside the fence. Option 3 cannot be used with a non-zero FENCE_MINALT" user="Standard">
<values>
<value code="0">NoAutoEnable</value>
<value code="1">AutoEnable</value>
<value code="2">AutoEnableDisableFloorOnly</value>
<value code="3">EnableWhenArmed</value>
</values>
</param>
<param humanName="Fence Return to Rally" name="ArduPlane:FENCE_RET_RALLY" documentation="When set to 1: on fence breach the plane will return to the nearest rally point rather than the fence return point.  If no rally points have been defined the plane will return to the home point.  " user="Standard">
<values>
<value code="0">FenceReturnPoint</value>
<value code="1">NearestRallyPoint</value>
</values>
</param>
<param humanName="Enable stall prevention" name="ArduPlane:STALL_PREVENTION" documentation="Enables roll limits at low airspeed in roll limiting flight modes. Roll limits based on aerodynamic load factor in turns and scale on ARSPD_FBW_MIN that must be set correctly. Without airspeed sensor, uses synthetic airspeed from wind speed estimate that may both be inaccurate." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Minimum Airspeed" name="ArduPlane:ARSPD_FBW_MIN" documentation="Minimum airspeed demanded in automatic throttle modes. Should be set to 20% higher than level flight stall speed." user="Standard">
<field name="Range">5 100</field>
<field name="Increment">1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Maximum Airspeed" name="ArduPlane:ARSPD_FBW_MAX" documentation="Maximum airspeed demanded in automatic throttle modes. Should be set slightly less than level flight speed at THR_MAX and also at least 50% above ARSPD_FBW_MAX to allow for accurate TECS altitude control." user="Standard">
<field name="Range">5 100</field>
<field name="Increment">1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Fly By Wire elevator reverse" name="ArduPlane:FBWB_ELEV_REV" documentation="Reverse sense of elevator in FBWB and CRUISE modes. When set to 0 up elevator (pulling back on the stick) means to lower altitude. When set to 1, up elevator means to raise altitude." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Use terrain following" name="ArduPlane:TERRAIN_FOLLOW" documentation="This enables terrain following for CRUISE mode, FBWB mode, RTL and for rally points. To use this option you also need to set TERRAIN_ENABLE to 1, which enables terrain data fetching from the GCS, and you need to have a GCS that supports sending terrain data to the aircraft. When terrain following is enabled then CRUISE and FBWB mode will hold height above terrain rather than height above home. In RTL the return to launch altitude will be considered to be a height above the terrain. Rally point altitudes will be taken as height above the terrain. This option does not affect mission items, which have a per-waypoint flag for whether they are height above home or height above the terrain. To use terrain following missions you need a ground station which can set the waypoint type to be a terrain height waypoint when creating the mission." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Terrain lookahead" name="ArduPlane:TERRAIN_LOOKAHD" documentation="This controls how far ahead the terrain following code looks to ensure it stays above upcoming terrain. A value of zero means no lookahead, so the controller will track only the terrain directly below the aircraft. The lookahead will never extend beyond the next waypoint when in AUTO mode." user="Standard">
<field name="Range">0 10000</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Fly By Wire B altitude change rate" name="ArduPlane:FBWB_CLIMB_RATE" documentation="This sets the rate in m/s at which FBWB and CRUISE modes will change its target altitude for full elevator deflection. Note that the actual climb rate of the aircraft can be lower than this, depending on your airspeed and throttle control settings. If you have this parameter set to the default value of 2.0, then holding the elevator at maximum deflection for 10 seconds would change the target altitude by 20 meters." user="Standard">
<field name="Range">1 10</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Minimum Throttle" name="ArduPlane:THR_MIN" documentation="Minimum throttle percentage used in all modes except manual, provided THR_PASS_STAB is not set. Negative values allow reverse thrust if hardware supports it." user="Standard">
<field name="Range">-100 100</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Maximum Throttle" name="ArduPlane:THR_MAX" documentation="Maximum throttle percentage used in automatic throttle modes." user="Standard">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Maximum Throttle for takeoff" name="ArduPlane:TKOFF_THR_MAX" documentation="The maximum throttle setting during automatic takeoff. If this is zero then THR_MAX is used for takeoff as well." user="Advanced">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Throttle slew rate" name="ArduPlane:THR_SLEWRATE" documentation="Maximum change in throttle percentage per second. Lower limit  based on 1 microsend of servo increase per loop. Divide SCHED_LOOP_RATE by approximately 10 to determine minimum achievable value." user="Standard">
<field name="Range">0 127</field>
<field name="Increment">1</field>
<field name="Units">%/s</field>
<field name="UnitText">percent per second</field>
</param>
<param humanName="Flap slew rate" name="ArduPlane:FLAP_SLEWRATE" documentation="maximum percentage change in flap output per second. A setting of 25 means to not change the flap by more than 25% of the full flap range in one second. A value of 0 means no rate limiting." user="Advanced">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">%/s</field>
<field name="UnitText">percent per second</field>
</param>
<param humanName="Throttle suppress manual passthru" name="ArduPlane:THR_SUPP_MAN" documentation="When throttle is suppressed in auto mode it is normally forced to zero. If you enable this option, then while suppressed it will be manual throttle. This is useful on petrol engines to hold the idle throttle manually while waiting for takeoff" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Throttle passthru in stabilize" name="ArduPlane:THR_PASS_STAB" documentation="If this is set then when in STABILIZE, FBWA or ACRO modes the throttle is a direct passthru from the transmitter. This means the THR_MIN and THR_MAX settings are not used in these modes. This is useful for petrol engines where you setup a throttle cut switch that suppresses the throttle below the normal minimum." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Throttle and RC Failsafe Enable" name="ArduPlane:THR_FAILSAFE" documentation="This enables failsafe on loss of RC input. How this is detected depends on the type of RC receiver being used. For older radios an input below the THR_FS_VALUE is used to trigger failsafe. For newer radios the failsafe trigger is part of the protocol between the autopilot and receiver." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Throttle Failsafe Value" name="ArduPlane:THR_FS_VALUE" documentation="The PWM level on the throttle input channel below which throttle failsafe triggers. Note that this should be well below the normal minimum for your throttle channel." user="Standard">
<field name="Range">925 2200</field>
<field name="Increment">1</field>
</param>
<param humanName="Throttle cruise percentage" name="ArduPlane:TRIM_THROTTLE" documentation="Target percentage of throttle to apply for flight in automatic throttle modes and throttle percentage that maintains TRIM_ARSPD_CM. Caution: low battery voltages at the end of flights may require higher throttle to maintain airspeed." user="Standard">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Throttle nudge enable" name="ArduPlane:THROTTLE_NUDGE" documentation="When enabled, this uses the throttle input in auto-throttle modes to 'nudge' the throttle or airspeed to higher or lower values. When you have an airspeed sensor the nudge affects the target airspeed, so that throttle inputs above 50% will increase the target airspeed from TRIM_ARSPD_CM up to a maximum of ARSPD_FBW_MAX. When no airspeed sensor is enabled the throttle nudge will push up the target throttle for throttle inputs above 50%." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Short failsafe action" name="ArduPlane:FS_SHORT_ACTN" documentation="The action to take on a short (FS_SHORT_TIMEOUT) failsafe event. A short failsafe even can be triggered either by loss of RC control (see THR_FS_VALUE) or by loss of GCS control (see FS_GCS_ENABL). If in CIRCLE or RTL mode this parameter is ignored. A short failsafe event in stabilization and manual modes will cause an change to CIRCLE mode if FS_SHORT_ACTN is 0 or 1, and a change to FBWA mode if FS_SHORT_ACTN is 2. In all other modes (AUTO, GUIDED and LOITER) a short failsafe event will cause no mode change if FS_SHORT_ACTN is set to 0, will cause a change to CIRCLE mode if set to 1 and will change to FBWA mode if set to 2. Please see the documentation for FS_LONG_ACTN for the behaviour after FS_LONG_TIMEOUT seconds of failsafe." user="Standard">
<values>
<value code="0">CIRCLE/no change(if already in AUTO|GUIDED|LOITER)</value>
<value code="1">CIRCLE</value>
<value code="2">FBWA</value>
<value code="3">Disable</value>
</values>
</param>
<param humanName="Short failsafe timeout" name="ArduPlane:FS_SHORT_TIMEOUT" documentation="The time in seconds that a failsafe condition has to persist before a short failsafe event will occur. This defaults to 1.5 seconds" user="Standard">
<field name="Range">1 100</field>
<field name="Increment">0.5</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Long failsafe action" name="ArduPlane:FS_LONG_ACTN" documentation="The action to take on a long (FS_LONG_TIMEOUT seconds) failsafe event. If the aircraft was in a stabilization or manual mode when failsafe started and a long failsafe occurs then it will change to RTL mode if FS_LONG_ACTN is 0 or 1, and will change to FBWA if FS_LONG_ACTN is set to 2. If the aircraft was in an auto mode (such as AUTO or GUIDED) when the failsafe started then it will continue in the auto mode if FS_LONG_ACTN is set to 0, will change to RTL mode if FS_LONG_ACTN is set to 1 and will change to FBWA mode if FS_LONG_ACTN is set to 2. If FS_LONG_ACTION is set to 3, the parachute will be deployed (make sure the chute is configured and enabled). " user="Standard">
<values>
<value code="0">Continue</value>
<value code="1">ReturnToLaunch</value>
<value code="2">Glide</value>
<value code="3">Deploy Parachute</value>
</values>
</param>
<param humanName="Long failsafe timeout" name="ArduPlane:FS_LONG_TIMEOUT" documentation="The time in seconds that a failsafe condition has to persist before a long failsafe event will occur. This defaults to 5 seconds." user="Standard">
<field name="Range">1 300</field>
<field name="Increment">0.5</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="GCS failsafe enable" name="ArduPlane:FS_GCS_ENABL" documentation="Enable ground control station telemetry failsafe. Failsafe will trigger after FS_LONG_TIMEOUT seconds of no MAVLink heartbeat messages. There are three possible enabled settings. Seeing FS_GCS_ENABL to 1 means that GCS failsafe will be triggered when the aircraft has not received a MAVLink HEARTBEAT message. Setting FS_GCS_ENABL to 2 means that GCS failsafe will be triggered on either a loss of HEARTBEAT messages, or a RADIO_STATUS message from a MAVLink enabled 3DR radio indicating that the ground station is not receiving status updates from the aircraft, which is indicated by the RADIO_STATUS.remrssi field being zero (this may happen if you have a one way link due to asymmetric noise on the ground station and aircraft radios).Setting FS_GCS_ENABL to 3 means that GCS failsafe will be triggered by Heartbeat(like option one), but only in AUTO mode. WARNING: Enabling this option opens up the possibility of your plane going into failsafe mode and running the motor on the ground it it loses contact with your ground station. If this option is enabled on an electric plane then you should enable ARMING_REQUIRED." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Heartbeat</value>
<value code="2">HeartbeatAndREMRSSI</value>
<value code="3">HeartbeatAndAUTO</value>
</values>
</param>
<param humanName="Flightmode channel" name="ArduPlane:FLTMODE_CH" documentation="RC Channel to use for flight mode control" user="Advanced">
</param>
<param humanName="FlightMode1" name="ArduPlane:FLTMODE1" documentation="Flight mode for switch position 1 (910 to 1230 and above 2049)" user="Standard">
<values>
<value code="0">Manual</value>
<value code="1">CIRCLE</value>
<value code="2">STABILIZE</value>
<value code="3">TRAINING</value>
<value code="4">ACRO</value>
<value code="5">FBWA</value>
<value code="6">FBWB</value>
<value code="7">CRUISE</value>
<value code="8">AUTOTUNE</value>
<value code="10">Auto</value>
<value code="11">RTL</value>
<value code="12">Loiter</value>
<value code="13">TAKEOFF</value>
<value code="14">AVOID_ADSB</value>
<value code="15">Guided</value>
<value code="17">QSTABILIZE</value>
<value code="18">QHOVER</value>
<value code="19">QLOITER</value>
<value code="20">QLAND</value>
<value code="21">QRTL</value>
<value code="22">QAUTOTUNE</value>
<value code="23">QACRO</value>
</values>
</param>
<param humanName="FlightMode2" name="ArduPlane:FLTMODE2" documentation="Flight mode for switch position 2 (1231 to 1360)" user="Standard">
<values>
<value code="0">Manual</value>
<value code="1">CIRCLE</value>
<value code="2">STABILIZE</value>
<value code="3">TRAINING</value>
<value code="4">ACRO</value>
<value code="5">FBWA</value>
<value code="6">FBWB</value>
<value code="7">CRUISE</value>
<value code="8">AUTOTUNE</value>
<value code="10">Auto</value>
<value code="11">RTL</value>
<value code="12">Loiter</value>
<value code="13">TAKEOFF</value>
<value code="14">AVOID_ADSB</value>
<value code="15">Guided</value>
<value code="17">QSTABILIZE</value>
<value code="18">QHOVER</value>
<value code="19">QLOITER</value>
<value code="20">QLAND</value>
<value code="21">QRTL</value>
<value code="22">QAUTOTUNE</value>
<value code="23">QACRO</value>
</values>
</param>
<param humanName="FlightMode3" name="ArduPlane:FLTMODE3" documentation="Flight mode for switch position 3 (1361 to 1490)" user="Standard">
<values>
<value code="0">Manual</value>
<value code="1">CIRCLE</value>
<value code="2">STABILIZE</value>
<value code="3">TRAINING</value>
<value code="4">ACRO</value>
<value code="5">FBWA</value>
<value code="6">FBWB</value>
<value code="7">CRUISE</value>
<value code="8">AUTOTUNE</value>
<value code="10">Auto</value>
<value code="11">RTL</value>
<value code="12">Loiter</value>
<value code="13">TAKEOFF</value>
<value code="14">AVOID_ADSB</value>
<value code="15">Guided</value>
<value code="17">QSTABILIZE</value>
<value code="18">QHOVER</value>
<value code="19">QLOITER</value>
<value code="20">QLAND</value>
<value code="21">QRTL</value>
<value code="22">QAUTOTUNE</value>
<value code="23">QACRO</value>
</values>
</param>
<param humanName="FlightMode4" name="ArduPlane:FLTMODE4" documentation="Flight mode for switch position 4 (1491 to 1620)" user="Standard">
<values>
<value code="0">Manual</value>
<value code="1">CIRCLE</value>
<value code="2">STABILIZE</value>
<value code="3">TRAINING</value>
<value code="4">ACRO</value>
<value code="5">FBWA</value>
<value code="6">FBWB</value>
<value code="7">CRUISE</value>
<value code="8">AUTOTUNE</value>
<value code="10">Auto</value>
<value code="11">RTL</value>
<value code="12">Loiter</value>
<value code="13">TAKEOFF</value>
<value code="14">AVOID_ADSB</value>
<value code="15">Guided</value>
<value code="17">QSTABILIZE</value>
<value code="18">QHOVER</value>
<value code="19">QLOITER</value>
<value code="20">QLAND</value>
<value code="21">QRTL</value>
<value code="22">QAUTOTUNE</value>
<value code="23">QACRO</value>
</values>
</param>
<param humanName="FlightMode5" name="ArduPlane:FLTMODE5" documentation="Flight mode for switch position 5 (1621 to 1749)" user="Standard">
<values>
<value code="0">Manual</value>
<value code="1">CIRCLE</value>
<value code="2">STABILIZE</value>
<value code="3">TRAINING</value>
<value code="4">ACRO</value>
<value code="5">FBWA</value>
<value code="6">FBWB</value>
<value code="7">CRUISE</value>
<value code="8">AUTOTUNE</value>
<value code="10">Auto</value>
<value code="11">RTL</value>
<value code="12">Loiter</value>
<value code="13">TAKEOFF</value>
<value code="14">AVOID_ADSB</value>
<value code="15">Guided</value>
<value code="17">QSTABILIZE</value>
<value code="18">QHOVER</value>
<value code="19">QLOITER</value>
<value code="20">QLAND</value>
<value code="21">QRTL</value>
<value code="22">QAUTOTUNE</value>
<value code="23">QACRO</value>
</values>
</param>
<param humanName="FlightMode6" name="ArduPlane:FLTMODE6" documentation="Flight mode for switch position 6 (1750 to 2049)" user="Standard">
<values>
<value code="0">Manual</value>
<value code="1">CIRCLE</value>
<value code="2">STABILIZE</value>
<value code="3">TRAINING</value>
<value code="4">ACRO</value>
<value code="5">FBWA</value>
<value code="6">FBWB</value>
<value code="7">CRUISE</value>
<value code="8">AUTOTUNE</value>
<value code="10">Auto</value>
<value code="11">RTL</value>
<value code="12">Loiter</value>
<value code="13">TAKEOFF</value>
<value code="14">AVOID_ADSB</value>
<value code="15">Guided</value>
<value code="17">QSTABILIZE</value>
<value code="18">QHOVER</value>
<value code="19">QLOITER</value>
<value code="20">QLAND</value>
<value code="21">QRTL</value>
<value code="22">QAUTOTUNE</value>
<value code="23">QACRO</value>
</values>
</param>
<param humanName="Initial flight mode" name="ArduPlane:INITIAL_MODE" documentation="This selects the mode to start in on boot. This is useful for when you want to start in AUTO mode on boot without a receiver." user="Advanced">
<values>
<value code="0">Manual</value>
<value code="1">CIRCLE</value>
<value code="2">STABILIZE</value>
<value code="3">TRAINING</value>
<value code="4">ACRO</value>
<value code="5">FBWA</value>
<value code="6">FBWB</value>
<value code="7">CRUISE</value>
<value code="8">AUTOTUNE</value>
<value code="10">Auto</value>
<value code="11">RTL</value>
<value code="12">Loiter</value>
<value code="13">TAKEOFF</value>
<value code="14">AVOID_ADSB</value>
<value code="15">Guided</value>
<value code="17">QSTABILIZE</value>
<value code="18">QHOVER</value>
<value code="19">QLOITER</value>
<value code="20">QLAND</value>
<value code="21">QRTL</value>
<value code="22">QAUTOTUNE</value>
<value code="23">QACRO</value>
</values>
</param>
<param humanName="Maximum Bank Angle" name="ArduPlane:LIM_ROLL_CD" documentation="Maximum bank angle commanded in modes with stabilized limits. Increase this value for sharper turns, but decrease to prevent accelerated stalls." user="Standard">
<field name="Range">0 9000</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Maximum Pitch Angle" name="ArduPlane:LIM_PITCH_MAX" documentation="Maximum pitch up angle commanded in modes with stabilized limits." user="Standard">
<field name="Range">0 9000</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Minimum Pitch Angle" name="ArduPlane:LIM_PITCH_MIN" documentation="Maximum pitch down angle commanded in modes with stabilized limits" user="Standard">
<field name="Range">-9000 0</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="ACRO mode roll rate" name="ArduPlane:ACRO_ROLL_RATE" documentation="The maximum roll rate at full stick deflection in ACRO mode" user="Standard">
<field name="Range">10 500</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="ACRO mode pitch rate" name="ArduPlane:ACRO_PITCH_RATE" documentation="The maximum pitch rate at full stick deflection in ACRO mode" user="Standard">
<field name="Range">10 500</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="ACRO mode attitude locking" name="ArduPlane:ACRO_LOCKING" documentation="Enable attitude locking when sticks are released" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Ground steer altitude" name="ArduPlane:GROUND_STEER_ALT" documentation="Altitude at which to use the ground steering controller on the rudder. If non-zero then the STEER2SRV controller will be used to control the rudder for altitudes within this limit of the home altitude." user="Standard">
<field name="Range">-100 100</field>
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Ground steer rate" name="ArduPlane:GROUND_STEER_DPS" documentation="Ground steering rate in degrees per second for full rudder stick deflection" user="Advanced">
<field name="Range">10 360</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="Automatic trim adjustment" name="ArduPlane:TRIM_AUTO" documentation="Enables the setting SERVOn_TRIM values to current levels when switching out of MANUAL mode. Should not be left on as mode switches while the plane is rolling or pitching can cause invalid trim values and subsequent unstable behavior. See newer and safer SERVO_AUTO_TRIM parameter for automated results." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Mixing Gain" name="ArduPlane:MIXING_GAIN" documentation="The gain for the Vtail and elevon output mixers. The default is 0.5, which ensures that the mixer doesn't saturate, allowing both input channels to go to extremes while retaining control over the output. Hardware mixers often have a 1.0 gain, which gives more servo throw, but can saturate. If you don't have enough throw on your servos with VTAIL_OUTPUT or ELEVON_OUTPUT enabled then you can raise the gain using MIXING_GAIN. The mixer allows outputs in the range 900 to 2100 microseconds." user="User">
<field name="Range">0.5 1.2</field>
</param>
<param humanName="Rudder only aircraft" name="ArduPlane:RUDDER_ONLY" documentation="Enable rudder only mode. The rudder will control attitude in attitude controlled modes (such as FBWA). You should setup your transmitter to send roll stick inputs to the RCMAP_YAW channel (normally channel 4). The rudder servo should be attached to the RCMAP_YAW channel as well. Note that automatic ground steering will be disabled for rudder only aircraft. You should also set KFF_RDDRMIX to 1.0. You will also need to setup the YAW2SRV_DAMP yaw damping appropriately for your aircraft. A value of 0.5 for YAW2SRV_DAMP is a good starting point." user="User">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Mixing Offset" name="ArduPlane:MIXING_OFFSET" documentation="The offset for the Vtail and elevon output mixers, as a percentage. This can be used in combination with MIXING_GAIN to configure how the control surfaces respond to input. The response to aileron or elevator input can be increased by setting this parameter to a positive or negative value. A common usage is to enter a positive value to increase the aileron response of the elevons of a flying wing. The default value of zero will leave the aileron-input response equal to the elevator-input response." user="User">
<field name="Range">-1000 1000</field>
<field name="Units">d%</field>
<field name="UnitText">decipercent</field>
</param>
<param humanName="Differential spoilers rudder rate" name="ArduPlane:DSPOILR_RUD_RATE" documentation="Sets the amount of deflection that the rudder output will apply to the differential spoilers, as a percentage. The default value of 100 results in full rudder applying full deflection. A value of 0 will result in the differential spoilers exactly following the elevons (no rudder effect)." user="User">
<field name="Range">-100 100</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Num Resets" name="ArduPlane:SYS_NUM_RESETS" documentation="Number of APM board resets" user="Advanced">
<field name="ReadOnly">True</field>
</param>
<param humanName="Log bitmask" name="ArduPlane:LOG_BITMASK" documentation="Bitmap of what on-board log types to enable. This value is made up of the sum of each of the log types you want to be saved. It is usually best just to enable all log types by setting this to 65535. The individual bits are ATTITUDE_FAST=1, ATTITUDE_MEDIUM=2, GPS=4, PerformanceMonitoring=8, ControlTuning=16, NavigationTuning=32, Mode=64, IMU=128, Commands=256, Battery=512, Compass=1024, TECS=2048, Camera=4096, RCandServo=8192, Sonar=16384, Arming=32768, FullLogs=65535" user="Advanced">
<field name="Bitmask">0:ATTITUDE_FAST,1:ATTITUDE_MED,2:GPS,3:PM,4:CTUN,5:NTUN,6:MODE,7:IMU,8:CMD,9:CURRENT,10:COMPASS,11:TECS,12:CAMERA,13:RC,14:SONAR,15:ARM/DISARM,19:IMU_RAW</field>
<values>
<value code="0">Disabled</value>
<value code="65535">All-Default</value>
</values>
</param>
<param humanName="Reset Switch Channel" name="ArduPlane:RST_SWITCH_CH" documentation="RC channel to use to reset to last flight mode&#9;after geofence takeover." user="Advanced">
</param>
<param humanName="Reset Mission Channel" name="ArduPlane:RST_MISSION_CH" documentation="Enables a channel to reset the mission to the first waypoint. Mission restart is triggered by channel rising above 1750 PWM. 0 disables." user="Advanced">
</param>
<param humanName="Target airspeed" name="ArduPlane:TRIM_ARSPD_CM" documentation="Target airspeed in cm/s in automatic throttle modes. Value is as an indicated (calibrated/apparent) airspeed." user="User">
<field name="Units">cm/s</field>
<field name="UnitText">centimeters per second</field>
</param>
<param humanName="speed used for speed scaling calculations" name="ArduPlane:SCALING_SPEED" documentation="Airspeed in m/s to use when calculating surface speed scaling. Note that changing this value will affect all PID values" user="Advanced">
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Minimum ground speed" name="ArduPlane:MIN_GNDSPD_CM" documentation="Minimum ground speed in cm/s when under airspeed control" user="Advanced">
<field name="Units">cm/s</field>
<field name="UnitText">centimeters per second</field>
</param>
<param humanName="Pitch angle offset" name="ArduPlane:TRIM_PITCH_CD" documentation="Offset applied to AHRS pitch used for in-flight pitch trimming. Correct ground leveling is better than changing this parameter." user="Advanced">
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="RTL altitude" name="ArduPlane:ALT_HOLD_RTL" documentation="Target altitude above home for RTL mode. Maintains current altitude if set to -1. Rally point altitudes are used if plane does not return to home." user="User">
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Minimum altitude for FBWB mode" name="ArduPlane:ALT_HOLD_FBWCM" documentation="This is the minimum altitude in centimeters that FBWB and CRUISE modes will allow. If you attempt to descend below this altitude then the plane will level off. A value of zero means no limit." user="User">
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Flap input channel" name="ArduPlane:FLAP_IN_CHANNEL" documentation="An RC input channel to use for flaps control. If this is set to a RC channel number then that channel will be used for manual flaps control. When enabled, the percentage of flaps is taken as the percentage travel from the TRIM value of the channel to the MIN value of the channel. A value above the TRIM values will give inverse flaps (spoilers). This option needs to be enabled in conjunction with a FUNCTION setting on an output channel to one of the flap functions. When a FLAP_IN_CHANNEL is combined with auto-flaps the higher of the two flap percentages is taken." user="User">
</param>
<param humanName="Flap 1 percentage" name="ArduPlane:FLAP_1_PERCNT" documentation="The percentage change in flap position when FLAP_1_SPEED is reached. Use zero to disable flaps" user="Advanced">
<field name="Range">0 100</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Flap 1 speed" name="ArduPlane:FLAP_1_SPEED" documentation="The speed in meters per second at which to engage FLAP_1_PERCENT of flaps. Note that FLAP_1_SPEED should be greater than or equal to FLAP_2_SPEED" user="Advanced">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Flap 2 percentage" name="ArduPlane:FLAP_2_PERCNT" documentation="The percentage change in flap position when FLAP_2_SPEED is reached. Use zero to disable flaps" user="Advanced">
<field name="Range">0 100</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Flap 2 speed" name="ArduPlane:FLAP_2_SPEED" documentation="The speed in meters per second at which to engage FLAP_2_PERCENT of flaps. Note that FLAP_1_SPEED should be greater than or equal to FLAP_2_SPEED" user="Advanced">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="IO override channel" name="ArduPlane:OVERRIDE_CHAN" documentation="If set to a non-zero value then this is an RC input channel number to use for giving IO manual control in case the main FMU microcontroller on a board with a IO co-processor fails. When this RC input channel goes above 1750 the FMU microcontroller will no longer be involved in controlling the servos and instead the IO microcontroller will directly control the servos. Note that IO manual control will be automatically activated if the FMU crashes for any reason. This parameter allows you to test for correct manual behaviour without actually crashing the FMU. This parameter is can be set to a non-zero value either for ground testing purposes or for giving the effect of an external override control board. Please also see the docs on OVERRIDE_SAFETY. Note that you may set OVERRIDE_CHAN to the same channel as FLTMODE_CH to get IO based override when in flight mode 6. Note that when override is triggered due to a FMU crash the 6 auxiliary output channels on Pixhawk will no longer be updated, so all the flight controls you need must be assigned to the first 8 channels." user="Advanced">
</param>
<param humanName="IO override safety switch" name="ArduPlane:OVERRIDE_SAFETY" documentation="This controls whether the safety switch is turned off when you activate override with OVERRIDE_CHAN. When set to 1 the safety switch is de-activated (activating the servos) then a IO override is triggered. In that case the safety remains de-activated after override is disabled. If OVERRIDE_SAFETTY is set to 0 then the safety switch state does not change. Note that regardless of the value of this parameter the servos will be active while override is active." user="Advanced">
</param>
<param humanName="HIL mode enable" name="ArduPlane:HIL_MODE" documentation="This enables and disables hardware in the loop mode. If HIL_MODE is 1 then on the next reboot all sensors are replaced with HIL sensors which come from the GCS." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="HIL Servos enable" name="ArduPlane:HIL_SERVOS" documentation="This controls whether real servo controls are used in HIL mode. If you enable this then the APM will control the real servos in HIL mode. If disabled it will report servo values, but will not output to the real servos. Be careful that your motor and propeller are not connected if you enable this option." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Limit of error in HIL attitude before reset" name="ArduPlane:HIL_ERR_LIMIT" documentation="This controls the maximum error in degrees on any axis before HIL will reset the DCM attitude to match the HIL_STATE attitude. This limit will prevent poor timing on HIL from causing a major attitude error. If the value is zero then no limit applies." user="Advanced">
<field name="Range">0 90</field>
<field name="Increment">0.1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="RTL auto land" name="ArduPlane:RTL_AUTOLAND" documentation="Automatically begin landing sequence after arriving at RTL location. This requires the addition of a DO_LAND_START mission item, which acts as a marker for the start of a landing sequence. The closest landing sequence will be chosen to the current location. " user="Standard">
<values>
<value code="0">Disable</value>
<value code="1">Enable - go HOME then land</value>
<value code="2">Enable - go directly to landing sequence</value>
</values>
</param>
<param humanName="Crash Deceleration Threshold" name="ArduPlane:CRASH_ACC_THRESH" documentation="X-Axis deceleration threshold to notify the crash detector that there was a possible impact which helps disarm the motor quickly after a crash. This value should be much higher than normal negative x-axis forces during normal flight, check flight log files to determine the average IMU.x values for your aircraft and motor type. Higher value means less sensative (triggers on higher impact). For electric planes that don't vibrate much during fight a value of 25 is good (that's about 2.5G). For petrol/nitro planes you'll want a higher value. Set to 0 to disable the collision detector." user="Advanced">
<field name="Range">10 127</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Crash Detection" name="ArduPlane:CRASH_DETECT" documentation="Automatically detect a crash during AUTO flight and perform the bitmask selected action(s). Disarm will turn off motor for safety and to help against burning out ESC and motor. Setting the mode to manual will help save the servos from burning out by overexerting if the aircraft crashed in an odd orientation such as upsidedown. Set to 0 to disable crash detection." user="Advanced">
<field name="Bitmask">0:Disarm</field>
</param>
<param humanName="Parachute release channel" name="ArduPlane:CHUTE_CHAN" documentation="If set to a non-zero value then this is an RC input channel number to use for manually releasing the parachute. When this channel goes above 1700 the parachute will be released" user="Advanced">
</param>
<param humanName="Enable rangefinder for landing" name="ArduPlane:RNGFND_LANDING" documentation="This enables the use of a rangefinder for automatic landing. The rangefinder will be used both on the landing approach and for final flare" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GCS sysid enforcement" name="ArduPlane:SYSID_ENFORCE" documentation="This controls whether packets from other than the expected GCS system ID will be accepted" user="Advanced">
<values>
<value code="0">NotEnforced</value>
<value code="1">Enforced</value>
</values>
</param>
<param humanName="rudder differential thrust gain" name="ArduPlane:RUDD_DT_GAIN" documentation="gain control from rudder to differential thrust" user="Standard">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Manual R/C pass-through mask" name="ArduPlane:MANUAL_RCMASK" documentation="Mask of R/C channels to pass directly to corresponding output channel when in MANUAL mode. When in any mode except MANUAL the channels selected with this option behave normally. This parameter is designed to allow for complex mixing strategies to be used for MANUAL flight using transmitter based mixing. Note that when this option is used you need to be very careful with pre-flight checks to ensure that the output is correct both in MANUAL and non-MANUAL modes." user="Advanced">
<field name="Bitmask">0:Chan1,1:Chan2,2:Chan3,3:Chan4,4:Chan5,5:Chan6,6:Chan7,7:Chan8,8:Chan9,9:Chan10,10:Chan11,11:Chan12,12:Chan13,13:Chan14,14:Chan15,15:Chan16</field>
</param>
<param humanName="Home reset altitude threshold" name="ArduPlane:HOME_RESET_ALT" documentation="When the aircraft is within this altitude of the home waypoint, while disarmed it will automatically update the home position. Set to 0 to continously reset it." user="Advanced">
<field name="Range">-1 127</field>
<values>
<value code="-1">Never reset</value>
<value code="0">Always reset</value>
</values>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Flight mode options" name="ArduPlane:FLIGHT_OPTIONS" documentation="Flight mode specific options" user="Advanced">
<field name="Bitmask">0:Rudder mixing in direct flight modes only (Manual / Stabilize / Acro),1:Use centered throttle in Cruise or FBWB to indicate trim airspeed, 2:Disable attitude check for takeoff arming, 3:Force target airspeed to trim airspeed in Cruise or FBWB</field>
</param>
<param humanName="Takeoff throttle acceleration count" name="ArduPlane:TKOFF_ACCEL_CNT" documentation="This is the number of acceleration events to require for arming with TKOFF_THR_MINACC. The default is 1, which means a single forward acceleration above TKOFF_THR_MINACC will arm. By setting this higher than 1 you can require more forward/backward movements to arm." user="User">
<field name="Range">1 10</field>
</param>
<param humanName="Differential spoiler crow flaps outer weight" name="ArduPlane:DSPOILER_CROW_W1" documentation="This is amount of deflection applied to the two outer surfaces for differential spoilers for flaps to give crow flaps. It is a number from 0 to 100. At zero no crow flaps are applied. A recommended starting value is 25." user="Advanced">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Differential spoiler crow flaps inner weight" name="ArduPlane:DSPOILER_CROW_W2" documentation="This is amount of deflection applied to the two inner surfaces for differential spoilers for flaps to give crow flaps. It is a number from 0 to 100. At zero no crow flaps are applied. A recommended starting value is 45." user="Advanced">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Takeoff timeout" name="ArduPlane:TKOFF_TIMEOUT" documentation="This is the timeout for an automatic takeoff. If this is non-zero and the aircraft does not reach a ground speed of at least 4 m/s within this number of seconds then the takeoff is aborted and the vehicle disarmed. If the value is zero then no timeout applies." user="User">
<field name="Range">0 120</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Differential spoiler and crow flaps options" name="ArduPlane:DSPOILER_OPTS" documentation="Differential spoiler and crow flaps options" user="Advanced">
<field name="Bitmask">0:pitch control, 1:full span, 2:Progressive crow</field>
<field name="Values">0: none, 1: D spoilers have pitch input, 2: use both control surfaces on each wing for roll, 4: Progressive crow flaps only first (0-50% flap in) then crow flaps (50 - 100% flap in)</field>
</param>
<param humanName="Differential spoiler aileron matching" name="ArduPlane:DSPOILER_AILMTCH" documentation="This scales down the inner flaps so less than full downwards range can be used for differential spoiler and full span ailerons, 100 is use full range, upwards travel is unaffected" user="Advanced">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
</parameters>
</vehicles><libraries><parameters name="ADSB_">
<param humanName="Enable ADSB" name="ADSB_ENABLE" documentation="Enable ADS-B" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ADSB vehicle list size" name="ADSB_LIST_MAX" documentation="ADSB list size of nearest vehicles. Longer lists take longer to refresh with lower SRx_ADSB values." user="Advanced">
<field name="Range">1 100</field>
</param>
<param humanName="ADSB vehicle list radius filter" name="ADSB_LIST_RADIUS" documentation="ADSB vehicle list radius filter. Vehicles detected outside this radius will be completely ignored. They will not show up in the SRx_ADSB stream to the GCS and will not be considered in any avoidance calculations. A value of 0 will disable this filter." user="Advanced">
<field name="Range">0 100000</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="ICAO_ID vehicle identification number" name="ADSB_ICAO_ID" documentation="ICAO_ID unique vehicle identification number of this aircraft. This is a integer limited to 24bits. If set to 0 then one will be randomly generated. If set to -1 then static information is not sent, transceiver is assumed pre-programmed." user="Advanced">
<field name="Range">-1 16777215</field>
</param>
<param humanName="Emitter type" name="ADSB_EMIT_TYPE" documentation="ADSB classification for the type of vehicle emitting the transponder signal. Default value is 14 (UAV)." user="Advanced">
<values>
<value code="0">NoInfo</value>
<value code="1">Light</value>
<value code="2">Small</value>
<value code="3">Large</value>
<value code="4">HighVortexlarge</value>
<value code="5">Heavy</value>
<value code="6">HighlyManuv</value>
<value code="7">Rotocraft</value>
<value code="8">RESERVED</value>
<value code="9">Glider</value>
<value code="10">LightAir</value>
<value code="11">Parachute</value>
<value code="12">UltraLight</value>
<value code="13">RESERVED</value>
<value code="14">UAV</value>
<value code="15">Space</value>
<value code="16">RESERVED</value>
<value code="17">EmergencySurface</value>
<value code="18">ServiceSurface</value>
<value code="19">PointObstacle</value>
</values>
</param>
<param humanName="Aircraft length and width" name="ADSB_LEN_WIDTH" documentation="Aircraft length and width dimension options in Length and Width in meters. In most cases, use a value of 1 for smallest size." user="Advanced">
<values>
<value code="0">NO_DATA</value>
<value code="1">L15W23</value>
<value code="2">L25W28P5</value>
<value code="3">L25W34</value>
<value code="4">L35W33</value>
<value code="5">L35W38</value>
<value code="6">L45W39P5</value>
<value code="7">L45W45</value>
<value code="8">L55W45</value>
<value code="9">L55W52</value>
<value code="10">L65W59P5</value>
<value code="11">L65W67</value>
<value code="12">L75W72P5</value>
<value code="13">L75W80</value>
<value code="14">L85W80</value>
<value code="15">L85W90</value>
</values>
</param>
<param humanName="GPS antenna lateral offset" name="ADSB_OFFSET_LAT" documentation="GPS antenna lateral offset. This describes the physical location offest from center of the GPS antenna on the aircraft." user="Advanced">
<values>
<value code="0">NoData</value>
<value code="1">Left2m</value>
<value code="2">Left4m</value>
<value code="3">Left6m</value>
<value code="4">Center</value>
<value code="5">Right2m</value>
<value code="6">Right4m</value>
<value code="7">Right6m</value>
</values>
</param>
<param humanName="GPS antenna longitudinal offset" name="ADSB_OFFSET_LON" documentation="GPS antenna longitudinal offset. This is usually set to 1, Applied By Sensor" user="Advanced">
<values>
<value code="0">NO_DATA</value>
<value code="1">AppliedBySensor</value>
</values>
</param>
<param humanName="Transceiver RF selection" name="ADSB_RF_SELECT" documentation="Transceiver RF selection for Rx enable and/or Tx enable. This only effects devices that can Tx and Rx. Rx-only devices override this to always be Rx-only." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Rx-Only</value>
<value code="2">Tx-Only</value>
<value code="3">Rx and Tx Enabled</value>
</values>
</param>
<param humanName="Squawk code" name="ADSB_SQUAWK" documentation="VFR squawk (Mode 3/A) code is a pre-programmed default code when the pilot is flying VFR and not in contact with ATC. In the USA, the VFR squawk code is octal 1200 (hex 0x280, decimal 640) and in most parts of Europe the VFR squawk code is octal 7000. If an invalid octal number is set then it will be reset to 1200." user="Advanced">
<field name="Range">0 7777</field>
<field name="Units">octal</field>
<field name="UnitText">octal</field>
</param>
<param humanName="RF capabilities" name="ADSB_RF_CAPABLE" documentation="Describes your hardware RF In/Out capabilities." user="Advanced">
<field name="Bitmask">0:UAT_in,1:1090ES_in,2:UAT_out,3:1090ES_out</field>
<values>
<value code="0">Unknown</value>
<value code="1">Rx UAT only</value>
<value code="3">Rx UAT and 1090ES</value>
<value code="7">Rx&amp;Tx UAT and 1090ES</value>
</values>
</param>
<param humanName="ADSB vehicle list altitude filter" name="ADSB_LIST_ALT" documentation="ADSB vehicle list altitude filter. Vehicles detected above this altitude will be completely ignored. They will not show up in the SRx_ADSB stream to the GCS and will not be considered in any avoidance calculations. A value of 0 will disable this filter." user="Advanced">
<field name="Range">0 32767</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="ICAO_ID of special vehicle" name="ADSB_ICAO_SPECL" documentation="ICAO_ID of special vehicle that ignores ADSB_LIST_RADIUS and ADSB_LIST_ALT. The vehicle is always tracked. Use 0 to disable." user="Advanced">
</param>
<param humanName="ADS-B logging" name="ADSB_LOG" documentation="0: no logging, 1: log only special ID, 2:log all" user="Advanced">
<values>
<value code="0">no logging</value>
<value code="1">log only special ID</value>
<value code="2">log all</value>
</values>
</param>
</parameters>
<parameters name="AFS_">
<param humanName="Enable Advanced Failsafe" name="AFS_ENABLE" documentation="This enables the advanced failsafe system. If this is set to zero (disable) then all the other AFS options have no effect" user="Advanced">
</param>
<param humanName="Manual Pin" name="AFS_MAN_PIN" documentation="This sets a digital output pin to set high when in manual mode" user="Advanced">
</param>
<param humanName="Heartbeat Pin" name="AFS_HB_PIN" documentation="This sets a digital output pin which is cycled at 10Hz when termination is not activated. Note that if a FS_TERM_PIN is set then the heartbeat pin will continue to cycle at 10Hz when termination is activated, to allow the termination board to distinguish between autopilot crash and termination." user="Advanced">
<values>
<value code="-1">Disabled</value>
<value code="49">BB Blue GP0 pin 4</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
<value code="57">BB Blue GP0 pin 3</value>
<value code="113">BB Blue GP0 pin 6</value>
<value code="116">BB Blue GP0 pin 5</value>
</values>
</param>
<param humanName="Comms Waypoint" name="AFS_WP_COMMS" documentation="Waypoint number to navigate to on comms loss" user="Advanced">
</param>
<param humanName="GPS Loss Waypoint" name="AFS_GPS_LOSS" documentation="Waypoint number to navigate to on GPS lock loss" user="Advanced">
</param>
<param humanName="Force Terminate" name="AFS_TERMINATE" documentation="Can be set in flight to force termination of the heartbeat signal" user="Advanced">
</param>
<param humanName="Terminate action" name="AFS_TERM_ACTION" documentation="This can be used to force an action on flight termination. Normally this is handled by an external failsafe board, but you can setup APM to handle it here. Please consult the wiki for more information on the possible values of the parameter" user="Advanced">
</param>
<param humanName="Terminate Pin" name="AFS_TERM_PIN" documentation="This sets a digital output pin to set high on flight termination" user="Advanced">
<values>
<value code="-1">Disabled</value>
<value code="49">BB Blue GP0 pin 4</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
<value code="57">BB Blue GP0 pin 3</value>
<value code="113">BB Blue GP0 pin 6</value>
<value code="116">BB Blue GP0 pin 5</value>
</values>
</param>
<param humanName="AMSL limit" name="AFS_AMSL_LIMIT" documentation="This sets the AMSL (above mean sea level) altitude limit. If the pressure altitude determined by QNH exceeds this limit then flight termination will be forced. Note that this limit is in meters, whereas pressure altitude limits are often quoted in feet. A value of zero disables the pressure altitude limit." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Error margin for GPS based AMSL limit" name="AFS_AMSL_ERR_GPS" documentation="This sets margin for error in GPS derived altitude limit. This error margin is only used if the barometer has failed. If the barometer fails then the GPS will be used to enforce the AMSL_LIMIT, but this margin will be subtracted from the AMSL_LIMIT first, to ensure that even with the given amount of GPS altitude error the pressure altitude is not breached. OBC users should set this to comply with their D2 safety case. A value of -1 will mean that barometer failure will lead to immediate termination." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="QNH pressure" name="AFS_QNH_PRESSURE" documentation="This sets the QNH pressure in millibars to be used for pressure altitude in the altitude limit. A value of zero disables the altitude limit." user="Advanced">
<field name="Units">mbar</field>
<field name="UnitText">millibar</field>
</param>
<param humanName="Maximum number of GPS loss events" name="AFS_MAX_GPS_LOSS" documentation="Maximum number of GPS loss events before the aircraft stops returning to mission on GPS recovery. Use zero to allow for any number of GPS loss events." user="Advanced">
</param>
<param humanName="Maximum number of comms loss events" name="AFS_MAX_COM_LOSS" documentation="Maximum number of comms loss events before the aircraft stops returning to mission on comms recovery. Use zero to allow for any number of comms loss events." user="Advanced">
</param>
<param humanName="Enable geofence Advanced Failsafe" name="AFS_GEOFENCE" documentation="This enables the geofence part of the AFS. Will only be in effect if AFS_ENABLE is also 1" user="Advanced">
</param>
<param humanName="Enable RC Advanced Failsafe" name="AFS_RC" documentation="This enables the RC part of the AFS. Will only be in effect if AFS_ENABLE is also 1" user="Advanced">
</param>
<param humanName="Enable RC Termination only in manual control modes" name="AFS_RC_MAN_ONLY" documentation="If this parameter is set to 1, then an RC loss will only cause the plane to terminate in manual control modes. If it is 0, then the plane will terminate in any flight mode." user="Advanced">
</param>
<param humanName="Enable dual loss terminate due to failure of both GCS and GPS simultaneously" name="AFS_DUAL_LOSS" documentation='This enables the dual loss termination part of the AFS system. If this parameter is 1 and both GPS and the ground control station fail simultaneously, this will be considered a "dual loss" and cause termination.' user="Advanced">
</param>
<param humanName="RC failure time" name="AFS_RC_FAIL_TIME" documentation="This is the time in seconds in manual mode that failsafe termination will activate if RC input is lost. For the OBC rules this should be (1.5). Use 0 to disable." user="Advanced">
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Max allowed range" name="AFS_MAX_RANGE" documentation="This is the maximum range of the vehicle in kilometers from first arming. If the vehicle goes beyond this range then the TERM_ACTION is performed. A value of zero disables this feature." user="Advanced">
<field name="Units">km</field>
<field name="UnitText">kilometers</field>
</param>
</parameters>
<parameters name="AHRS_">
<param humanName="AHRS GPS gain" name="AHRS_GPS_GAIN" documentation="This controls how much to use the GPS to correct the attitude. This should never be set to zero for a plane as it would result in the plane losing control in turns. For a plane please use the default value of 1.0." user="Advanced">
<field name="Range">0.0 1.0</field>
<field name="Increment">.01</field>
</param>
<param humanName="AHRS use GPS for navigation" name="AHRS_GPS_USE" documentation="This controls whether to use dead-reckoning or GPS based navigation. If set to 0 then the GPS won't be used for navigation, and only dead reckoning will be used. A value of zero should never be used for normal flight. Currently this affects only the DCM-based AHRS: the EKF uses GPS whenever it is available." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Yaw P" name="AHRS_YAW_P" documentation="This controls the weight the compass or GPS has on the heading. A higher value means the heading will track the yaw source (GPS or compass) more rapidly." user="Advanced">
<field name="Range">0.1 0.4</field>
<field name="Increment">.01</field>
</param>
<param humanName="AHRS RP_P" name="AHRS_RP_P" documentation="This controls how fast the accelerometers correct the attitude" user="Advanced">
<field name="Range">0.1 0.4</field>
<field name="Increment">.01</field>
</param>
<param humanName="Maximum wind" name="AHRS_WIND_MAX" documentation="This sets the maximum allowable difference between ground speed and airspeed. This allows the plane to cope with a failing airspeed sensor. A value of zero means to use the airspeed as is." user="Advanced">
<field name="Range">0 127</field>
<field name="Increment">1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="AHRS Trim Roll" name="AHRS_TRIM_X" documentation="Compensates for the roll angle difference between the control board and the frame. Positive values make the vehicle roll right." user="Standard">
<field name="Range">-0.1745 +0.1745</field>
<field name="Increment">0.01</field>
<field name="Units">rad</field>
<field name="UnitText">radians</field>
</param>
<param humanName="AHRS Trim Pitch" name="AHRS_TRIM_Y" documentation="Compensates for the pitch angle difference between the control board and the frame. Positive values make the vehicle pitch up/back." user="Standard">
<field name="Range">-0.1745 +0.1745</field>
<field name="Increment">0.01</field>
<field name="Units">rad</field>
<field name="UnitText">radians</field>
</param>
<param humanName="AHRS Trim Yaw" name="AHRS_TRIM_Z" documentation="Not Used" user="Advanced">
<field name="Range">-0.1745 +0.1745</field>
<field name="Increment">0.01</field>
<field name="Units">rad</field>
<field name="UnitText">radians</field>
</param>
<param humanName="Board Orientation" name="AHRS_ORIENTATION" documentation="Overall board orientation relative to the standard orientation for the board type. This rotates the IMU and compass readings to allow the board to be oriented in your vehicle at any 90 or 45 degree angle. This option takes affect on next boot. After changing you will need to re-level your vehicle." user="Advanced">
<values>
<value code="0">None</value>
<value code="1">Yaw45</value>
<value code="2">Yaw90</value>
<value code="3">Yaw135</value>
<value code="4">Yaw180</value>
<value code="5">Yaw225</value>
<value code="6">Yaw270</value>
<value code="7">Yaw315</value>
<value code="8">Roll180</value>
<value code="9">Roll180Yaw45</value>
<value code="10">Roll180Yaw90</value>
<value code="11">Roll180Yaw135</value>
<value code="12">Pitch180</value>
<value code="13">Roll180Yaw225</value>
<value code="14">Roll180Yaw270</value>
<value code="15">Roll180Yaw315</value>
<value code="16">Roll90</value>
<value code="17">Roll90Yaw45</value>
<value code="18">Roll90Yaw90</value>
<value code="19">Roll90Yaw135</value>
<value code="20">Roll270</value>
<value code="21">Roll270Yaw45</value>
<value code="22">Roll270Yaw90</value>
<value code="23">Roll270Yaw135</value>
<value code="24">Pitch90</value>
<value code="25">Pitch270</value>
<value code="26">Pitch180Yaw90</value>
<value code="27">Pitch180Yaw270</value>
<value code="28">Roll90Pitch90</value>
<value code="29">Roll180Pitch90</value>
<value code="30">Roll270Pitch90</value>
<value code="31">Roll90Pitch180</value>
<value code="32">Roll270Pitch180</value>
<value code="33">Roll90Pitch270</value>
<value code="34">Roll180Pitch270</value>
<value code="35">Roll270Pitch270</value>
<value code="36">Roll90Pitch180Yaw90</value>
<value code="37">Roll90Yaw270</value>
<value code="38">Yaw293Pitch68Roll180</value>
<value code="39">Pitch315</value>
<value code="40">Roll90Pitch315</value>
<value code="100">Custom</value>
</values>
</param>
<param humanName="AHRS Velocity Complementary Filter Beta Coefficient" name="AHRS_COMP_BETA" documentation="This controls the time constant for the cross-over frequency used to fuse AHRS (airspeed and heading) and GPS data to estimate ground velocity. Time constant is 0.1/beta. A larger time constant will use GPS data less and a small time constant will use air data less." user="Advanced">
<field name="Range">0.001 0.5</field>
<field name="Increment">.01</field>
</param>
<param humanName="AHRS GPS Minimum satellites" name="AHRS_GPS_MINSATS" documentation="Minimum number of satellites visible to use GPS for velocity based corrections attitude correction. This defaults to 6, which is about the point at which the velocity numbers from a GPS become too unreliable for accurate correction of the accelerometers." user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
</param>
<param humanName="Use NavEKF Kalman filter for attitude and position estimation" name="AHRS_EKF_TYPE" documentation="This controls which NavEKF Kalman filter version is used for attitude and position estimation" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="2">Enable EKF2</value>
<value code="3">Enable EKF3</value>
</values>
</param>
<param humanName="Board orientation roll offset" name="AHRS_CUSTOM_ROLL" documentation="Autopilot mounting position roll offset. Positive values = roll right, negative values = roll left. This parameter is only used when AHRS_ORIENTATION is set to CUSTOM." user="Advanced">
<field name="Range">-180 180</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Board orientation pitch offset" name="AHRS_CUSTOM_PIT" documentation="Autopilot mounting position pitch offset. Positive values = pitch up, negative values = pitch down. This parameter is only used when AHRS_ORIENTATION is set to CUSTOM." user="Advanced">
<field name="Range">-180 180</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Board orientation yaw offset" name="AHRS_CUSTOM_YAW" documentation="Autopilot mounting position yaw offset. Positive values = yaw right, negative values = yaw left. This parameter is only used when AHRS_ORIENTATION is set to CUSTOM." user="Advanced">
<field name="Range">-180 180</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
</parameters>
<parameters name="ARMING_">
<param humanName="Require Arming Motors " name="ARMING_REQUIRE" documentation="Arming disabled until some requirements are met. If 0, there are no requirements (arm immediately).  If 1, require rudder stick or GCS arming before arming motors and sends the minimum throttle PWM value to the throttle channel when disarmed.  If 2, require rudder stick or GCS arming and send 0 PWM to throttle channel when disarmed. See the ARMING_CHECK_* parameters to see what checks are done before arming. Note, if setting this parameter to 0 a reboot is required to arm the plane.  Also note, even with this parameter at 0, if ARMING_CHECK parameter is not also zero the plane may fail to arm throttle at boot due to a pre-arm check failure." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">THR_MIN PWM when disarmed</value>
<value code="2">0 PWM when disarmed</value>
</values>
</param>
<param humanName="Accelerometer error threshold" name="ARMING_ACCTHRESH" documentation="Accelerometer error threshold used to determine inconsistent accelerometers. Compares this error range to other accelerometers to detect a hardware or calibration error. Lower value means tighter check and harder to pass arming check. Not all accelerometers are created equal." user="Advanced">
<field name="Range">0.25 3.0</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Arming with Rudder enable/disable" name="ARMING_RUDDER" documentation="Allow arm/disarm by rudder input. When enabled arming can be done with right rudder, disarming with left rudder. Rudder arming only works in manual throttle modes with throttle at zero +- deadzone (RCx_DZ)" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">ArmingOnly</value>
<value code="2">ArmOrDisarm</value>
</values>
</param>
<param humanName="Required mission items" name="ARMING_MIS_ITEMS" documentation="Bitmask of mission items that are required to be planned in order to arm the aircraft" user="Advanced">
<field name="Bitmask">0:Land,1:VTOL Land,2:DO_LAND_START,3:Takeoff,4:VTOL Takeoff,5:Rallypoint</field>
</param>
<param humanName="Arm Checks to Peform (bitmask)" name="ARMING_CHECK" documentation="Checks prior to arming motor. This is a bitmask of checks that will be performed before allowing arming. The default is no checks, allowing arming at any time. You can select whatever checks you prefer by adding together the values of each check type to set this parameter. For example, to only allow arming when you have GPS lock and no RC failsafe you would set ARMING_CHECK to 72. For most users it is recommended that you set this to 1 to enable all checks." user="Standard">
<field name="Bitmask">0:All,1:Barometer,2:Compass,3:GPS lock,4:INS,5:Parameters,6:RC Channels,7:Board voltage,8:Battery Level,9:Airspeed,10:Logging Available,11:Hardware safety switch,12:GPS Configuration,13:System,14:Mission,15:Rangefinder</field>
<values>
<value code="0">None</value>
<value code="1">All</value>
<value code="2">Barometer</value>
<value code="4">Compass</value>
<value code="8">GPS Lock</value>
<value code="16">INS(INertial Sensors - accels &amp; gyros)</value>
<value code="32">Parameters(unused)</value>
<value code="64">RC Channels</value>
<value code="128">Board voltage</value>
<value code="256">Battery Level</value>
<value code="512">Airspeed</value>
<value code="1024">LoggingAvailable</value>
<value code="2048">Hardware safety switch</value>
<value code="4096">GPS configuration</value>
<value code="8192">System</value>
</values>
</param>
</parameters>
<parameters name="ARSPD">
<param humanName="Airspeed type" name="ARSPD_TYPE" documentation="Type of airspeed sensor" user="Standard">
<values>
<value code="0">None</value>
<value code="1">I2C-MS4525D0</value>
<value code="2">Analog</value>
<value code="3">I2C-MS5525</value>
<value code="4">I2C-MS5525 (0x76)</value>
<value code="5">I2C-MS5525 (0x77)</value>
<value code="6">I2C-SDP3X</value>
<value code="7">I2C-DLVR-5in</value>
<value code="8">UAVCAN</value>
<value code="9">I2C-DLVR-10in</value>
</values>
</param>
<param humanName="Airspeed use" name="ARSPD_USE" documentation="Enables airspeed use for automatic throttle modes and replaces control from THR_TRIM. Continues to display and log airspeed if set to 0. Uses airspeed for control if set to 1. Only uses airspeed when throttle = 0 if set to 2 (useful for gliders with airspeed sensors behind propellers)." user="Standard">
<values>
<value code="0">DoNotUse</value>
<value code="1">Use</value>
<value code="2">UseWhenZeroThrottle</value>
</values>
</param>
<param humanName="Airspeed offset" name="ARSPD_OFFSET" documentation="Airspeed calibration offset" user="Advanced">
<field name="Increment">0.1</field>
</param>
<param humanName="Airspeed ratio" name="ARSPD_RATIO" documentation="Calibrates pitot tube pressure to velocity. Increasing this value will indicate a higher airspeed at any given dynamic pressure." user="Advanced">
<field name="Increment">0.1</field>
</param>
<param humanName="Airspeed pin" name="ARSPD_PIN" documentation="The pin number that the airspeed sensor is connected to for analog sensors. Set to 15 on the Pixhawk for the analog airspeed port. " user="Advanced">
</param>
<param humanName="Automatic airspeed ratio calibration" name="ARSPD_AUTOCAL" documentation="Enables automatic adjustment of ARSPD_RATIO during a calibration flight based on estimation of ground speed and true airspeed. New ratio saved every 2 minutes if change is &gt; 5%. Should not be left enabled." user="Advanced">
</param>
<param humanName="Control pitot tube order" name="ARSPD_TUBE_ORDER" documentation="Changes the pitot tube order to specify the dynamic pressure side of the sensor. Accepts either if set to 2. Accepts only one side if set to 0 or 1 and can help detect excessive pressure on the static port without indicating positive airspeed." user="Advanced">
</param>
<param humanName="Skip airspeed calibration on startup" name="ARSPD_SKIP_CAL" documentation="This parameter allows you to skip airspeed offset calibration on startup, instead using the offset from the last calibration. This may be desirable if the offset variance between flights for your sensor is low and you want to avoid having to cover the pitot tube on each boot." user="Advanced">
<values>
<value code="0">Disable</value>
<value code="1">Enable</value>
</values>
</param>
<param humanName="The PSI range of the device" name="ARSPD_PSI_RANGE" documentation="This parameter allows you to to set the PSI (pounds per square inch) range for your sensor. You should not change this unless you examine the datasheet for your device" user="Advanced">
</param>
<param humanName="Airspeed I2C bus" name="ARSPD_BUS" documentation="Bus number of the I2C bus where the airspeed sensor is connected" user="Advanced">
<values>
<value code="0">Bus0(internal)</value>
<value code="1">Bus1(external)</value>
<value code="2">Bus2(auxillary)</value>
</values>
</param>
<param humanName="Primary airspeed sensor" name="ARSPD_PRIMARY" documentation="This selects which airspeed sensor will be the primary if multiple sensors are found" user="Advanced">
<values>
<value code="0">FirstSensor</value>
<value code="1">2ndSensor</value>
</values>
</param>
<param humanName="Airspeed options bitmask" name="ARSPD_OPTIONS" documentation="Bitmask of options to use with airspeed." user="Advanced">
<field name="Bitmask">0:Disable on sensor failure,1:Re-enable on sensor recovery</field>
</param>
<param humanName="Second Airspeed type" name="ARSPD2_TYPE" documentation="Type of 2nd airspeed sensor" user="Standard">
<values>
<value code="0">None</value>
<value code="1">I2C-MS4525D0</value>
<value code="2">Analog</value>
<value code="3">I2C-MS5525</value>
<value code="4">I2C-MS5525 (0x76)</value>
<value code="5">I2C-MS5525 (0x77)</value>
<value code="6">I2C-SDP3X</value>
<value code="7">I2C-DLVR-5in</value>
<value code="8">UAVCAN</value>
<value code="9">I2C-DLVR-10in</value>
</values>
</param>
<param humanName="Enable use of 2nd airspeed sensor" name="ARSPD2_USE" documentation="use airspeed for flight control. When set to 0 airspeed sensor can be logged and displayed on a GCS but won't be used for flight. When set to 1 it will be logged and used. When set to 2 it will be only used when the throttle is zero, which can be useful in gliders with airspeed sensors behind a propeller" user="Standard">
<values>
<value code="0">Don't Use</value>
<value code="1">use</value>
<value code="2">UseWhenZeroThrottle</value>
</values>
</param>
<param humanName="Airspeed offset for 2nd airspeed sensor" name="ARSPD2_OFFSET" documentation="Airspeed calibration offset" user="Advanced">
<field name="Increment">0.1</field>
</param>
<param humanName="Airspeed ratio for 2nd airspeed sensor" name="ARSPD2_RATIO" documentation="Airspeed calibration ratio" user="Advanced">
<field name="Increment">0.1</field>
</param>
<param humanName="Airspeed pin for 2nd airspeed sensor" name="ARSPD2_PIN" documentation="Pin number indicating location of analog airspeed sensors. Pixhawk/Cube if set to 15. " user="Advanced">
</param>
<param humanName="Automatic airspeed ratio calibration for 2nd airspeed sensor" name="ARSPD2_AUTOCAL" documentation="If this is enabled then the autopilot will automatically adjust the ARSPD_RATIO during flight, based upon an estimation filter using ground speed and true airspeed. The automatic calibration will save the new ratio to EEPROM every 2 minutes if it changes by more than 5%. This option should be enabled for a calibration flight then disabled again when calibration is complete. Leaving it enabled all the time is not recommended." user="Advanced">
</param>
<param humanName="Control pitot tube order of 2nd airspeed sensor" name="ARSPD2_TUBE_ORDR" documentation="This parameter allows you to control whether the order in which the tubes are attached to your pitot tube matters. If you set this to 0 then the top connector on the sensor needs to be the dynamic pressure. If set to 1 then the bottom connector needs to be the dynamic pressure. If set to 2 (the default) then the airspeed driver will accept either order. The reason you may wish to specify the order is it will allow your airspeed sensor to detect if the aircraft it receiving excessive pressure on the static port, which would otherwise be seen as a positive airspeed." user="Advanced">
</param>
<param humanName="Skip airspeed calibration on startup for 2nd sensor" name="ARSPD2_SKIP_CAL" documentation="This parameter allows you to skip airspeed offset calibration on startup, instead using the offset from the last calibration. This may be desirable if the offset variance between flights for your sensor is low and you want to avoid having to cover the pitot tube on each boot." user="Advanced">
<values>
<value code="0">Disable</value>
<value code="1">Enable</value>
</values>
</param>
<param humanName="The PSI range of the device for 2nd sensor" name="ARSPD2_PSI_RANGE" documentation="This parameter allows you to to set the PSI (pounds per square inch) range for your sensor. You should not change this unless you examine the datasheet for your device" user="Advanced">
</param>
<param humanName="Airspeed I2C bus for 2nd sensor" name="ARSPD2_BUS" documentation="The bus number of the I2C bus to look for the sensor on" user="Advanced">
<values>
<value code="0">Bus0(internal)</value>
<value code="1">Bus1(external)</value>
<value code="2">Bus2(auxillary)</value>
</values>
</param>
</parameters>
<parameters name="AVD_">
<param humanName="Enable Avoidance using ADSB" name="AVD_ENABLE" documentation="Enable Avoidance using ADSB" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Recovery behaviour after a fail event" name="AVD_F_RCVRY" documentation="Determines what the aircraft will do after a fail event is resolved" user="Advanced">
<values>
<value code="0">Remain in AVOID_ADSB</value>
<value code="1">Resume previous flight mode</value>
<value code="2">RTL</value>
<value code="3">Resume if AUTO else Loiter</value>
</values>
</param>
<param humanName="Maximum number of obstacles to track" name="AVD_OBS_MAX" documentation="Maximum number of obstacles to track" user="Advanced">
</param>
<param humanName="Time Horizon Warn" name="AVD_W_TIME" documentation="Aircraft velocity vectors are multiplied by this time to determine closest approach.  If this results in an approach closer than W_DIST_XY or W_DIST_Z then W_ACTION is undertaken (assuming F_ACTION is not undertaken)" user="Advanced">
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Time Horizon Fail" name="AVD_F_TIME" documentation="Aircraft velocity vectors are multiplied by this time to determine closest approach.  If this results in an approach closer than F_DIST_XY or F_DIST_Z then F_ACTION is undertaken" user="Advanced">
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Distance Warn XY" name="AVD_W_DIST_XY" documentation="Closest allowed projected distance before W_ACTION is undertaken" user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance Fail XY" name="AVD_F_DIST_XY" documentation="Closest allowed projected distance before F_ACTION is undertaken" user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance Warn Z" name="AVD_W_DIST_Z" documentation="Closest allowed projected distance before BEHAVIOUR_W is undertaken" user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance Fail Z" name="AVD_F_DIST_Z" documentation="Closest allowed projected distance before BEHAVIOUR_F is undertaken" user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="ADS-B avoidance minimum altitude" name="AVD_F_ALT_MIN" documentation="Minimum altitude for ADS-B avoidance. If the vehicle is below this altitude, no avoidance action will take place. Useful to prevent ADS-B avoidance from activating while below the tree line or around structures. Default of 0 is no minimum." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
</parameters>
<parameters name="BATT2_">
<param humanName="Battery monitoring" name="BATT2_MONITOR" documentation="Controls enabling monitoring of the battery's voltage and current" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="3">Analog Voltage Only</value>
<value code="4">Analog Voltage and Current</value>
<value code="5">Solo</value>
<value code="6">Bebop</value>
<value code="7">SMBus-Maxell</value>
<value code="8">UAVCAN-BatteryInfo</value>
<value code="9">BLHeli ESC</value>
<value code="10">SumOfFollowing</value>
<value code="11">FuelFlow</value>
<value code="12">FuelLevelPWM</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Voltage sensing pin" name="BATT2_VOLT_PIN" documentation="Sets the analog input pin that should be used for voltage monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 2">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 13">Pixhawk2_PM2</value>
<value code=" 14">CubeOrange</value>
<value code=" 13">CubeOrange_PM2</value>
<value code=" 100">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Current sensing pin" name="BATT2_CURR_PIN" documentation="Sets the analog input pin that should be used for current monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 3">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 14">Pixhawk2_PM2</value>
<value code=" 15">CubeOrange</value>
<value code=" 4">CubeOrange_PM2</value>
<value code=" 101">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Voltage Multiplier" name="BATT2_VOLT_MULT" documentation="Used to convert the voltage of the voltage sensing pin (BATT2_VOLT_PIN) to the actual battery's voltage (pin_voltage * VOLT_MULT). For the 3DR Power brick with a Pixhawk, this should be set to 10.1. For the Pixhawk with the 3DR 4in1 ESC this should be 12.02. For the PX using the PX4IO power supply this should be set to 1." user="Advanced">
</param>
<param humanName="Amps per volt" name="BATT2_AMP_PERVLT" documentation="Number of amps that a 1V reading on the current sensor corresponds to. With a Pixhawk using the 3DR Power brick this should be set to 17. For the Pixhawk with the 3DR 4in1 ESC this should be 17." user="Standard">
<field name="Units">A/V</field>
<field name="UnitText">ampere per volt</field>
</param>
<param humanName="AMP offset" name="BATT2_AMP_OFFSET" documentation="Voltage offset at zero current on current sensor" user="Standard">
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery capacity" name="BATT2_CAPACITY" documentation="Capacity of the battery in mAh when full" user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Maximum allowed power (Watts)" name="BATT2_WATT_MAX" documentation="If battery wattage (voltage * current) exceeds this value then the system will reduce max throttle (THR_MAX, TKOFF_THR_MAX and THR_MIN for reverse thrust) to satisfy this limit. This helps limit high current to low C rated batteries regardless of battery voltage. The max throttle will slowly grow back to THR_MAX (or TKOFF_THR_MAX ) and THR_MIN if demanding the current max and under the watt max. Use 0 to disable." user="Advanced">
<field name="Increment">1</field>
<field name="Units">W</field>
<field name="UnitText">watt</field>
</param>
<param humanName="Battery serial number" name="BATT2_SERIAL_NUM" documentation="Battery serial number, automatically filled in for SMBus batteries, otherwise will be -1. With UAVCAN it is the battery_id." user="Advanced">
</param>
<param humanName="Low voltage timeout" name="BATT2_LOW_TIMER" documentation="This is the timeout in seconds before a low voltage event will be triggered. For aircraft with low C batteries it may be necessary to raise this in order to cope with low voltage on long takeoffs. A value of zero disables low voltage errors." user="Advanced">
<field name="Range">0 120</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Failsafe voltage source" name="BATT2_FS_VOLTSRC" documentation="Voltage type used for detection of low voltage event" user="Advanced">
<values>
<value code="0">Raw Voltage</value>
<value code=" 1">Sag Compensated Voltage</value>
</values>
</param>
<param humanName="Low battery voltage" name="BATT2_LOW_VOLT" documentation="Battery voltage that triggers a low battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT2_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT2_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Low battery capacity" name="BATT2_LOW_MAH" documentation="Battery capacity at which the low battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT2_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Critical battery voltage" name="BATT2_CRT_VOLT" documentation="Battery voltage that triggers a critical battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT2_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT2_FS_CRT_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery critical capacity" name="BATT2_CRT_MAH" documentation="Battery capacity at which the critical battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT2__FS_CRT_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Low battery failsafe action" name="BATT2_FS_LOW_ACT" documentation="What action the vehicle should perform if it hits a low battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
</values>
</param>
<param humanName="Critical battery failsafe action" name="BATT2_FS_CRT_ACT" documentation="What action the vehicle should perform if it hits a critical battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
<value code="5">Parachute</value>
</values>
</param>
<param humanName="Required arming voltage" name="BATT2_ARM_VOLT" documentation="Battery voltage level which is required to arm the aircraft. Set to 0 to allow arming at any voltage." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Required arming remaining capacity" name="BATT2_ARM_MAH" documentation="Battery capacity remaining which is required to arm the aircraft. Set to 0 to allow arming at any capacity. Note that execept for smart batteries rebooting the vehicle will always reset the remaining capacity estimate, which can lead to this check not providing sufficent protection, it is recommended to always use this in conjunction with the BATT2__ARM_VOLT parameter." user="Advanced">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
</parameters>
<parameters name="BATT3_">
<param humanName="Battery monitoring" name="BATT3_MONITOR" documentation="Controls enabling monitoring of the battery's voltage and current" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="3">Analog Voltage Only</value>
<value code="4">Analog Voltage and Current</value>
<value code="5">Solo</value>
<value code="6">Bebop</value>
<value code="7">SMBus-Maxell</value>
<value code="8">UAVCAN-BatteryInfo</value>
<value code="9">BLHeli ESC</value>
<value code="10">SumOfFollowing</value>
<value code="11">FuelFlow</value>
<value code="12">FuelLevelPWM</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Voltage sensing pin" name="BATT3_VOLT_PIN" documentation="Sets the analog input pin that should be used for voltage monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 2">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 13">Pixhawk2_PM2</value>
<value code=" 14">CubeOrange</value>
<value code=" 13">CubeOrange_PM2</value>
<value code=" 100">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Current sensing pin" name="BATT3_CURR_PIN" documentation="Sets the analog input pin that should be used for current monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 3">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 14">Pixhawk2_PM2</value>
<value code=" 15">CubeOrange</value>
<value code=" 4">CubeOrange_PM2</value>
<value code=" 101">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Voltage Multiplier" name="BATT3_VOLT_MULT" documentation="Used to convert the voltage of the voltage sensing pin (BATT3_VOLT_PIN) to the actual battery's voltage (pin_voltage * VOLT_MULT). For the 3DR Power brick with a Pixhawk, this should be set to 10.1. For the Pixhawk with the 3DR 4in1 ESC this should be 12.02. For the PX using the PX4IO power supply this should be set to 1." user="Advanced">
</param>
<param humanName="Amps per volt" name="BATT3_AMP_PERVLT" documentation="Number of amps that a 1V reading on the current sensor corresponds to. With a Pixhawk using the 3DR Power brick this should be set to 17. For the Pixhawk with the 3DR 4in1 ESC this should be 17." user="Standard">
<field name="Units">A/V</field>
<field name="UnitText">ampere per volt</field>
</param>
<param humanName="AMP offset" name="BATT3_AMP_OFFSET" documentation="Voltage offset at zero current on current sensor" user="Standard">
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery capacity" name="BATT3_CAPACITY" documentation="Capacity of the battery in mAh when full" user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Maximum allowed power (Watts)" name="BATT3_WATT_MAX" documentation="If battery wattage (voltage * current) exceeds this value then the system will reduce max throttle (THR_MAX, TKOFF_THR_MAX and THR_MIN for reverse thrust) to satisfy this limit. This helps limit high current to low C rated batteries regardless of battery voltage. The max throttle will slowly grow back to THR_MAX (or TKOFF_THR_MAX ) and THR_MIN if demanding the current max and under the watt max. Use 0 to disable." user="Advanced">
<field name="Increment">1</field>
<field name="Units">W</field>
<field name="UnitText">watt</field>
</param>
<param humanName="Battery serial number" name="BATT3_SERIAL_NUM" documentation="Battery serial number, automatically filled in for SMBus batteries, otherwise will be -1. With UAVCAN it is the battery_id." user="Advanced">
</param>
<param humanName="Low voltage timeout" name="BATT3_LOW_TIMER" documentation="This is the timeout in seconds before a low voltage event will be triggered. For aircraft with low C batteries it may be necessary to raise this in order to cope with low voltage on long takeoffs. A value of zero disables low voltage errors." user="Advanced">
<field name="Range">0 120</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Failsafe voltage source" name="BATT3_FS_VOLTSRC" documentation="Voltage type used for detection of low voltage event" user="Advanced">
<values>
<value code="0">Raw Voltage</value>
<value code=" 1">Sag Compensated Voltage</value>
</values>
</param>
<param humanName="Low battery voltage" name="BATT3_LOW_VOLT" documentation="Battery voltage that triggers a low battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT3_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT3_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Low battery capacity" name="BATT3_LOW_MAH" documentation="Battery capacity at which the low battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT3_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Critical battery voltage" name="BATT3_CRT_VOLT" documentation="Battery voltage that triggers a critical battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT3_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT3_FS_CRT_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery critical capacity" name="BATT3_CRT_MAH" documentation="Battery capacity at which the critical battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT3__FS_CRT_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Low battery failsafe action" name="BATT3_FS_LOW_ACT" documentation="What action the vehicle should perform if it hits a low battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
</values>
</param>
<param humanName="Critical battery failsafe action" name="BATT3_FS_CRT_ACT" documentation="What action the vehicle should perform if it hits a critical battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
<value code="5">Parachute</value>
</values>
</param>
<param humanName="Required arming voltage" name="BATT3_ARM_VOLT" documentation="Battery voltage level which is required to arm the aircraft. Set to 0 to allow arming at any voltage." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Required arming remaining capacity" name="BATT3_ARM_MAH" documentation="Battery capacity remaining which is required to arm the aircraft. Set to 0 to allow arming at any capacity. Note that execept for smart batteries rebooting the vehicle will always reset the remaining capacity estimate, which can lead to this check not providing sufficent protection, it is recommended to always use this in conjunction with the BATT3__ARM_VOLT parameter." user="Advanced">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
</parameters>
<parameters name="BATT4_">
<param humanName="Battery monitoring" name="BATT4_MONITOR" documentation="Controls enabling monitoring of the battery's voltage and current" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="3">Analog Voltage Only</value>
<value code="4">Analog Voltage and Current</value>
<value code="5">Solo</value>
<value code="6">Bebop</value>
<value code="7">SMBus-Maxell</value>
<value code="8">UAVCAN-BatteryInfo</value>
<value code="9">BLHeli ESC</value>
<value code="10">SumOfFollowing</value>
<value code="11">FuelFlow</value>
<value code="12">FuelLevelPWM</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Voltage sensing pin" name="BATT4_VOLT_PIN" documentation="Sets the analog input pin that should be used for voltage monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 2">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 13">Pixhawk2_PM2</value>
<value code=" 14">CubeOrange</value>
<value code=" 13">CubeOrange_PM2</value>
<value code=" 100">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Current sensing pin" name="BATT4_CURR_PIN" documentation="Sets the analog input pin that should be used for current monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 3">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 14">Pixhawk2_PM2</value>
<value code=" 15">CubeOrange</value>
<value code=" 4">CubeOrange_PM2</value>
<value code=" 101">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Voltage Multiplier" name="BATT4_VOLT_MULT" documentation="Used to convert the voltage of the voltage sensing pin (BATT4_VOLT_PIN) to the actual battery's voltage (pin_voltage * VOLT_MULT). For the 3DR Power brick with a Pixhawk, this should be set to 10.1. For the Pixhawk with the 3DR 4in1 ESC this should be 12.02. For the PX using the PX4IO power supply this should be set to 1." user="Advanced">
</param>
<param humanName="Amps per volt" name="BATT4_AMP_PERVLT" documentation="Number of amps that a 1V reading on the current sensor corresponds to. With a Pixhawk using the 3DR Power brick this should be set to 17. For the Pixhawk with the 3DR 4in1 ESC this should be 17." user="Standard">
<field name="Units">A/V</field>
<field name="UnitText">ampere per volt</field>
</param>
<param humanName="AMP offset" name="BATT4_AMP_OFFSET" documentation="Voltage offset at zero current on current sensor" user="Standard">
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery capacity" name="BATT4_CAPACITY" documentation="Capacity of the battery in mAh when full" user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Maximum allowed power (Watts)" name="BATT4_WATT_MAX" documentation="If battery wattage (voltage * current) exceeds this value then the system will reduce max throttle (THR_MAX, TKOFF_THR_MAX and THR_MIN for reverse thrust) to satisfy this limit. This helps limit high current to low C rated batteries regardless of battery voltage. The max throttle will slowly grow back to THR_MAX (or TKOFF_THR_MAX ) and THR_MIN if demanding the current max and under the watt max. Use 0 to disable." user="Advanced">
<field name="Increment">1</field>
<field name="Units">W</field>
<field name="UnitText">watt</field>
</param>
<param humanName="Battery serial number" name="BATT4_SERIAL_NUM" documentation="Battery serial number, automatically filled in for SMBus batteries, otherwise will be -1. With UAVCAN it is the battery_id." user="Advanced">
</param>
<param humanName="Low voltage timeout" name="BATT4_LOW_TIMER" documentation="This is the timeout in seconds before a low voltage event will be triggered. For aircraft with low C batteries it may be necessary to raise this in order to cope with low voltage on long takeoffs. A value of zero disables low voltage errors." user="Advanced">
<field name="Range">0 120</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Failsafe voltage source" name="BATT4_FS_VOLTSRC" documentation="Voltage type used for detection of low voltage event" user="Advanced">
<values>
<value code="0">Raw Voltage</value>
<value code=" 1">Sag Compensated Voltage</value>
</values>
</param>
<param humanName="Low battery voltage" name="BATT4_LOW_VOLT" documentation="Battery voltage that triggers a low battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT4_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT4_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Low battery capacity" name="BATT4_LOW_MAH" documentation="Battery capacity at which the low battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT4_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Critical battery voltage" name="BATT4_CRT_VOLT" documentation="Battery voltage that triggers a critical battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT4_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT4_FS_CRT_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery critical capacity" name="BATT4_CRT_MAH" documentation="Battery capacity at which the critical battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT4__FS_CRT_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Low battery failsafe action" name="BATT4_FS_LOW_ACT" documentation="What action the vehicle should perform if it hits a low battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
</values>
</param>
<param humanName="Critical battery failsafe action" name="BATT4_FS_CRT_ACT" documentation="What action the vehicle should perform if it hits a critical battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
<value code="5">Parachute</value>
</values>
</param>
<param humanName="Required arming voltage" name="BATT4_ARM_VOLT" documentation="Battery voltage level which is required to arm the aircraft. Set to 0 to allow arming at any voltage." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Required arming remaining capacity" name="BATT4_ARM_MAH" documentation="Battery capacity remaining which is required to arm the aircraft. Set to 0 to allow arming at any capacity. Note that execept for smart batteries rebooting the vehicle will always reset the remaining capacity estimate, which can lead to this check not providing sufficent protection, it is recommended to always use this in conjunction with the BATT4__ARM_VOLT parameter." user="Advanced">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
</parameters>
<parameters name="BATT5_">
<param humanName="Battery monitoring" name="BATT5_MONITOR" documentation="Controls enabling monitoring of the battery's voltage and current" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="3">Analog Voltage Only</value>
<value code="4">Analog Voltage and Current</value>
<value code="5">Solo</value>
<value code="6">Bebop</value>
<value code="7">SMBus-Maxell</value>
<value code="8">UAVCAN-BatteryInfo</value>
<value code="9">BLHeli ESC</value>
<value code="10">SumOfFollowing</value>
<value code="11">FuelFlow</value>
<value code="12">FuelLevelPWM</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Voltage sensing pin" name="BATT5_VOLT_PIN" documentation="Sets the analog input pin that should be used for voltage monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 2">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 13">Pixhawk2_PM2</value>
<value code=" 14">CubeOrange</value>
<value code=" 13">CubeOrange_PM2</value>
<value code=" 100">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Current sensing pin" name="BATT5_CURR_PIN" documentation="Sets the analog input pin that should be used for current monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 3">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 14">Pixhawk2_PM2</value>
<value code=" 15">CubeOrange</value>
<value code=" 4">CubeOrange_PM2</value>
<value code=" 101">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Voltage Multiplier" name="BATT5_VOLT_MULT" documentation="Used to convert the voltage of the voltage sensing pin (BATT5_VOLT_PIN) to the actual battery's voltage (pin_voltage * VOLT_MULT). For the 3DR Power brick with a Pixhawk, this should be set to 10.1. For the Pixhawk with the 3DR 4in1 ESC this should be 12.02. For the PX using the PX4IO power supply this should be set to 1." user="Advanced">
</param>
<param humanName="Amps per volt" name="BATT5_AMP_PERVLT" documentation="Number of amps that a 1V reading on the current sensor corresponds to. With a Pixhawk using the 3DR Power brick this should be set to 17. For the Pixhawk with the 3DR 4in1 ESC this should be 17." user="Standard">
<field name="Units">A/V</field>
<field name="UnitText">ampere per volt</field>
</param>
<param humanName="AMP offset" name="BATT5_AMP_OFFSET" documentation="Voltage offset at zero current on current sensor" user="Standard">
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery capacity" name="BATT5_CAPACITY" documentation="Capacity of the battery in mAh when full" user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Maximum allowed power (Watts)" name="BATT5_WATT_MAX" documentation="If battery wattage (voltage * current) exceeds this value then the system will reduce max throttle (THR_MAX, TKOFF_THR_MAX and THR_MIN for reverse thrust) to satisfy this limit. This helps limit high current to low C rated batteries regardless of battery voltage. The max throttle will slowly grow back to THR_MAX (or TKOFF_THR_MAX ) and THR_MIN if demanding the current max and under the watt max. Use 0 to disable." user="Advanced">
<field name="Increment">1</field>
<field name="Units">W</field>
<field name="UnitText">watt</field>
</param>
<param humanName="Battery serial number" name="BATT5_SERIAL_NUM" documentation="Battery serial number, automatically filled in for SMBus batteries, otherwise will be -1. With UAVCAN it is the battery_id." user="Advanced">
</param>
<param humanName="Low voltage timeout" name="BATT5_LOW_TIMER" documentation="This is the timeout in seconds before a low voltage event will be triggered. For aircraft with low C batteries it may be necessary to raise this in order to cope with low voltage on long takeoffs. A value of zero disables low voltage errors." user="Advanced">
<field name="Range">0 120</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Failsafe voltage source" name="BATT5_FS_VOLTSRC" documentation="Voltage type used for detection of low voltage event" user="Advanced">
<values>
<value code="0">Raw Voltage</value>
<value code=" 1">Sag Compensated Voltage</value>
</values>
</param>
<param humanName="Low battery voltage" name="BATT5_LOW_VOLT" documentation="Battery voltage that triggers a low battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT5_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT5_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Low battery capacity" name="BATT5_LOW_MAH" documentation="Battery capacity at which the low battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT5_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Critical battery voltage" name="BATT5_CRT_VOLT" documentation="Battery voltage that triggers a critical battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT5_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT5_FS_CRT_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery critical capacity" name="BATT5_CRT_MAH" documentation="Battery capacity at which the critical battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT5__FS_CRT_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Low battery failsafe action" name="BATT5_FS_LOW_ACT" documentation="What action the vehicle should perform if it hits a low battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
</values>
</param>
<param humanName="Critical battery failsafe action" name="BATT5_FS_CRT_ACT" documentation="What action the vehicle should perform if it hits a critical battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
<value code="5">Parachute</value>
</values>
</param>
<param humanName="Required arming voltage" name="BATT5_ARM_VOLT" documentation="Battery voltage level which is required to arm the aircraft. Set to 0 to allow arming at any voltage." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Required arming remaining capacity" name="BATT5_ARM_MAH" documentation="Battery capacity remaining which is required to arm the aircraft. Set to 0 to allow arming at any capacity. Note that execept for smart batteries rebooting the vehicle will always reset the remaining capacity estimate, which can lead to this check not providing sufficent protection, it is recommended to always use this in conjunction with the BATT5__ARM_VOLT parameter." user="Advanced">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
</parameters>
<parameters name="BATT6_">
<param humanName="Battery monitoring" name="BATT6_MONITOR" documentation="Controls enabling monitoring of the battery's voltage and current" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="3">Analog Voltage Only</value>
<value code="4">Analog Voltage and Current</value>
<value code="5">Solo</value>
<value code="6">Bebop</value>
<value code="7">SMBus-Maxell</value>
<value code="8">UAVCAN-BatteryInfo</value>
<value code="9">BLHeli ESC</value>
<value code="10">SumOfFollowing</value>
<value code="11">FuelFlow</value>
<value code="12">FuelLevelPWM</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Voltage sensing pin" name="BATT6_VOLT_PIN" documentation="Sets the analog input pin that should be used for voltage monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 2">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 13">Pixhawk2_PM2</value>
<value code=" 14">CubeOrange</value>
<value code=" 13">CubeOrange_PM2</value>
<value code=" 100">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Current sensing pin" name="BATT6_CURR_PIN" documentation="Sets the analog input pin that should be used for current monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 3">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 14">Pixhawk2_PM2</value>
<value code=" 15">CubeOrange</value>
<value code=" 4">CubeOrange_PM2</value>
<value code=" 101">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Voltage Multiplier" name="BATT6_VOLT_MULT" documentation="Used to convert the voltage of the voltage sensing pin (BATT6_VOLT_PIN) to the actual battery's voltage (pin_voltage * VOLT_MULT). For the 3DR Power brick with a Pixhawk, this should be set to 10.1. For the Pixhawk with the 3DR 4in1 ESC this should be 12.02. For the PX using the PX4IO power supply this should be set to 1." user="Advanced">
</param>
<param humanName="Amps per volt" name="BATT6_AMP_PERVLT" documentation="Number of amps that a 1V reading on the current sensor corresponds to. With a Pixhawk using the 3DR Power brick this should be set to 17. For the Pixhawk with the 3DR 4in1 ESC this should be 17." user="Standard">
<field name="Units">A/V</field>
<field name="UnitText">ampere per volt</field>
</param>
<param humanName="AMP offset" name="BATT6_AMP_OFFSET" documentation="Voltage offset at zero current on current sensor" user="Standard">
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery capacity" name="BATT6_CAPACITY" documentation="Capacity of the battery in mAh when full" user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Maximum allowed power (Watts)" name="BATT6_WATT_MAX" documentation="If battery wattage (voltage * current) exceeds this value then the system will reduce max throttle (THR_MAX, TKOFF_THR_MAX and THR_MIN for reverse thrust) to satisfy this limit. This helps limit high current to low C rated batteries regardless of battery voltage. The max throttle will slowly grow back to THR_MAX (or TKOFF_THR_MAX ) and THR_MIN if demanding the current max and under the watt max. Use 0 to disable." user="Advanced">
<field name="Increment">1</field>
<field name="Units">W</field>
<field name="UnitText">watt</field>
</param>
<param humanName="Battery serial number" name="BATT6_SERIAL_NUM" documentation="Battery serial number, automatically filled in for SMBus batteries, otherwise will be -1. With UAVCAN it is the battery_id." user="Advanced">
</param>
<param humanName="Low voltage timeout" name="BATT6_LOW_TIMER" documentation="This is the timeout in seconds before a low voltage event will be triggered. For aircraft with low C batteries it may be necessary to raise this in order to cope with low voltage on long takeoffs. A value of zero disables low voltage errors." user="Advanced">
<field name="Range">0 120</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Failsafe voltage source" name="BATT6_FS_VOLTSRC" documentation="Voltage type used for detection of low voltage event" user="Advanced">
<values>
<value code="0">Raw Voltage</value>
<value code=" 1">Sag Compensated Voltage</value>
</values>
</param>
<param humanName="Low battery voltage" name="BATT6_LOW_VOLT" documentation="Battery voltage that triggers a low battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT6_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT6_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Low battery capacity" name="BATT6_LOW_MAH" documentation="Battery capacity at which the low battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT6_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Critical battery voltage" name="BATT6_CRT_VOLT" documentation="Battery voltage that triggers a critical battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT6_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT6_FS_CRT_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery critical capacity" name="BATT6_CRT_MAH" documentation="Battery capacity at which the critical battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT6__FS_CRT_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Low battery failsafe action" name="BATT6_FS_LOW_ACT" documentation="What action the vehicle should perform if it hits a low battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
</values>
</param>
<param humanName="Critical battery failsafe action" name="BATT6_FS_CRT_ACT" documentation="What action the vehicle should perform if it hits a critical battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
<value code="5">Parachute</value>
</values>
</param>
<param humanName="Required arming voltage" name="BATT6_ARM_VOLT" documentation="Battery voltage level which is required to arm the aircraft. Set to 0 to allow arming at any voltage." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Required arming remaining capacity" name="BATT6_ARM_MAH" documentation="Battery capacity remaining which is required to arm the aircraft. Set to 0 to allow arming at any capacity. Note that execept for smart batteries rebooting the vehicle will always reset the remaining capacity estimate, which can lead to this check not providing sufficent protection, it is recommended to always use this in conjunction with the BATT6__ARM_VOLT parameter." user="Advanced">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
</parameters>
<parameters name="BATT7_">
<param humanName="Battery monitoring" name="BATT7_MONITOR" documentation="Controls enabling monitoring of the battery's voltage and current" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="3">Analog Voltage Only</value>
<value code="4">Analog Voltage and Current</value>
<value code="5">Solo</value>
<value code="6">Bebop</value>
<value code="7">SMBus-Maxell</value>
<value code="8">UAVCAN-BatteryInfo</value>
<value code="9">BLHeli ESC</value>
<value code="10">SumOfFollowing</value>
<value code="11">FuelFlow</value>
<value code="12">FuelLevelPWM</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Voltage sensing pin" name="BATT7_VOLT_PIN" documentation="Sets the analog input pin that should be used for voltage monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 2">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 13">Pixhawk2_PM2</value>
<value code=" 14">CubeOrange</value>
<value code=" 13">CubeOrange_PM2</value>
<value code=" 100">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Current sensing pin" name="BATT7_CURR_PIN" documentation="Sets the analog input pin that should be used for current monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 3">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 14">Pixhawk2_PM2</value>
<value code=" 15">CubeOrange</value>
<value code=" 4">CubeOrange_PM2</value>
<value code=" 101">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Voltage Multiplier" name="BATT7_VOLT_MULT" documentation="Used to convert the voltage of the voltage sensing pin (BATT7_VOLT_PIN) to the actual battery's voltage (pin_voltage * VOLT_MULT). For the 3DR Power brick with a Pixhawk, this should be set to 10.1. For the Pixhawk with the 3DR 4in1 ESC this should be 12.02. For the PX using the PX4IO power supply this should be set to 1." user="Advanced">
</param>
<param humanName="Amps per volt" name="BATT7_AMP_PERVLT" documentation="Number of amps that a 1V reading on the current sensor corresponds to. With a Pixhawk using the 3DR Power brick this should be set to 17. For the Pixhawk with the 3DR 4in1 ESC this should be 17." user="Standard">
<field name="Units">A/V</field>
<field name="UnitText">ampere per volt</field>
</param>
<param humanName="AMP offset" name="BATT7_AMP_OFFSET" documentation="Voltage offset at zero current on current sensor" user="Standard">
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery capacity" name="BATT7_CAPACITY" documentation="Capacity of the battery in mAh when full" user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Maximum allowed power (Watts)" name="BATT7_WATT_MAX" documentation="If battery wattage (voltage * current) exceeds this value then the system will reduce max throttle (THR_MAX, TKOFF_THR_MAX and THR_MIN for reverse thrust) to satisfy this limit. This helps limit high current to low C rated batteries regardless of battery voltage. The max throttle will slowly grow back to THR_MAX (or TKOFF_THR_MAX ) and THR_MIN if demanding the current max and under the watt max. Use 0 to disable." user="Advanced">
<field name="Increment">1</field>
<field name="Units">W</field>
<field name="UnitText">watt</field>
</param>
<param humanName="Battery serial number" name="BATT7_SERIAL_NUM" documentation="Battery serial number, automatically filled in for SMBus batteries, otherwise will be -1. With UAVCAN it is the battery_id." user="Advanced">
</param>
<param humanName="Low voltage timeout" name="BATT7_LOW_TIMER" documentation="This is the timeout in seconds before a low voltage event will be triggered. For aircraft with low C batteries it may be necessary to raise this in order to cope with low voltage on long takeoffs. A value of zero disables low voltage errors." user="Advanced">
<field name="Range">0 120</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Failsafe voltage source" name="BATT7_FS_VOLTSRC" documentation="Voltage type used for detection of low voltage event" user="Advanced">
<values>
<value code="0">Raw Voltage</value>
<value code=" 1">Sag Compensated Voltage</value>
</values>
</param>
<param humanName="Low battery voltage" name="BATT7_LOW_VOLT" documentation="Battery voltage that triggers a low battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT7_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT7_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Low battery capacity" name="BATT7_LOW_MAH" documentation="Battery capacity at which the low battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT7_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Critical battery voltage" name="BATT7_CRT_VOLT" documentation="Battery voltage that triggers a critical battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT7_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT7_FS_CRT_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery critical capacity" name="BATT7_CRT_MAH" documentation="Battery capacity at which the critical battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT7__FS_CRT_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Low battery failsafe action" name="BATT7_FS_LOW_ACT" documentation="What action the vehicle should perform if it hits a low battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
</values>
</param>
<param humanName="Critical battery failsafe action" name="BATT7_FS_CRT_ACT" documentation="What action the vehicle should perform if it hits a critical battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
<value code="5">Parachute</value>
</values>
</param>
<param humanName="Required arming voltage" name="BATT7_ARM_VOLT" documentation="Battery voltage level which is required to arm the aircraft. Set to 0 to allow arming at any voltage." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Required arming remaining capacity" name="BATT7_ARM_MAH" documentation="Battery capacity remaining which is required to arm the aircraft. Set to 0 to allow arming at any capacity. Note that execept for smart batteries rebooting the vehicle will always reset the remaining capacity estimate, which can lead to this check not providing sufficent protection, it is recommended to always use this in conjunction with the BATT7__ARM_VOLT parameter." user="Advanced">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
</parameters>
<parameters name="BATT8_">
<param humanName="Battery monitoring" name="BATT8_MONITOR" documentation="Controls enabling monitoring of the battery's voltage and current" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="3">Analog Voltage Only</value>
<value code="4">Analog Voltage and Current</value>
<value code="5">Solo</value>
<value code="6">Bebop</value>
<value code="7">SMBus-Maxell</value>
<value code="8">UAVCAN-BatteryInfo</value>
<value code="9">BLHeli ESC</value>
<value code="10">SumOfFollowing</value>
<value code="11">FuelFlow</value>
<value code="12">FuelLevelPWM</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Voltage sensing pin" name="BATT8_VOLT_PIN" documentation="Sets the analog input pin that should be used for voltage monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 2">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 13">Pixhawk2_PM2</value>
<value code=" 14">CubeOrange</value>
<value code=" 13">CubeOrange_PM2</value>
<value code=" 100">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Current sensing pin" name="BATT8_CURR_PIN" documentation="Sets the analog input pin that should be used for current monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 3">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 14">Pixhawk2_PM2</value>
<value code=" 15">CubeOrange</value>
<value code=" 4">CubeOrange_PM2</value>
<value code=" 101">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Voltage Multiplier" name="BATT8_VOLT_MULT" documentation="Used to convert the voltage of the voltage sensing pin (BATT8_VOLT_PIN) to the actual battery's voltage (pin_voltage * VOLT_MULT). For the 3DR Power brick with a Pixhawk, this should be set to 10.1. For the Pixhawk with the 3DR 4in1 ESC this should be 12.02. For the PX using the PX4IO power supply this should be set to 1." user="Advanced">
</param>
<param humanName="Amps per volt" name="BATT8_AMP_PERVLT" documentation="Number of amps that a 1V reading on the current sensor corresponds to. With a Pixhawk using the 3DR Power brick this should be set to 17. For the Pixhawk with the 3DR 4in1 ESC this should be 17." user="Standard">
<field name="Units">A/V</field>
<field name="UnitText">ampere per volt</field>
</param>
<param humanName="AMP offset" name="BATT8_AMP_OFFSET" documentation="Voltage offset at zero current on current sensor" user="Standard">
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery capacity" name="BATT8_CAPACITY" documentation="Capacity of the battery in mAh when full" user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Maximum allowed power (Watts)" name="BATT8_WATT_MAX" documentation="If battery wattage (voltage * current) exceeds this value then the system will reduce max throttle (THR_MAX, TKOFF_THR_MAX and THR_MIN for reverse thrust) to satisfy this limit. This helps limit high current to low C rated batteries regardless of battery voltage. The max throttle will slowly grow back to THR_MAX (or TKOFF_THR_MAX ) and THR_MIN if demanding the current max and under the watt max. Use 0 to disable." user="Advanced">
<field name="Increment">1</field>
<field name="Units">W</field>
<field name="UnitText">watt</field>
</param>
<param humanName="Battery serial number" name="BATT8_SERIAL_NUM" documentation="Battery serial number, automatically filled in for SMBus batteries, otherwise will be -1. With UAVCAN it is the battery_id." user="Advanced">
</param>
<param humanName="Low voltage timeout" name="BATT8_LOW_TIMER" documentation="This is the timeout in seconds before a low voltage event will be triggered. For aircraft with low C batteries it may be necessary to raise this in order to cope with low voltage on long takeoffs. A value of zero disables low voltage errors." user="Advanced">
<field name="Range">0 120</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Failsafe voltage source" name="BATT8_FS_VOLTSRC" documentation="Voltage type used for detection of low voltage event" user="Advanced">
<values>
<value code="0">Raw Voltage</value>
<value code=" 1">Sag Compensated Voltage</value>
</values>
</param>
<param humanName="Low battery voltage" name="BATT8_LOW_VOLT" documentation="Battery voltage that triggers a low battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT8_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT8_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Low battery capacity" name="BATT8_LOW_MAH" documentation="Battery capacity at which the low battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT8_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Critical battery voltage" name="BATT8_CRT_VOLT" documentation="Battery voltage that triggers a critical battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT8_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT8_FS_CRT_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery critical capacity" name="BATT8_CRT_MAH" documentation="Battery capacity at which the critical battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT8__FS_CRT_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Low battery failsafe action" name="BATT8_FS_LOW_ACT" documentation="What action the vehicle should perform if it hits a low battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
</values>
</param>
<param humanName="Critical battery failsafe action" name="BATT8_FS_CRT_ACT" documentation="What action the vehicle should perform if it hits a critical battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
<value code="5">Parachute</value>
</values>
</param>
<param humanName="Required arming voltage" name="BATT8_ARM_VOLT" documentation="Battery voltage level which is required to arm the aircraft. Set to 0 to allow arming at any voltage." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Required arming remaining capacity" name="BATT8_ARM_MAH" documentation="Battery capacity remaining which is required to arm the aircraft. Set to 0 to allow arming at any capacity. Note that execept for smart batteries rebooting the vehicle will always reset the remaining capacity estimate, which can lead to this check not providing sufficent protection, it is recommended to always use this in conjunction with the BATT8__ARM_VOLT parameter." user="Advanced">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
</parameters>
<parameters name="BATT9_">
<param humanName="Battery monitoring" name="BATT9_MONITOR" documentation="Controls enabling monitoring of the battery's voltage and current" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="3">Analog Voltage Only</value>
<value code="4">Analog Voltage and Current</value>
<value code="5">Solo</value>
<value code="6">Bebop</value>
<value code="7">SMBus-Maxell</value>
<value code="8">UAVCAN-BatteryInfo</value>
<value code="9">BLHeli ESC</value>
<value code="10">SumOfFollowing</value>
<value code="11">FuelFlow</value>
<value code="12">FuelLevelPWM</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Voltage sensing pin" name="BATT9_VOLT_PIN" documentation="Sets the analog input pin that should be used for voltage monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 2">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 13">Pixhawk2_PM2</value>
<value code=" 14">CubeOrange</value>
<value code=" 13">CubeOrange_PM2</value>
<value code=" 100">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Current sensing pin" name="BATT9_CURR_PIN" documentation="Sets the analog input pin that should be used for current monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 3">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 14">Pixhawk2_PM2</value>
<value code=" 15">CubeOrange</value>
<value code=" 4">CubeOrange_PM2</value>
<value code=" 101">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Voltage Multiplier" name="BATT9_VOLT_MULT" documentation="Used to convert the voltage of the voltage sensing pin (BATT9_VOLT_PIN) to the actual battery's voltage (pin_voltage * VOLT_MULT). For the 3DR Power brick with a Pixhawk, this should be set to 10.1. For the Pixhawk with the 3DR 4in1 ESC this should be 12.02. For the PX using the PX4IO power supply this should be set to 1." user="Advanced">
</param>
<param humanName="Amps per volt" name="BATT9_AMP_PERVLT" documentation="Number of amps that a 1V reading on the current sensor corresponds to. With a Pixhawk using the 3DR Power brick this should be set to 17. For the Pixhawk with the 3DR 4in1 ESC this should be 17." user="Standard">
<field name="Units">A/V</field>
<field name="UnitText">ampere per volt</field>
</param>
<param humanName="AMP offset" name="BATT9_AMP_OFFSET" documentation="Voltage offset at zero current on current sensor" user="Standard">
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery capacity" name="BATT9_CAPACITY" documentation="Capacity of the battery in mAh when full" user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Maximum allowed power (Watts)" name="BATT9_WATT_MAX" documentation="If battery wattage (voltage * current) exceeds this value then the system will reduce max throttle (THR_MAX, TKOFF_THR_MAX and THR_MIN for reverse thrust) to satisfy this limit. This helps limit high current to low C rated batteries regardless of battery voltage. The max throttle will slowly grow back to THR_MAX (or TKOFF_THR_MAX ) and THR_MIN if demanding the current max and under the watt max. Use 0 to disable." user="Advanced">
<field name="Increment">1</field>
<field name="Units">W</field>
<field name="UnitText">watt</field>
</param>
<param humanName="Battery serial number" name="BATT9_SERIAL_NUM" documentation="Battery serial number, automatically filled in for SMBus batteries, otherwise will be -1. With UAVCAN it is the battery_id." user="Advanced">
</param>
<param humanName="Low voltage timeout" name="BATT9_LOW_TIMER" documentation="This is the timeout in seconds before a low voltage event will be triggered. For aircraft with low C batteries it may be necessary to raise this in order to cope with low voltage on long takeoffs. A value of zero disables low voltage errors." user="Advanced">
<field name="Range">0 120</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Failsafe voltage source" name="BATT9_FS_VOLTSRC" documentation="Voltage type used for detection of low voltage event" user="Advanced">
<values>
<value code="0">Raw Voltage</value>
<value code=" 1">Sag Compensated Voltage</value>
</values>
</param>
<param humanName="Low battery voltage" name="BATT9_LOW_VOLT" documentation="Battery voltage that triggers a low battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT9_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT9_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Low battery capacity" name="BATT9_LOW_MAH" documentation="Battery capacity at which the low battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT9_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Critical battery voltage" name="BATT9_CRT_VOLT" documentation="Battery voltage that triggers a critical battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT9_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT9_FS_CRT_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery critical capacity" name="BATT9_CRT_MAH" documentation="Battery capacity at which the critical battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT9__FS_CRT_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Low battery failsafe action" name="BATT9_FS_LOW_ACT" documentation="What action the vehicle should perform if it hits a low battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
</values>
</param>
<param humanName="Critical battery failsafe action" name="BATT9_FS_CRT_ACT" documentation="What action the vehicle should perform if it hits a critical battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
<value code="5">Parachute</value>
</values>
</param>
<param humanName="Required arming voltage" name="BATT9_ARM_VOLT" documentation="Battery voltage level which is required to arm the aircraft. Set to 0 to allow arming at any voltage." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Required arming remaining capacity" name="BATT9_ARM_MAH" documentation="Battery capacity remaining which is required to arm the aircraft. Set to 0 to allow arming at any capacity. Note that execept for smart batteries rebooting the vehicle will always reset the remaining capacity estimate, which can lead to this check not providing sufficent protection, it is recommended to always use this in conjunction with the BATT9__ARM_VOLT parameter." user="Advanced">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
</parameters>
<parameters name="BATT_">
<param humanName="Battery monitoring" name="BATT_MONITOR" documentation="Controls enabling monitoring of the battery's voltage and current" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="3">Analog Voltage Only</value>
<value code="4">Analog Voltage and Current</value>
<value code="5">Solo</value>
<value code="6">Bebop</value>
<value code="7">SMBus-Maxell</value>
<value code="8">UAVCAN-BatteryInfo</value>
<value code="9">BLHeli ESC</value>
<value code="10">SumOfFollowing</value>
<value code="11">FuelFlow</value>
<value code="12">FuelLevelPWM</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Voltage sensing pin" name="BATT_VOLT_PIN" documentation="Sets the analog input pin that should be used for voltage monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 2">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 13">Pixhawk2_PM2</value>
<value code=" 14">CubeOrange</value>
<value code=" 13">CubeOrange_PM2</value>
<value code=" 100">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Battery Current sensing pin" name="BATT_CURR_PIN" documentation="Sets the analog input pin that should be used for current monitoring." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code=" 3">Pixhawk/Pixracer/Navio2/Pixhawk2_PM1</value>
<value code=" 14">Pixhawk2_PM2</value>
<value code=" 15">CubeOrange</value>
<value code=" 4">CubeOrange_PM2</value>
<value code=" 101">PX4-v1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Voltage Multiplier" name="BATT_VOLT_MULT" documentation="Used to convert the voltage of the voltage sensing pin (BATT_VOLT_PIN) to the actual battery's voltage (pin_voltage * VOLT_MULT). For the 3DR Power brick with a Pixhawk, this should be set to 10.1. For the Pixhawk with the 3DR 4in1 ESC this should be 12.02. For the PX using the PX4IO power supply this should be set to 1." user="Advanced">
</param>
<param humanName="Amps per volt" name="BATT_AMP_PERVLT" documentation="Number of amps that a 1V reading on the current sensor corresponds to. With a Pixhawk using the 3DR Power brick this should be set to 17. For the Pixhawk with the 3DR 4in1 ESC this should be 17." user="Standard">
<field name="Units">A/V</field>
<field name="UnitText">ampere per volt</field>
</param>
<param humanName="AMP offset" name="BATT_AMP_OFFSET" documentation="Voltage offset at zero current on current sensor" user="Standard">
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery capacity" name="BATT_CAPACITY" documentation="Capacity of the battery in mAh when full" user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Maximum allowed power (Watts)" name="BATT_WATT_MAX" documentation="If battery wattage (voltage * current) exceeds this value then the system will reduce max throttle (THR_MAX, TKOFF_THR_MAX and THR_MIN for reverse thrust) to satisfy this limit. This helps limit high current to low C rated batteries regardless of battery voltage. The max throttle will slowly grow back to THR_MAX (or TKOFF_THR_MAX ) and THR_MIN if demanding the current max and under the watt max. Use 0 to disable." user="Advanced">
<field name="Increment">1</field>
<field name="Units">W</field>
<field name="UnitText">watt</field>
</param>
<param humanName="Battery serial number" name="BATT_SERIAL_NUM" documentation="Battery serial number, automatically filled in for SMBus batteries, otherwise will be -1. With UAVCAN it is the battery_id." user="Advanced">
</param>
<param humanName="Low voltage timeout" name="BATT_LOW_TIMER" documentation="This is the timeout in seconds before a low voltage event will be triggered. For aircraft with low C batteries it may be necessary to raise this in order to cope with low voltage on long takeoffs. A value of zero disables low voltage errors." user="Advanced">
<field name="Range">0 120</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Failsafe voltage source" name="BATT_FS_VOLTSRC" documentation="Voltage type used for detection of low voltage event" user="Advanced">
<values>
<value code="0">Raw Voltage</value>
<value code=" 1">Sag Compensated Voltage</value>
</values>
</param>
<param humanName="Low battery voltage" name="BATT_LOW_VOLT" documentation="Battery voltage that triggers a low battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Low battery capacity" name="BATT_LOW_MAH" documentation="Battery capacity at which the low battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT_FS_LOW_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Critical battery voltage" name="BATT_CRT_VOLT" documentation="Battery voltage that triggers a critical battery failsafe. Set to 0 to disable. If the battery voltage drops below this voltage continuously for more then the period specified by the BATT_LOW_TIMER parameter then the vehicle will perform the failsafe specified by the BATT_FS_CRT_ACT parameter." user="Standard">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery critical capacity" name="BATT_CRT_MAH" documentation="Battery capacity at which the critical battery failsafe is triggered. Set to 0 to disable battery remaining failsafe. If the battery capacity drops below this level the vehicle will perform the failsafe specified by the BATT__FS_CRT_ACT parameter." user="Standard">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
<param humanName="Low battery failsafe action" name="BATT_FS_LOW_ACT" documentation="What action the vehicle should perform if it hits a low battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
</values>
</param>
<param humanName="Critical battery failsafe action" name="BATT_FS_CRT_ACT" documentation="What action the vehicle should perform if it hits a critical battery failsafe" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RTL</value>
<value code="2">Land</value>
<value code="3">Terminate</value>
<value code="4">QLand</value>
<value code="5">Parachute</value>
</values>
</param>
<param humanName="Required arming voltage" name="BATT_ARM_VOLT" documentation="Battery voltage level which is required to arm the aircraft. Set to 0 to allow arming at any voltage." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Required arming remaining capacity" name="BATT_ARM_MAH" documentation="Battery capacity remaining which is required to arm the aircraft. Set to 0 to allow arming at any capacity. Note that execept for smart batteries rebooting the vehicle will always reset the remaining capacity estimate, which can lead to this check not providing sufficent protection, it is recommended to always use this in conjunction with the BATT__ARM_VOLT parameter." user="Advanced">
<field name="Increment">50</field>
<field name="Units">mAh</field>
<field name="UnitText">milliampere hour</field>
</param>
</parameters>
<parameters name="BRD_">
<param humanName="Auxiliary pin config" name="BRD_PWM_COUNT" documentation="Controls number of FMU outputs which are setup for PWM. All unassigned pins can be used for GPIO" user="Advanced">
<values>
<value code="0">No PWMs</value>
<value code="1">One PWMs</value>
<value code="2">Two PWMs</value>
<value code="3">Three PWMs</value>
<value code="4">Four PWMs</value>
<value code="5">Five PWMs</value>
<value code="6">Six PWMs</value>
<value code="7">Seven PWMs</value>
<value code="8">Eight PWMs</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial 1 flow control" name="BRD_SER1_RTSCTS" documentation="Enable flow control on serial 1 (telemetry 1) on Pixhawk. You must have the RTS and CTS pins connected to your radio. The standard DF13 6 pin connector for a 3DR radio does have those pins connected. If this is set to 2 then flow control will be auto-detected by checking for the output buffer filling on startup. Note that the PX4v1 does not have hardware flow control pins on this port, so you should leave this disabled." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
<value code="2">Auto</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial 2 flow control" name="BRD_SER2_RTSCTS" documentation="Enable flow control on serial 2 (telemetry 2) on Pixhawk and STATE. You must have the RTS and CTS pins connected to your radio. The standard DF13 6 pin connector for a 3DR radio does have those pins connected. If this is set to 2 then flow control will be auto-detected by checking for the output buffer filling on startup." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
<value code="2">Auto</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Enable use of safety arming switch" name="BRD_SAFETYENABLE" documentation="This controls the default state of the safety switch at startup. When set to 1 the safety switch will start in the safe state (flashing) at boot. When set to zero the safety switch will start in the unsafe state (solid) at startup. Note that if a safety switch is fitted the user can still control the safety state after startup using the switch. The safety state can also be controlled in software using a MAVLink message." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName=" SBUS output rate" name="BRD_SBUS_OUT" documentation="This sets the SBUS output frame rate in Hz" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">50Hz</value>
<value code="2">75Hz</value>
<value code="3">100Hz</value>
<value code="4">150Hz</value>
<value code="5">200Hz</value>
<value code="6">250Hz</value>
<value code="7">300Hz</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="User-defined serial number" name="BRD_SERIAL_NUM" documentation="User-defined serial number of this vehicle, it can be any arbitrary number you want and has no effect on the autopilot" user="Standard">
<field name="Range">-32768 32767</field>
</param>
<param humanName="Channels which ignore the safety switch state" name="BRD_SAFETY_MASK" documentation="A bitmask which controls what channels can move while the safety switch has not been pressed" user="Advanced">
<field name="Bitmask">0:Ch1,1:Ch2,2:Ch3,3:Ch4,4:Ch5,5:Ch6,6:Ch7,7:Ch8,8:Ch9,9:Ch10,10:Ch11,11:Ch12,12:Ch13,13:Ch14</field>
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Target IMU temperature" name="BRD_IMU_TARGTEMP" documentation="This sets the target IMU temperature for boards with controllable IMU heating units. DO NOT SET -1 on The Cube. A value of -1 sets PH1 behaviour " user="Advanced">
<field name="Range">-1 80</field>
<field name="Units">degC</field>
<field name="UnitText">degrees Celsius</field>
</param>
<param humanName="Board type" name="BRD_TYPE" documentation="This allows selection of a PX4 or VRBRAIN board type. If set to zero then the board type is auto-detected (PX4)" user="Advanced">
<values>
<value code="0">AUTO</value>
<value code="1">PX4V1</value>
<value code="2">Pixhawk</value>
<value code="3">Cube/Pixhawk2</value>
<value code="4">Pixracer</value>
<value code="5">PixhawkMini</value>
<value code="6">Pixhawk2Slim</value>
<value code="7">VRBrain 5.1</value>
<value code="8">VRBrain 5.2</value>
<value code="9">VR Micro Brain 5.1</value>
<value code="10">VR Micro Brain 5.2</value>
<value code="11">VRBrain Core 1.0</value>
<value code="12">VRBrain 5.4</value>
<value code="13">Intel Aero FC</value>
<value code="20">AUAV2.1</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Enable IO co-processor" name="BRD_IO_ENABLE" documentation="This allows for the IO co-processor on FMUv1 and FMUv2 to be disabled" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Options for safety button behavior" name="BRD_SAFETYOPTION" documentation="This controls the activation of the safety button. It allows you to control if the safety button can be used for safety enable and/or disable, and whether the button is only active when disarmed" user="Standard">
<field name="Bitmask">0:ActiveForSafetyEnable,1:ActiveForSafetyDisable,2:ActiveWhenArmed,3:Force safety on when the aircraft disarms</field>
</param>
<param humanName="Autopilot board voltage requirement" name="BRD_VBUS_MIN" documentation="Minimum voltage on the autopilot power rail to allow the aircraft to arm. 0 to disable the check." user="Advanced">
<field name="Range">4.0 5.5</field>
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Servo voltage requirement" name="BRD_VSERVO_MIN" documentation="Minimum voltage on the servo rail to allow the aircraft to arm. 0 to disable the check." user="Advanced">
<field name="Range">3.3 12.0</field>
<field name="Increment">0.1</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="microSD slowdown" name="BRD_SD_SLOWDOWN" documentation="This is a scaling factor to slow down microSD operation. It can be used on flight board and microSD card combinations where full speed is not reliable. For normal full speed operation a value of 0 should be used." user="Advanced">
<field name="Range">0 32</field>
<field name="Increment">1</field>
</param>
<param humanName="Set PWM Out Voltage" name="BRD_PWM_VOLT_SEL" documentation="This sets the voltage max for PWM output pulses. 0 for 3.3V and 1 for 5V output." user="Advanced">
<values>
<value code="0">3.3V</value>
<value code="1">5V</value>
</values>
</param>
<param humanName="Board options" name="BRD_OPTIONS" documentation="Board specific option flags" user="Advanced">
<field name="Bitmask">0:Enable hardware watchdog</field>
</param>
<param humanName="Boot delay" name="BRD_BOOT_DELAY" documentation="This adds a delay in milliseconds to boot to ensure peripherals initialise fully" user="Advanced">
<field name="Range">0 10000</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
</param>
</parameters>
<parameters name="BRD_RADIO">
<param humanName="Set type of direct attached radio" name="BRD_RADIO_TYPE" documentation="This enables support for direct attached radio receivers">
<values>
<value code="0">None</value>
<value code="1">CYRF6936</value>
<value code="2">CC2500</value>
<value code="3">BK2425</value>
</values>
</param>
<param humanName="protocol" name="BRD_RADIO_PROT" documentation="Select air protocol" user="Advanced">
<values>
<value code="0">Auto</value>
<value code="1">DSM2</value>
<value code="2">DSMX</value>
</values>
</param>
<param humanName="debug level" name="BRD_RADIO_DEBUG" documentation="radio debug level" user="Advanced">
<field name="Range">0 4</field>
</param>
<param humanName="disable receive CRC" name="BRD_RADIO_DISCRC" documentation="disable receive CRC (for debug)" user="Advanced">
<values>
<value code="0">NotDisabled</value>
<value code="1">Disabled</value>
</values>
</param>
<param humanName="RSSI signal strength" name="BRD_RADIO_SIGCH" documentation="Channel to show receive RSSI signal strength, or zero for disabled" user="Advanced">
<field name="Range">0 16</field>
</param>
<param humanName="Packet rate channel" name="BRD_RADIO_PPSCH" documentation="Channel to show received packet-per-second rate, or zero for disabled" user="Advanced">
<field name="Range">0 16</field>
</param>
<param humanName="Enable telemetry" name="BRD_RADIO_TELEM" documentation="If this is non-zero then telemetry packets will be sent over DSM" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Telemetry Transmit power" name="BRD_RADIO_TXPOW" documentation="Set telemetry transmit power. This is the power level (from 1 to 8) for telemetry packets sent from the RX to the TX" user="Advanced">
<field name="Range">1 8</field>
</param>
<param humanName="Put radio into FCC test mode" name="BRD_RADIO_FCCTST" documentation="If this is enabled then the radio will continuously transmit as required for FCC testing. The transmit channel is set by the value of the parameter. The radio will not work for RC input while this is enabled" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">MinChannel</value>
<value code="2">MidChannel</value>
<value code="3">MaxChannel</value>
<value code="4">MinChannelCW</value>
<value code="5">MidChannelCW</value>
<value code="6">MaxChannelCW</value>
</values>
</param>
<param humanName="Stick input mode" name="BRD_RADIO_STKMD" documentation="This selects between different stick input modes. The default is mode2, which has throttle on the left stick and pitch on the right stick. You can instead set mode1, which has throttle on the right stick and pitch on the left stick." user="Advanced">
<values>
<value code="1">Mode1</value>
<value code="2">Mode2</value>
</values>
</param>
<param humanName="Set radio to factory test channel" name="BRD_RADIO_TESTCH" documentation="This sets the radio to a fixed test channel for factory testing. Using a fixed channel avoids the need for binding in factory testing." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">TestChan1</value>
<value code="2">TestChan2</value>
<value code="3">TestChan3</value>
<value code="4">TestChan4</value>
<value code="5">TestChan5</value>
<value code="6">TestChan6</value>
<value code="7">TestChan7</value>
<value code="8">TestChan8</value>
</values>
</param>
<param humanName="RSSI value channel for telemetry data on transmitter" name="BRD_RADIO_TSIGCH" documentation="Channel to show telemetry RSSI value as received by TX" user="Advanced">
<field name="Range">0 16</field>
</param>
<param humanName="Telemetry PPS channel" name="BRD_RADIO_TPPSCH" documentation="Channel to show telemetry packets-per-second value, as received at TX" user="Advanced">
<field name="Range">0 16</field>
</param>
<param humanName="Transmitter transmit power" name="BRD_RADIO_TXMAX" documentation="Set transmitter maximum transmit power (from 1 to 8)" user="Advanced">
<field name="Range">1 8</field>
</param>
<param humanName="Transmitter buzzer adjustment" name="BRD_RADIO_BZOFS" documentation="Set transmitter buzzer note adjustment (adjust frequency up)" user="Advanced">
<field name="Range">0 40</field>
</param>
<param humanName="Auto-bind time" name="BRD_RADIO_ABTIME" documentation="When non-zero this sets the time with no transmitter packets before we start looking for auto-bind packets." user="Advanced">
<field name="Range">0 120</field>
</param>
<param humanName="Auto-bind level" name="BRD_RADIO_ABLVL" documentation="This sets the minimum RSSI of an auto-bind packet for it to be accepted. This should be set so that auto-bind will only happen at short range to minimise the change of an auto-bind happening accidentially" user="Advanced">
<field name="Range">0 31</field>
</param>
</parameters>
<parameters name="BRD_RTC">
<param humanName="Allowed sources of RTC time" name="BRD_RTC_TYPES" documentation="Specifies which sources of UTC time will be accepted" user="Advanced">
<field name="Bitmask">0:GPS,1:MAVLINK_SYSTEM_TIME,2:HW</field>
</param>
<param humanName="Timezone offset from UTC" name="BRD_RTC_TZ_MIN" documentation="Adds offset in +- minutes from UTC to calculate local time" user="Advanced">
<field name="Range">-720 +840</field>
</param>
</parameters>
<parameters name="BTN_">
<param humanName="Enable button reporting" name="BTN_ENABLE" documentation="This enables the button checking module. When this is disabled the parameters for setting button inputs are not visible" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code=" 1">Enabled</value>
</values>
</param>
<param humanName="First button Pin" name="BTN_PIN1" documentation="Digital pin number for first button input. " user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
</values>
</param>
<param humanName="Second button Pin" name="BTN_PIN2" documentation="Digital pin number for second button input. " user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
</values>
</param>
<param humanName="Third button Pin" name="BTN_PIN3" documentation="Digital pin number for third button input. " user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
</values>
</param>
<param humanName="Fourth button Pin" name="BTN_PIN4" documentation="Digital pin number for fourth button input. " user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
</values>
</param>
<param humanName="Report send time" name="BTN_REPORT_SEND" documentation="The duration in seconds that a BUTTON_CHANGE report is repeatedly sent to the GCS regarding a button changing state. Note that the BUTTON_CHANGE message is MAVLink2 only." user="Standard">
<field name="Range">0 3600</field>
</param>
</parameters>
<parameters name="CAM_">
<param humanName="Camera shutter (trigger) type" name="CAM_TRIGG_TYPE" documentation="how to trigger the camera to take a picture" user="Standard">
<values>
<value code="0">Servo</value>
<value code="1">Relay</value>
</values>
</param>
<param humanName="Duration that shutter is held open" name="CAM_DURATION" documentation="How long the shutter will be held open in 10ths of a second (i.e. enter 10 for 1second, 50 for 5seconds)" user="Standard">
<field name="Range">0 50</field>
<field name="Units">ds</field>
<field name="UnitText">deciseconds</field>
</param>
<param humanName="Servo ON PWM value" name="CAM_SERVO_ON" documentation="PWM value in microseconds to move servo to when shutter is activated" user="Standard">
<field name="Range">1000 2000</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo OFF PWM value" name="CAM_SERVO_OFF" documentation="PWM value in microseconds to move servo to when shutter is deactivated" user="Standard">
<field name="Range">1000 2000</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Camera trigger distance" name="CAM_TRIGG_DIST" documentation="Distance in meters between camera triggers. If this value is non-zero then the camera will trigger whenever the GPS position changes by this number of meters regardless of what mode the APM is in. Note that this parameter can also be set in an auto mission using the DO_SET_CAM_TRIGG_DIST command, allowing you to enable/disable the triggering of the camera during the flight." user="Standard">
<field name="Range">0 1000</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Relay ON value" name="CAM_RELAY_ON" documentation="This sets whether the relay goes high or low when it triggers. Note that you should also set RELAY_DEFAULT appropriately for your camera" user="Standard">
<values>
<value code="0">Low</value>
<value code="1">High</value>
</values>
</param>
<param humanName="Minimum time between photos" name="CAM_MIN_INTERVAL" documentation="Postpone shooting if previous picture was taken less than preset time(ms) ago." user="Standard">
<field name="Range">0 10000</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
</param>
<param humanName="Maximum photo roll angle." name="CAM_MAX_ROLL" documentation="Postpone shooting if roll is greater than limit. (0=Disable, will shoot regardless of roll)." user="Standard">
<field name="Range">0 180</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Camera feedback pin" name="CAM_FEEDBACK_PIN" documentation="pin number to use for save accurate camera feedback messages. If set to -1 then don't use a pin flag for this, otherwise this is a pin number which if held high after a picture trigger order, will save camera messages when camera really takes a picture. A universal camera hot shoe is needed. The pin should be held high for at least 2 milliseconds for reliable trigger detection. See also the CAM_FEEDBACK_POL option." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="50">AUX1</value>
<value code="51">AUX2</value>
<value code="52">AUX3</value>
<value code="53">AUX4</value>
<value code="54">AUX5</value>
<value code="55">AUX6</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Camera feedback pin polarity" name="CAM_FEEDBACK_POL" documentation="Polarity for feedback pin. If this is 1 then the feedback pin should go high on trigger. If set to 0 then it should go low" user="Standard">
<values>
<value code="0">TriggerLow</value>
<value code="1">TriggerHigh</value>
</values>
</param>
<param humanName="Distance-trigging in AUTO mode only" name="CAM_AUTO_ONLY" documentation="When enabled, trigging by distance is done in AUTO mode only." user="Standard">
<values>
<value code="0">Always</value>
<value code="1">Only when in AUTO</value>
</values>
</param>
<param humanName="Type of camera (0: None, 1: BMMCC)" name="CAM_TYPE" documentation="Set the camera type that is being used, certain cameras have custom functions that need further configuration, this enables that." user="Standard">
<values>
<value code="0">Default</value>
<value code="1">BMMCC</value>
</values>
</param>
</parameters>
<parameters name="CAN_D1_">
<param humanName="Enable use of specific protocol over virtual driver" name="CAN_D1_PROTOCOL" documentation="Enabling this option starts selected protocol that will use this virtual driver" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">UAVCAN</value>
<value code="2">KDECAN</value>
<value code="3">ToshibaCAN</value>
</values>
<field name="RebootRequired">True</field>
</param>
</parameters>
<parameters name="CAN_D1_KDE_">
<param humanName="Number of motor poles" name="CAN_D1_KDE_NPOLE" documentation="Sets the number of motor poles to calculate the correct RPM value">
</param>
</parameters>
<parameters name="CAN_D1_UC_">
<param humanName="UAVCAN node that is used for this network" name="CAN_D1_UC_NODE" documentation="UAVCAN node should be set implicitly" user="Advanced">
<field name="Range">1 250</field>
</param>
<param humanName="RC Out channels to be transmitted as servo over UAVCAN" name="CAN_D1_UC_SRV_BM" documentation="Bitmask with one set for channel to be transmitted as a servo command over UAVCAN" user="Advanced">
<field name="Bitmask">0: Servo 1, 1: Servo 2, 2: Servo 3, 3: Servo 4, 4: Servo 5, 5: Servo 6, 6: Servo 7, 7: Servo 8, 8: Servo 9, 9: Servo 10, 10: Servo 11, 11: Servo 12, 12: Servo 13, 13: Servo 14, 14: Servo 15</field>
</param>
<param humanName="RC Out channels to be transmitted as ESC over UAVCAN" name="CAN_D1_UC_ESC_BM" documentation="Bitmask with one set for channel to be transmitted as a ESC command over UAVCAN" user="Advanced">
<field name="Bitmask">0: ESC 1, 1: ESC 2, 2: ESC 3, 3: ESC 4, 4: ESC 5, 5: ESC 6, 6: ESC 7, 7: ESC 8, 8: ESC 9, 9: ESC 10, 10: ESC 11, 11: ESC 12, 12: ESC 13, 13: ESC 14, 14: ESC 15, 15: ESC 16</field>
</param>
<param humanName="Servo output rate" name="CAN_D1_UC_SRV_RT" documentation="Maximum transmit rate for servo outputs" user="Advanced">
<field name="Range">1 200</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
</parameters>
<parameters name="CAN_D2_">
<param humanName="Enable use of specific protocol over virtual driver" name="CAN_D2_PROTOCOL" documentation="Enabling this option starts selected protocol that will use this virtual driver" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">UAVCAN</value>
<value code="2">KDECAN</value>
<value code="3">ToshibaCAN</value>
</values>
<field name="RebootRequired">True</field>
</param>
</parameters>
<parameters name="CAN_D2_KDE_">
<param humanName="Number of motor poles" name="CAN_D2_KDE_NPOLE" documentation="Sets the number of motor poles to calculate the correct RPM value">
</param>
</parameters>
<parameters name="CAN_D2_UC_">
<param humanName="UAVCAN node that is used for this network" name="CAN_D2_UC_NODE" documentation="UAVCAN node should be set implicitly" user="Advanced">
<field name="Range">1 250</field>
</param>
<param humanName="RC Out channels to be transmitted as servo over UAVCAN" name="CAN_D2_UC_SRV_BM" documentation="Bitmask with one set for channel to be transmitted as a servo command over UAVCAN" user="Advanced">
<field name="Bitmask">0: Servo 1, 1: Servo 2, 2: Servo 3, 3: Servo 4, 4: Servo 5, 5: Servo 6, 6: Servo 7, 7: Servo 8, 8: Servo 9, 9: Servo 10, 10: Servo 11, 11: Servo 12, 12: Servo 13, 13: Servo 14, 14: Servo 15</field>
</param>
<param humanName="RC Out channels to be transmitted as ESC over UAVCAN" name="CAN_D2_UC_ESC_BM" documentation="Bitmask with one set for channel to be transmitted as a ESC command over UAVCAN" user="Advanced">
<field name="Bitmask">0: ESC 1, 1: ESC 2, 2: ESC 3, 3: ESC 4, 4: ESC 5, 5: ESC 6, 6: ESC 7, 7: ESC 8, 8: ESC 9, 9: ESC 10, 10: ESC 11, 11: ESC 12, 12: ESC 13, 13: ESC 14, 14: ESC 15, 15: ESC 16</field>
</param>
<param humanName="Servo output rate" name="CAN_D2_UC_SRV_RT" documentation="Maximum transmit rate for servo outputs" user="Advanced">
<field name="Range">1 200</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
</parameters>
<parameters name="CAN_D3_">
<param humanName="Enable use of specific protocol over virtual driver" name="CAN_D3_PROTOCOL" documentation="Enabling this option starts selected protocol that will use this virtual driver" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">UAVCAN</value>
<value code="2">KDECAN</value>
<value code="3">ToshibaCAN</value>
</values>
<field name="RebootRequired">True</field>
</param>
</parameters>
<parameters name="CAN_D3_KDE_">
<param humanName="Number of motor poles" name="CAN_D3_KDE_NPOLE" documentation="Sets the number of motor poles to calculate the correct RPM value">
</param>
</parameters>
<parameters name="CAN_D3_UC_">
<param humanName="UAVCAN node that is used for this network" name="CAN_D3_UC_NODE" documentation="UAVCAN node should be set implicitly" user="Advanced">
<field name="Range">1 250</field>
</param>
<param humanName="RC Out channels to be transmitted as servo over UAVCAN" name="CAN_D3_UC_SRV_BM" documentation="Bitmask with one set for channel to be transmitted as a servo command over UAVCAN" user="Advanced">
<field name="Bitmask">0: Servo 1, 1: Servo 2, 2: Servo 3, 3: Servo 4, 4: Servo 5, 5: Servo 6, 6: Servo 7, 7: Servo 8, 8: Servo 9, 9: Servo 10, 10: Servo 11, 11: Servo 12, 12: Servo 13, 13: Servo 14, 14: Servo 15</field>
</param>
<param humanName="RC Out channels to be transmitted as ESC over UAVCAN" name="CAN_D3_UC_ESC_BM" documentation="Bitmask with one set for channel to be transmitted as a ESC command over UAVCAN" user="Advanced">
<field name="Bitmask">0: ESC 1, 1: ESC 2, 2: ESC 3, 3: ESC 4, 4: ESC 5, 5: ESC 6, 6: ESC 7, 7: ESC 8, 8: ESC 9, 9: ESC 10, 10: ESC 11, 11: ESC 12, 12: ESC 13, 13: ESC 14, 14: ESC 15, 15: ESC 16</field>
</param>
<param humanName="Servo output rate" name="CAN_D3_UC_SRV_RT" documentation="Maximum transmit rate for servo outputs" user="Advanced">
<field name="Range">1 200</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
</parameters>
<parameters name="CAN_P1_">
<param humanName="Index of virtual driver to be used with physical CAN interface" name="CAN_P1_DRIVER" documentation="Enabling this option enables use of CAN buses." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">First driver</value>
<value code="2">Second driver</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Bitrate of CAN interface" name="CAN_P1_BITRATE" documentation="Bit rate can be set up to from 10000 to 1000000" user="Advanced">
<field name="Range">10000 1000000</field>
</param>
<param humanName="Level of debug for CAN devices" name="CAN_P1_DEBUG" documentation="Enabling this option will provide debug messages" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Major messages</value>
<value code="2">All messages</value>
</values>
</param>
</parameters>
<parameters name="CAN_P2_">
<param humanName="Index of virtual driver to be used with physical CAN interface" name="CAN_P2_DRIVER" documentation="Enabling this option enables use of CAN buses." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">First driver</value>
<value code="2">Second driver</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Bitrate of CAN interface" name="CAN_P2_BITRATE" documentation="Bit rate can be set up to from 10000 to 1000000" user="Advanced">
<field name="Range">10000 1000000</field>
</param>
<param humanName="Level of debug for CAN devices" name="CAN_P2_DEBUG" documentation="Enabling this option will provide debug messages" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Major messages</value>
<value code="2">All messages</value>
</values>
</param>
</parameters>
<parameters name="CAN_P3_">
<param humanName="Index of virtual driver to be used with physical CAN interface" name="CAN_P3_DRIVER" documentation="Enabling this option enables use of CAN buses." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">First driver</value>
<value code="2">Second driver</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Bitrate of CAN interface" name="CAN_P3_BITRATE" documentation="Bit rate can be set up to from 10000 to 1000000" user="Advanced">
<field name="Range">10000 1000000</field>
</param>
<param humanName="Level of debug for CAN devices" name="CAN_P3_DEBUG" documentation="Enabling this option will provide debug messages" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Major messages</value>
<value code="2">All messages</value>
</values>
</param>
</parameters>
<parameters name="CAN_SLCAN_">
<param humanName="SLCAN Route" name="CAN_SLCAN_CPORT" documentation="CAN Driver ID to be routed to SLCAN, 0 means no routing" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">First driver</value>
<value code="2">Second driver</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="SLCAN Serial Port" name="CAN_SLCAN_SERNUM" documentation="Serial Port ID to be used for temporary SLCAN iface, -1 means no temporary serial. This parameter is automatically reset on reboot or on timeout. See CAN_SLCAN_TIMOUT for timeout details" user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="0">Serial0</value>
<value code="1">Serial1</value>
<value code="2">Serial2</value>
<value code="3">Serial3</value>
<value code="4">Serial4</value>
<value code="5">Serial5</value>
<value code="6">Serial6</value>
</values>
</param>
<param humanName="SLCAN Timeout" name="CAN_SLCAN_TIMOUT" documentation="Duration of inactivity after which SLCAN is switched back to original protocol in seconds." user="Standard">
<field name="Range">0 32767</field>
</param>
</parameters>
<parameters name="CHUTE_">
<param humanName="Parachute release enabled or disabled" name="CHUTE_ENABLED" documentation="Parachute release enabled or disabled" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Parachute release mechanism type (relay or servo)" name="CHUTE_TYPE" documentation="Parachute release mechanism type (relay or servo)" user="Standard">
<values>
<value code="0">First Relay</value>
<value code="1">Second Relay</value>
<value code="2">Third Relay</value>
<value code="3">Fourth Relay</value>
<value code="10">Servo</value>
</values>
</param>
<param humanName="Parachute Servo ON PWM value" name="CHUTE_SERVO_ON" documentation="Parachute Servo PWM value in microseconds when parachute is released" user="Standard">
<field name="Range">1000 2000</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo OFF PWM value" name="CHUTE_SERVO_OFF" documentation="Parachute Servo PWM value in microseconds when parachute is not released" user="Standard">
<field name="Range">1000 2000</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Parachute min altitude in meters above home" name="CHUTE_ALT_MIN" documentation="Parachute min altitude above home.  Parachute will not be released below this altitude.  0 to disable alt check." user="Standard">
<field name="Range">0 32000</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Parachute release delay" name="CHUTE_DELAY_MS" documentation="Delay in millseconds between motor stop and chute release" user="Standard">
<field name="Range">0 5000</field>
<field name="Increment">1</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
</param>
<param humanName="Critical sink speed rate in m/s to trigger emergency parachute" name="CHUTE_CRT_SINK" documentation="Release parachute when critical sink rate is reached" user="Standard">
<field name="Range">0 15</field>
<field name="Increment">1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
</parameters>
<parameters name="COMPASS_">
<param humanName="Compass offsets in milligauss on the X axis" name="COMPASS_OFS_X" documentation="Offset to be added to the compass x-axis values to compensate for metal in the frame" user="Advanced">
<field name="Range">-400 400</field>
<field name="Increment">1</field>
<field name="Units">mGauss</field>
<field name="UnitText">milligauss</field>
</param>
<param humanName="Compass offsets in milligauss on the Y axis" name="COMPASS_OFS_Y" documentation="Offset to be added to the compass y-axis values to compensate for metal in the frame" user="Advanced">
<field name="Range">-400 400</field>
<field name="Increment">1</field>
<field name="Units">mGauss</field>
<field name="UnitText">milligauss</field>
</param>
<param humanName="Compass offsets in milligauss on the Z axis" name="COMPASS_OFS_Z" documentation="Offset to be added to the compass z-axis values to compensate for metal in the frame" user="Advanced">
<field name="Range">-400 400</field>
<field name="Increment">1</field>
<field name="Units">mGauss</field>
<field name="UnitText">milligauss</field>
</param>
<param humanName="Compass declination" name="COMPASS_DEC" documentation="An angle to compensate between the true north and magnetic north" user="Standard">
<field name="Range">-3.142 3.142</field>
<field name="Increment">0.01</field>
<field name="Units">rad</field>
<field name="UnitText">radians</field>
</param>
<param humanName="Learn compass offsets automatically" name="COMPASS_LEARN" documentation="Enable or disable the automatic learning of compass offsets. You can enable learning either using a compass-only method that is suitable only for fixed wing aircraft or using the offsets learnt by the active EKF state estimator. If this option is enabled then the learnt offsets are saved when you disarm the vehicle. If InFlight learning is enabled then the compass with automatically start learning once a flight starts (must be armed). While InFlight learning is running you cannot use position control modes." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Internal-Learning</value>
<value code="2">EKF-Learning</value>
<value code="3">InFlight-Learning</value>
</values>
</param>
<param humanName="Use compass for yaw" name="COMPASS_USE" documentation="Enable or disable the use of the compass (instead of the GPS) for determining heading" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Auto Declination" name="COMPASS_AUTODEC" documentation="Enable or disable the automatic calculation of the declination based on gps location" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Motor interference compensation type" name="COMPASS_MOTCT" documentation="Set motor interference compensation type to disabled, throttle or current.  Do not change manually." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Use Throttle</value>
<value code="2">Use Current</value>
</values>
</param>
<param humanName="Motor interference compensation for body frame X axis" name="COMPASS_MOT_X" documentation="Multiplied by the current throttle and added to the compass's x-axis values to compensate for motor interference (Offset per Amp or at Full Throttle)" user="Advanced">
<field name="Range">-1000 1000</field>
<field name="Increment">1</field>
<field name="Units">mGauss/A</field>
<field name="UnitText">milligauss per ampere</field>
</param>
<param humanName="Motor interference compensation for body frame Y axis" name="COMPASS_MOT_Y" documentation="Multiplied by the current throttle and added to the compass's y-axis values to compensate for motor interference (Offset per Amp or at Full Throttle)" user="Advanced">
<field name="Range">-1000 1000</field>
<field name="Increment">1</field>
<field name="Units">mGauss/A</field>
<field name="UnitText">milligauss per ampere</field>
</param>
<param humanName="Motor interference compensation for body frame Z axis" name="COMPASS_MOT_Z" documentation="Multiplied by the current throttle and added to the compass's z-axis values to compensate for motor interference (Offset per Amp or at Full Throttle)" user="Advanced">
<field name="Range">-1000 1000</field>
<field name="Increment">1</field>
<field name="Units">mGauss/A</field>
<field name="UnitText">milligauss per ampere</field>
</param>
<param humanName="Compass orientation" name="COMPASS_ORIENT" documentation="The orientation of the first external compass relative to the vehicle frame. This value will be ignored unless this compass is set as an external compass. When set correctly in the northern hemisphere, pointing the nose and right side down should increase the MagX and MagY values respectively. Rolling the vehicle upside down should decrease the MagZ value. For southern hemisphere, switch increase and decrease. NOTE: For internal compasses, AHRS_ORIENT is used." user="Advanced">
<values>
<value code="0">None</value>
<value code="1">Yaw45</value>
<value code="2">Yaw90</value>
<value code="3">Yaw135</value>
<value code="4">Yaw180</value>
<value code="5">Yaw225</value>
<value code="6">Yaw270</value>
<value code="7">Yaw315</value>
<value code="8">Roll180</value>
<value code="9">Roll180Yaw45</value>
<value code="10">Roll180Yaw90</value>
<value code="11">Roll180Yaw135</value>
<value code="12">Pitch180</value>
<value code="13">Roll180Yaw225</value>
<value code="14">Roll180Yaw270</value>
<value code="15">Roll180Yaw315</value>
<value code="16">Roll90</value>
<value code="17">Roll90Yaw45</value>
<value code="18">Roll90Yaw90</value>
<value code="19">Roll90Yaw135</value>
<value code="20">Roll270</value>
<value code="21">Roll270Yaw45</value>
<value code="22">Roll270Yaw90</value>
<value code="23">Roll270Yaw135</value>
<value code="24">Pitch90</value>
<value code="25">Pitch270</value>
<value code="26">Pitch180Yaw90</value>
<value code="27">Pitch180Yaw270</value>
<value code="28">Roll90Pitch90</value>
<value code="29">Roll180Pitch90</value>
<value code="30">Roll270Pitch90</value>
<value code="31">Roll90Pitch180</value>
<value code="32">Roll270Pitch180</value>
<value code="33">Roll90Pitch270</value>
<value code="34">Roll180Pitch270</value>
<value code="35">Roll270Pitch270</value>
<value code="36">Roll90Pitch180Yaw90</value>
<value code="37">Roll90Yaw270</value>
<value code="38">Yaw293Pitch68Roll180</value>
<value code="39">Pitch315</value>
<value code="40">Roll90Pitch315</value>
</values>
</param>
<param humanName="Compass is attached via an external cable" name="COMPASS_EXTERNAL" documentation="Configure compass so it is attached externally. This is auto-detected on PX4 and Pixhawk. Set to 1 if the compass is externally connected. When externally connected the COMPASS_ORIENT option operates independently of the AHRS_ORIENTATION board orientation option. If set to 0 or 1 then auto-detection by bus connection can override the value. If set to 2 then auto-detection will be disabled." user="Advanced">
<values>
<value code="0">Internal</value>
<value code="1">External</value>
<value code="2">ForcedExternal</value>
</values>
</param>
<param humanName="Compass2 offsets in milligauss on the X axis" name="COMPASS_OFS2_X" documentation="Offset to be added to compass2's x-axis values to compensate for metal in the frame" user="Advanced">
<field name="Range">-400 400</field>
<field name="Increment">1</field>
<field name="Units">mGauss</field>
<field name="UnitText">milligauss</field>
</param>
<param humanName="Compass2 offsets in milligauss on the Y axis" name="COMPASS_OFS2_Y" documentation="Offset to be added to compass2's y-axis values to compensate for metal in the frame" user="Advanced">
<field name="Range">-400 400</field>
<field name="Increment">1</field>
<field name="Units">mGauss</field>
<field name="UnitText">milligauss</field>
</param>
<param humanName="Compass2 offsets in milligauss on the Z axis" name="COMPASS_OFS2_Z" documentation="Offset to be added to compass2's z-axis values to compensate for metal in the frame" user="Advanced">
<field name="Range">-400 400</field>
<field name="Increment">1</field>
<field name="Units">mGauss</field>
<field name="UnitText">milligauss</field>
</param>
<param humanName="Motor interference compensation to compass2 for body frame X axis" name="COMPASS_MOT2_X" documentation="Multiplied by the current throttle and added to compass2's x-axis values to compensate for motor interference (Offset per Amp or at Full Throttle)" user="Advanced">
<field name="Range">-1000 1000</field>
<field name="Increment">1</field>
<field name="Units">mGauss/A</field>
<field name="UnitText">milligauss per ampere</field>
</param>
<param humanName="Motor interference compensation to compass2 for body frame Y axis" name="COMPASS_MOT2_Y" documentation="Multiplied by the current throttle and added to compass2's y-axis values to compensate for motor interference (Offset per Amp or at Full Throttle)" user="Advanced">
<field name="Range">-1000 1000</field>
<field name="Increment">1</field>
<field name="Units">mGauss/A</field>
<field name="UnitText">milligauss per ampere</field>
</param>
<param humanName="Motor interference compensation to compass2 for body frame Z axis" name="COMPASS_MOT2_Z" documentation="Multiplied by the current throttle and added to compass2's z-axis values to compensate for motor interference (Offset per Amp or at Full Throttle)" user="Advanced">
<field name="Range">-1000 1000</field>
<field name="Increment">1</field>
<field name="Units">mGauss/A</field>
<field name="UnitText">milligauss per ampere</field>
</param>
<param humanName="Choose primary compass" name="COMPASS_PRIMARY" documentation="If more than one compass is available, this selects which compass is the primary. When external compasses are connected, they will be ordered first. NOTE: If no external compass is attached, this parameter is ignored." user="Advanced">
<values>
<value code="0">FirstCompass</value>
<value code="1">SecondCompass</value>
<value code="2">ThirdCompass</value>
</values>
</param>
<param humanName="Compass3 offsets in milligauss on the X axis" name="COMPASS_OFS3_X" documentation="Offset to be added to compass3's x-axis values to compensate for metal in the frame" user="Advanced">
<field name="Range">-400 400</field>
<field name="Increment">1</field>
<field name="Units">mGauss</field>
<field name="UnitText">milligauss</field>
</param>
<param humanName="Compass3 offsets in milligauss on the Y axis" name="COMPASS_OFS3_Y" documentation="Offset to be added to compass3's y-axis values to compensate for metal in the frame" user="Advanced">
<field name="Range">-400 400</field>
<field name="Increment">1</field>
<field name="Units">mGauss</field>
<field name="UnitText">milligauss</field>
</param>
<param humanName="Compass3 offsets in milligauss on the Z axis" name="COMPASS_OFS3_Z" documentation="Offset to be added to compass3's z-axis values to compensate for metal in the frame" user="Advanced">
<field name="Range">-400 400</field>
<field name="Increment">1</field>
<field name="Units">mGauss</field>
<field name="UnitText">milligauss</field>
</param>
<param humanName="Motor interference compensation to compass3 for body frame X axis" name="COMPASS_MOT3_X" documentation="Multiplied by the current throttle and added to compass3's x-axis values to compensate for motor interference (Offset per Amp or at Full Throttle)" user="Advanced">
<field name="Range">-1000 1000</field>
<field name="Increment">1</field>
<field name="Units">mGauss/A</field>
<field name="UnitText">milligauss per ampere</field>
</param>
<param humanName="Motor interference compensation to compass3 for body frame Y axis" name="COMPASS_MOT3_Y" documentation="Multiplied by the current throttle and added to compass3's y-axis values to compensate for motor interference (Offset per Amp or at Full Throttle)" user="Advanced">
<field name="Range">-1000 1000</field>
<field name="Increment">1</field>
<field name="Units">mGauss/A</field>
<field name="UnitText">milligauss per ampere</field>
</param>
<param humanName="Motor interference compensation to compass3 for body frame Z axis" name="COMPASS_MOT3_Z" documentation="Multiplied by the current throttle and added to compass3's z-axis values to compensate for motor interference (Offset per Amp or at Full Throttle)" user="Advanced">
<field name="Range">-1000 1000</field>
<field name="Increment">1</field>
<field name="Units">mGauss/A</field>
<field name="UnitText">milligauss per ampere</field>
</param>
<param humanName="Compass device id" name="COMPASS_DEV_ID" documentation="Compass device id.  Automatically detected, do not set manually" user="Advanced">
<field name="ReadOnly">True</field>
</param>
<param humanName="Compass2 device id" name="COMPASS_DEV_ID2" documentation="Second compass's device id.  Automatically detected, do not set manually" user="Advanced">
<field name="ReadOnly">True</field>
</param>
<param humanName="Compass3 device id" name="COMPASS_DEV_ID3" documentation="Third compass's device id.  Automatically detected, do not set manually" user="Advanced">
<field name="ReadOnly">True</field>
</param>
<param humanName="Compass2 used for yaw" name="COMPASS_USE2" documentation="Enable or disable the second compass for determining heading." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Compass2 orientation" name="COMPASS_ORIENT2" documentation="The orientation of a second external compass relative to the vehicle frame. This value will be ignored unless this compass is set as an external compass. When set correctly in the northern hemisphere, pointing the nose and right side down should increase the MagX and MagY values respectively. Rolling the vehicle upside down should decrease the MagZ value. For southern hemisphere, switch increase and decrease. NOTE: For internal compasses, AHRS_ORIENT is used." user="Advanced">
<values>
<value code="0">None</value>
<value code="1">Yaw45</value>
<value code="2">Yaw90</value>
<value code="3">Yaw135</value>
<value code="4">Yaw180</value>
<value code="5">Yaw225</value>
<value code="6">Yaw270</value>
<value code="7">Yaw315</value>
<value code="8">Roll180</value>
<value code="9">Roll180Yaw45</value>
<value code="10">Roll180Yaw90</value>
<value code="11">Roll180Yaw135</value>
<value code="12">Pitch180</value>
<value code="13">Roll180Yaw225</value>
<value code="14">Roll180Yaw270</value>
<value code="15">Roll180Yaw315</value>
<value code="16">Roll90</value>
<value code="17">Roll90Yaw45</value>
<value code="18">Roll90Yaw90</value>
<value code="19">Roll90Yaw135</value>
<value code="20">Roll270</value>
<value code="21">Roll270Yaw45</value>
<value code="22">Roll270Yaw90</value>
<value code="23">Roll270Yaw135</value>
<value code="24">Pitch90</value>
<value code="25">Pitch270</value>
<value code="26">Pitch180Yaw90</value>
<value code="27">Pitch180Yaw270</value>
<value code="28">Roll90Pitch90</value>
<value code="29">Roll180Pitch90</value>
<value code="30">Roll270Pitch90</value>
<value code="31">Roll90Pitch180</value>
<value code="32">Roll270Pitch180</value>
<value code="33">Roll90Pitch270</value>
<value code="34">Roll180Pitch270</value>
<value code="35">Roll270Pitch270</value>
<value code="36">Roll90Pitch180Yaw90</value>
<value code="37">Roll90Yaw270</value>
<value code="38">Yaw293Pitch68Roll180</value>
<value code="39">Pitch315</value>
<value code="40">Roll90Pitch315</value>
</values>
</param>
<param humanName="Compass2 is attached via an external cable" name="COMPASS_EXTERN2" documentation="Configure second compass so it is attached externally. This is auto-detected on PX4 and Pixhawk. If set to 0 or 1 then auto-detection by bus connection can override the value. If set to 2 then auto-detection will be disabled." user="Advanced">
<values>
<value code="0">Internal</value>
<value code="1">External</value>
<value code="2">ForcedExternal</value>
</values>
</param>
<param humanName="Compass3 used for yaw" name="COMPASS_USE3" documentation="Enable or disable the third compass for determining heading." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Compass3 orientation" name="COMPASS_ORIENT3" documentation="The orientation of a third external compass relative to the vehicle frame. This value will be ignored unless this compass is set as an external compass. When set correctly in the northern hemisphere, pointing the nose and right side down should increase the MagX and MagY values respectively. Rolling the vehicle upside down should decrease the MagZ value. For southern hemisphere, switch increase and decrease. NOTE: For internal compasses, AHRS_ORIENT is used." user="Advanced">
<values>
<value code="0">None</value>
<value code="1">Yaw45</value>
<value code="2">Yaw90</value>
<value code="3">Yaw135</value>
<value code="4">Yaw180</value>
<value code="5">Yaw225</value>
<value code="6">Yaw270</value>
<value code="7">Yaw315</value>
<value code="8">Roll180</value>
<value code="9">Roll180Yaw45</value>
<value code="10">Roll180Yaw90</value>
<value code="11">Roll180Yaw135</value>
<value code="12">Pitch180</value>
<value code="13">Roll180Yaw225</value>
<value code="14">Roll180Yaw270</value>
<value code="15">Roll180Yaw315</value>
<value code="16">Roll90</value>
<value code="17">Roll90Yaw45</value>
<value code="18">Roll90Yaw90</value>
<value code="19">Roll90Yaw135</value>
<value code="20">Roll270</value>
<value code="21">Roll270Yaw45</value>
<value code="22">Roll270Yaw90</value>
<value code="23">Roll270Yaw135</value>
<value code="24">Pitch90</value>
<value code="25">Pitch270</value>
<value code="26">Pitch180Yaw90</value>
<value code="27">Pitch180Yaw270</value>
<value code="28">Roll90Pitch90</value>
<value code="29">Roll180Pitch90</value>
<value code="30">Roll270Pitch90</value>
<value code="31">Roll90Pitch180</value>
<value code="32">Roll270Pitch180</value>
<value code="33">Roll90Pitch270</value>
<value code="34">Roll180Pitch270</value>
<value code="35">Roll270Pitch270</value>
<value code="36">Roll90Pitch180Yaw90</value>
<value code="37">Roll90Yaw270</value>
<value code="38">Yaw293Pitch68Roll180</value>
<value code="39">Pitch315</value>
<value code="40">Roll90Pitch315</value>
</values>
</param>
<param humanName="Compass3 is attached via an external cable" name="COMPASS_EXTERN3" documentation="Configure third compass so it is attached externally. This is auto-detected on PX4 and Pixhawk. If set to 0 or 1 then auto-detection by bus connection can override the value. If set to 2 then auto-detection will be disabled." user="Advanced">
<values>
<value code="0">Internal</value>
<value code="1">External</value>
<value code="2">ForcedExternal</value>
</values>
</param>
<param humanName="Compass soft-iron diagonal X component" name="COMPASS_DIA_X" documentation="DIA_X in the compass soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass soft-iron diagonal Y component" name="COMPASS_DIA_Y" documentation="DIA_Y in the compass soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass soft-iron diagonal Z component" name="COMPASS_DIA_Z" documentation="DIA_Z in the compass soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass soft-iron off-diagonal X component" name="COMPASS_ODI_X" documentation="ODI_X in the compass soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass soft-iron off-diagonal Y component" name="COMPASS_ODI_Y" documentation="ODI_Y in the compass soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass soft-iron off-diagonal Z component" name="COMPASS_ODI_Z" documentation="ODI_Z in the compass soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass2 soft-iron diagonal X component" name="COMPASS_DIA2_X" documentation="DIA_X in the compass2 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass2 soft-iron diagonal Y component" name="COMPASS_DIA2_Y" documentation="DIA_Y in the compass2 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass2 soft-iron diagonal Z component" name="COMPASS_DIA2_Z" documentation="DIA_Z in the compass2 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass2 soft-iron off-diagonal X component" name="COMPASS_ODI2_X" documentation="ODI_X in the compass2 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass2 soft-iron off-diagonal Y component" name="COMPASS_ODI2_Y" documentation="ODI_Y in the compass2 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass2 soft-iron off-diagonal Z component" name="COMPASS_ODI2_Z" documentation="ODI_Z in the compass2 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass3 soft-iron diagonal X component" name="COMPASS_DIA3_X" documentation="DIA_X in the compass3 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass3 soft-iron diagonal Y component" name="COMPASS_DIA3_Y" documentation="DIA_Y in the compass3 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass3 soft-iron diagonal Z component" name="COMPASS_DIA3_Z" documentation="DIA_Z in the compass3 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass3 soft-iron off-diagonal X component" name="COMPASS_ODI3_X" documentation="ODI_X in the compass3 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass3 soft-iron off-diagonal Y component" name="COMPASS_ODI3_Y" documentation="ODI_Y in the compass3 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass3 soft-iron off-diagonal Z component" name="COMPASS_ODI3_Z" documentation="ODI_Z in the compass3 soft-iron calibration matrix: [[DIA_X, ODI_X, ODI_Y], [ODI_X, DIA_Y, ODI_Z], [ODI_Y, ODI_Z, DIA_Z]]" user="Advanced">
</param>
<param humanName="Compass calibration fitness" name="COMPASS_CAL_FIT" documentation="This controls the fitness level required for a successful compass calibration. A lower value makes for a stricter fit (less likely to pass). This is the value used for the primary magnetometer. Other magnetometers get double the value." user="Advanced">
<field name="Range">4 32</field>
<values>
<value code="4">Very Strict</value>
<value code="8">Strict</value>
<value code="16">Default</value>
<value code="32">Relaxed</value>
</values>
<field name="Increment">0.1</field>
</param>
<param humanName="Compass maximum offset" name="COMPASS_OFFS_MAX" documentation="This sets the maximum allowed compass offset in calibration and arming checks" user="Advanced">
<field name="Range">500 3000</field>
<field name="Increment">1</field>
</param>
<param humanName="Compass disable driver type mask" name="COMPASS_TYPEMASK" documentation="This is a bitmask of driver types to disable. If a driver type is set in this mask then that driver will not try to find a sensor at startup" user="Advanced">
<field name="Bitmask">0:HMC5883,1:LSM303D,2:AK8963,3:BMM150,4:LSM9DS1,5:LIS3MDL,6:AK09916,7:IST8310,8:ICM20948,9:MMC3416,11:UAVCAN,12:QMC5883,14:MAG3110,15:IST8308</field>
</param>
<param humanName="Range in which sample is accepted" name="COMPASS_FLTR_RNG" documentation="This sets the range around the average value that new samples must be within to be accepted. This can help reduce the impact of noise on sensors that are on long I2C cables. The value is a percentage from the average value. A value of zero disables this filter.">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Automatically check orientation" name="COMPASS_AUTO_ROT" documentation="When enabled this will automatically check the orientation of compasses on successful completion of compass calibration. If set to 2 then external compasses will have their orientation automatically corrected.">
<values>
<value code="0">Disabled</value>
<value code="1">CheckOnly</value>
<value code="2">CheckAndFix</value>
</values>
</param>
<param humanName="Compass device id expected" name="COMPASS_EXP_DID" documentation="The expected value of COMPASS_DEV_ID, used by arming checks. Setting this to -1 means &quot;don't care.&quot;" user="Advanced">
</param>
<param humanName="Compass2 device id expected" name="COMPASS_EXP_DID2" documentation="The expected value of COMPASS_DEV_ID2, used by arming checks. Setting this to -1 means &quot;don't care.&quot;" user="Advanced">
</param>
<param humanName="Compass3 device id expected" name="COMPASS_EXP_DID3" documentation="The expected value of COMPASS_DEV_ID3, used by arming checks. Setting this to -1 means &quot;don't care.&quot;" user="Advanced">
</param>
<param humanName="Enable Compass" name="COMPASS_ENABLE" documentation="Setting this to Enabled(1) will enable the compass. Setting this to Disabled(0) will disable the compass. Note that this is separate from COMPASS_USE. This will enable the low level senor, and will enable logging of magnetometer data. To use the compass for navigation you must also set COMPASS_USE to 1." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
</parameters>
<parameters name="COMPASS_PMOT">
<param humanName="per-motor compass correction enable" name="COMPASS_PMOT_EN" documentation="This enables per-motor compass corrections" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="per-motor exponential correction" name="COMPASS_PMOT_EXP" documentation="This is the exponential correction for the power output of the motor for per-motor compass correction" user="Advanced">
<field name="Range">0 2</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Compass per-motor1 X" name="COMPASS_PMOT1_X" documentation="Compensation for X axis of motor1" user="Advanced">
</param>
<param humanName="Compass per-motor1 Y" name="COMPASS_PMOT1_Y" documentation="Compensation for Y axis of motor1" user="Advanced">
</param>
<param humanName="Compass per-motor1 Z" name="COMPASS_PMOT1_Z" documentation="Compensation for Z axis of motor1" user="Advanced">
</param>
<param humanName="Compass per-motor2 X" name="COMPASS_PMOT2_X" documentation="Compensation for X axis of motor2" user="Advanced">
</param>
<param humanName="Compass per-motor2 Y" name="COMPASS_PMOT2_Y" documentation="Compensation for Y axis of motor2" user="Advanced">
</param>
<param humanName="Compass per-motor2 Z" name="COMPASS_PMOT2_Z" documentation="Compensation for Z axis of motor2" user="Advanced">
</param>
<param humanName="Compass per-motor3 X" name="COMPASS_PMOT3_X" documentation="Compensation for X axis of motor3" user="Advanced">
</param>
<param humanName="Compass per-motor3 Y" name="COMPASS_PMOT3_Y" documentation="Compensation for Y axis of motor3" user="Advanced">
</param>
<param humanName="Compass per-motor3 Z" name="COMPASS_PMOT3_Z" documentation="Compensation for Z axis of motor3" user="Advanced">
</param>
<param humanName="Compass per-motor4 X" name="COMPASS_PMOT4_X" documentation="Compensation for X axis of motor4" user="Advanced">
</param>
<param humanName="Compass per-motor4 Y" name="COMPASS_PMOT4_Y" documentation="Compensation for Y axis of motor4" user="Advanced">
</param>
<param humanName="Compass per-motor4 Z" name="COMPASS_PMOT4_Z" documentation="Compensation for Z axis of motor4" user="Advanced">
</param>
</parameters>
<parameters name="EK2_">
<param humanName="Enable EKF2" name="EK2_ENABLE" documentation="This enables EKF2. Enabling EKF2 only makes the maths run, it does not mean it will be used for flight control. To use it for flight control set AHRS_EKF_TYPE=2. A reboot or restart will need to be performed after changing the value of EK2_ENABLE for it to take effect." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code=" 1">Enabled</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="GPS mode control" name="EK2_GPS_TYPE" documentation="This controls use of GPS measurements : 0 = use 3D velocity &amp; 2D position, 1 = use 2D velocity and 2D position, 2 = use 2D position, 3 = Inhibit GPS use - this can be useful when flying with an optical flow sensor in an environment where GPS quality is poor and subject to large multipath errors." user="Advanced">
<values>
<value code="0">GPS 3D Vel and 2D Pos</value>
<value code=" 1">GPS 2D vel and 2D pos</value>
<value code=" 2">GPS 2D pos</value>
<value code=" 3">No GPS</value>
</values>
</param>
<param humanName="GPS horizontal velocity measurement noise (m/s)" name="EK2_VELNE_M_NSE" documentation="This sets a lower limit on the speed accuracy reported by the GPS receiver that is used to set horizontal velocity observation noise. If the model of receiver used does not provide a speed accurcy estimate, then the parameter value will be used. Increasing it reduces the weighting of the GPS horizontal velocity measurements." user="Advanced">
<field name="Range">0.05 5.0</field>
<field name="Increment">0.05</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="GPS vertical velocity measurement noise (m/s)" name="EK2_VELD_M_NSE" documentation="This sets a lower limit on the speed accuracy reported by the GPS receiver that is used to set vertical velocity observation noise. If the model of receiver used does not provide a speed accurcy estimate, then the parameter value will be used. Increasing it reduces the weighting of the GPS vertical velocity measurements." user="Advanced">
<field name="Range">0.05 5.0</field>
<field name="Increment">0.05</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="GPS velocity innovation gate size" name="EK2_VEL_I_GATE" documentation="This sets the percentage number of standard deviations applied to the GPS velocity measurement innovation consistency check. Decreasing it makes it more likely that good measurements willbe rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="GPS horizontal position measurement noise (m)" name="EK2_POSNE_M_NSE" documentation="This sets the GPS horizontal position or external navigation system position observation noise. Increasing it reduces the weighting of GPS horizontal position or external navigation system position measurements." user="Advanced">
<field name="Range">0.1 10.0</field>
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="GPS position measurement gate size" name="EK2_POS_I_GATE" documentation="This sets the percentage number of standard deviations applied to the GPS position measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="GPS glitch radius gate size (m)" name="EK2_GLITCH_RAD" documentation="This controls the maximum radial uncertainty in position between the value predicted by the filter and the value measured by the GPS before the filter position and velocity states are reset to the GPS. Making this value larger allows the filter to ignore larger GPS glitches but also means that non-GPS errors such as IMU and compass can create a larger error in position before the filter is forced back to the GPS position." user="Advanced">
<field name="Range">10 100</field>
<field name="Increment">5</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Primary altitude sensor source" name="EK2_ALT_SOURCE" documentation='Primary height sensor used by the EKF. If the selected option cannot be used, baro is used. 1 uses the range finder and only with optical flow navigation (EK2_GPS_TYPE = 3), Do not use "1" for terrain following. NOTE: the EK2_RNG_USE_HGT parameter can be used to switch to range-finder when close to the ground.' user="Advanced">
<values>
<value code="0">Use Baro</value>
<value code=" 1">Use Range Finder</value>
<value code=" 2">Use GPS</value>
<value code=" 3">Use Range Beacon</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Altitude measurement noise (m)" name="EK2_ALT_M_NSE" documentation="This is the RMS value of noise in the altitude measurement. Increasing it reduces the weighting of the baro measurement and will make the filter respond more slowly to baro measurement errors, but will make it more sensitive to GPS and accelerometer errors." user="Advanced">
<field name="Range">0.1 10.0</field>
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Height measurement gate size" name="EK2_HGT_I_GATE" documentation="This sets the percentage number of standard deviations applied to the height measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Height measurement delay (msec)" name="EK2_HGT_DELAY" documentation="This is the number of msec that the Height measurements lag behind the inertial measurements." user="Advanced">
<field name="Range">0 250</field>
<field name="Increment">10</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Magnetometer measurement noise (Gauss)" name="EK2_MAG_M_NSE" documentation="This is the RMS value of noise in magnetometer measurements. Increasing it reduces the weighting on these measurements." user="Advanced">
<field name="Range">0.01 0.5</field>
<field name="Increment">0.01</field>
<field name="Units">Gauss</field>
<field name="UnitText">gauss</field>
</param>
<param humanName="Magnetometer default fusion mode" name="EK2_MAG_CAL" documentation="This determines when the filter will use the 3-axis magnetometer fusion model that estimates both earth and body fixed magnetic field states and when it will use a simpler magnetic heading fusion model that does not use magnetic field states. The 3-axis magnetometer fusion is only suitable for use when the external magnetic field environment is stable. EK2_MAG_CAL = 0 uses heading fusion on ground, 3-axis fusion in-flight, and is the default setting for Plane users. EK2_MAG_CAL = 1 uses 3-axis fusion only when manoeuvring. EK2_MAG_CAL = 2 uses heading fusion at all times, is recommended if the external magnetic field is varying and is the default for rovers. EK2_MAG_CAL = 3 uses heading fusion on the ground and 3-axis fusion after the first in-air field and yaw reset has completed, and is the default for copters. EK2_MAG_CAL = 4 uses 3-axis fusion at all times. NOTE : Use of simple heading magnetometer fusion makes vehicle compass calibration and alignment errors harder for the EKF to detect which reduces the sensitivity of the Copter EKF failsafe algorithm. NOTE: The fusion mode can be forced to 2 for specific EKF cores using the EK2_MAG_MASK parameter." user="Advanced">
<values>
<value code="0">When flying</value>
<value code="1">When manoeuvring</value>
<value code="2">Never</value>
<value code="3">After first climb yaw reset</value>
<value code="4">Always</value>
</values>
</param>
<param humanName="Magnetometer measurement gate size" name="EK2_MAG_I_GATE" documentation="This sets the percentage number of standard deviations applied to the magnetometer measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Equivalent airspeed measurement noise (m/s)" name="EK2_EAS_M_NSE" documentation="This is the RMS value of noise in equivalent airspeed measurements used by planes. Increasing it reduces the weighting of airspeed measurements and will make wind speed estimates less noisy and slower to converge. Increasing also increases navigation errors when dead-reckoning without GPS measurements." user="Advanced">
<field name="Range">0.5 5.0</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Airspeed measurement gate size" name="EK2_EAS_I_GATE" documentation="This sets the percentage number of standard deviations applied to the airspeed measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Range finder measurement noise (m)" name="EK2_RNG_M_NSE" documentation="This is the RMS value of noise in the range finder measurement. Increasing it reduces the weighting on this measurement." user="Advanced">
<field name="Range">0.1 10.0</field>
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Range finder measurement gate size" name="EK2_RNG_I_GATE" documentation="This sets the percentage number of standard deviations applied to the range finder innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Maximum valid optical flow rate" name="EK2_MAX_FLOW" documentation="This sets the magnitude maximum optical flow rate in rad/sec that will be accepted by the filter" user="Advanced">
<field name="Range">1.0 4.0</field>
<field name="Increment">0.1</field>
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Optical flow measurement noise (rad/s)" name="EK2_FLOW_M_NSE" documentation="This is the RMS value of noise and errors in optical flow measurements. Increasing it reduces the weighting on these measurements." user="Advanced">
<field name="Range">0.05 1.0</field>
<field name="Increment">0.05</field>
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Optical Flow measurement gate size" name="EK2_FLOW_I_GATE" documentation="This sets the percentage number of standard deviations applied to the optical flow innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Optical Flow measurement delay (msec)" name="EK2_FLOW_DELAY" documentation="This is the number of msec that the optical flow measurements lag behind the inertial measurements. It is the time from the end of the optical flow averaging period and does not include the time delay due to the 100msec of averaging within the flow sensor." user="Advanced">
<field name="Range">0 127</field>
<field name="Increment">10</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Rate gyro noise (rad/s)" name="EK2_GYRO_P_NSE" documentation="This control disturbance noise controls the growth of estimated error due to gyro measurement errors excluding bias. Increasing it makes the flter trust the gyro measurements less and other measurements more." user="Advanced">
<field name="Range">0.0001 0.1</field>
<field name="Increment">0.0001</field>
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Accelerometer noise (m/s^2)" name="EK2_ACC_P_NSE" documentation="This control disturbance noise controls the growth of estimated error due to accelerometer measurement errors excluding bias. Increasing it makes the flter trust the accelerometer measurements less and other measurements more." user="Advanced">
<field name="Range">0.01 1.0</field>
<field name="Increment">0.01</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Rate gyro bias stability (rad/s/s)" name="EK2_GBIAS_P_NSE" documentation="This state  process noise controls growth of the gyro delta angle bias state error estimate. Increasing it makes rate gyro bias estimation faster and noisier." user="Advanced">
<field name="Range">0.00001 0.001</field>
<field name="Units">rad/s/s</field>
<field name="UnitText">radians per square second</field>
</param>
<param humanName="Rate gyro scale factor stability (1/s)" name="EK2_GSCL_P_NSE" documentation="This noise controls the rate of gyro scale factor learning. Increasing it makes rate gyro scale factor estimation faster and noisier." user="Advanced">
<field name="Range">0.000001 0.001</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Accelerometer bias stability (m/s^3)" name="EK2_ABIAS_P_NSE" documentation="This noise controls the growth of the vertical accelerometer delta velocity bias state error estimate. Increasing it makes accelerometer bias estimation faster and noisier." user="Advanced">
<field name="Range">0.00001 0.005</field>
<field name="Units">m/s/s/s</field>
<field name="UnitText">meters per cubic second</field>
</param>
<param humanName="Wind velocity process noise (m/s^2)" name="EK2_WIND_P_NSE" documentation="This state process noise controls the growth of wind state error estimates. Increasing it makes wind estimation faster and noisier." user="Advanced">
<field name="Range">0.01 1.0</field>
<field name="Increment">0.1</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Height rate to wind process noise scaler" name="EK2_WIND_PSCALE" documentation="This controls how much the process noise on the wind states is increased when gaining or losing altitude to take into account changes in wind speed and direction with altitude. Increasing this parameter increases how rapidly the wind states adapt when changing altitude, but does make wind velocity estimation noiser." user="Advanced">
<field name="Range">0.0 1.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="GPS preflight check" name="EK2_GPS_CHECK" documentation="This is a 1 byte bitmap controlling which GPS preflight checks are performed. Set to 0 to bypass all checks. Set to 255 perform all checks. Set to 3 to check just the number of satellites and HDoP. Set to 31 for the most rigorous checks that will still allow checks to pass when the copter is moving, eg launch from a boat." user="Advanced">
<field name="Bitmask">0:NSats,1:HDoP,2:speed error,3:position error,4:yaw error,5:pos drift,6:vert speed,7:horiz speed</field>
</param>
<param humanName="Bitmask of active IMUs" name="EK2_IMU_MASK" documentation="1 byte bitmap of IMUs to use in EKF2. A separate instance of EKF2 will be started for each IMU selected. Set to 1 to use the first IMU only (default), set to 2 to use the second IMU only, set to 3 to use the first and second IMU. Additional IMU's can be used up to a maximum of 6 if memory and processing resources permit. There may be insufficient memory and processing resources to run multiple instances. If this occurs EKF2 will fail to start." user="Advanced">
<field name="Bitmask">0:FirstIMU,1:SecondIMU,2:ThirdIMU,3:FourthIMU,4:FifthIMU,5:SixthIMU</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="GPS accuracy check scaler (%)" name="EK2_CHECK_SCALE" documentation="This scales the thresholds that are used to check GPS accuracy before it is used by the EKF. A value of 100 is the default. Values greater than 100 increase and values less than 100 reduce the maximum GPS error the EKF will accept. A value of 200 will double the allowable GPS error." user="Advanced">
<field name="Range">50 200</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Non-GPS operation position uncertainty (m)" name="EK2_NOAID_M_NSE" documentation="This sets the amount of position variation that the EKF allows for when operating without external measurements (eg GPS or optical flow). Increasing this parameter makes the EKF attitude estimate less sensitive to vehicle manoeuvres but more sensitive to IMU errors." user="Advanced">
<field name="Range">0.5 50.0</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="EKF sensor logging IMU mask" name="EK2_LOG_MASK" documentation="This sets the IMU mask of sensors to do full logging for" user="Advanced">
<field name="Bitmask">0:FirstIMU,1:SecondIMU,2:ThirdIMU,3:FourthIMU,4:FifthIMU,5:SixthIMU</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Yaw measurement noise (rad)" name="EK2_YAW_M_NSE" documentation="This is the RMS value of noise in yaw measurements from the magnetometer. Increasing it reduces the weighting on these measurements." user="Advanced">
<field name="Range">0.05 1.0</field>
<field name="Increment">0.05</field>
<field name="Units">rad</field>
<field name="UnitText">radians</field>
</param>
<param humanName="Yaw measurement gate size" name="EK2_YAW_I_GATE" documentation="This sets the percentage number of standard deviations applied to the magnetometer yaw measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Output complementary filter time constant (centi-sec)" name="EK2_TAU_OUTPUT" documentation="Sets the time constant of the output complementary filter/predictor in centi-seconds." user="Advanced">
<field name="Range">10 50</field>
<field name="Increment">5</field>
<field name="Units">cs</field>
<field name="UnitText">centiseconds</field>
</param>
<param humanName="Earth magnetic field process noise (gauss/s)" name="EK2_MAGE_P_NSE" documentation="This state process noise controls the growth of earth magnetic field state error estimates. Increasing it makes earth magnetic field estimation faster and noisier." user="Advanced">
<field name="Range">0.00001 0.01</field>
<field name="Units">Gauss/s</field>
<field name="UnitText">gauss per second</field>
</param>
<param humanName="Body magnetic field process noise (gauss/s)" name="EK2_MAGB_P_NSE" documentation="This state process noise controls the growth of body magnetic field state error estimates. Increasing it makes magnetometer bias error estimation faster and noisier." user="Advanced">
<field name="Range">0.00001 0.01</field>
<field name="Units">Gauss/s</field>
<field name="UnitText">gauss per second</field>
</param>
<param humanName="Range finder switch height percentage" name="EK2_RNG_USE_HGT" documentation="Range finder can be used as the primary height source when below this percentage of its maximum range (see RNGFND_MAX_CM). Set to -1 when EK2_ALT_SOURCE is not set to range finder.  This is not for terrain following." user="Advanced">
<field name="Range">-1 70</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Maximum terrain gradient" name="EK2_TERR_GRAD" documentation="Specifies the maximum gradient of the terrain below the vehicle assumed when it is fusing range finder or optical flow to estimate terrain height." user="Advanced">
<field name="Range">0 0.2</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Range beacon measurement noise (m)" name="EK2_BCN_M_NSE" documentation="This is the RMS value of noise in the range beacon measurement. Increasing it reduces the weighting on this measurement." user="Advanced">
<field name="Range">0.1 10.0</field>
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Range beacon measurement gate size" name="EK2_BCN_I_GTE" documentation="This sets the percentage number of standard deviations applied to the range beacon measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Range beacon measurement delay (msec)" name="EK2_BCN_DELAY" documentation="This is the number of msec that the range beacon measurements lag behind the inertial measurements. It is the time from the end of the optical flow averaging period and does not include the time delay due to the 100msec of averaging within the flow sensor." user="Advanced">
<field name="Range">0 127</field>
<field name="Increment">10</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Range finder max ground speed" name="EK2_RNG_USE_SPD" documentation="The range finder will not be used as the primary height source when the horizontal ground speed is greater than this value." user="Advanced">
<field name="Range">2.0 6.0</field>
<field name="Increment">0.5</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Bitmask of active EKF cores that will always use heading fusion" name="EK2_MAG_MASK" documentation="1 byte bitmap of EKF cores that will disable magnetic field states and use simple magnetic heading fusion at all times. This parameter enables specified cores to be used as a backup for flight into an environment with high levels of external magnetic interference which may degrade the EKF attitude estimate when using 3-axis magnetometer fusion. NOTE : Use of a different magnetometer fusion algorithm on different cores makes unwanted EKF core switches due to magnetometer errors more likely." user="Advanced">
<field name="Bitmask">0:FirstEKF,1:SecondEKF,2:ThirdEKF,3:FourthEKF,4:FifthEKF,5:SixthEKF</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Bitmask control of EKF reference height correction" name="EK2_OGN_HGT_MASK" documentation="When a height sensor other than GPS is used as the primary height source by the EKF, the position of the zero height datum is defined by that sensor and its frame of reference. If a GPS height measurement is also available, then the height of the WGS-84 height datum used by the EKF can be corrected so that the height returned by the getLLH() function is compensated for primary height sensor drift and change in datum over time. The first two bit positions control when the height datum will be corrected. Correction is performed using a Bayes filter and only operates when GPS quality permits. The third bit position controls where the corrections to the GPS reference datum are applied. Corrections can be applied to the local vertical position or to the reported EKF origin height (default)." user="Advanced">
<field name="Bitmask">0:Correct when using Baro height,1:Correct when using range finder height,2:Apply corrections to local position</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="external navigation system measurement delay (msec)" name="EK2_EXTNAV_DELAY" documentation="This is the number of msec that the external navigation system measurements lag behind the inertial measurements." user="Advanced">
<field name="Range">0 127</field>
<field name="Increment">1</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Optical flow use bitmask" name="EK2_FLOW_USE" documentation="Controls if the optical flow data is fused into the 24-state navigation estimator OR the 1-state terrain height estimator." user="Advanced">
<values>
<value code="0">None</value>
<value code="1">Navigation</value>
<value code="2">Terrain</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="EarthField error limit" name="EK2_MAG_EF_LIM" documentation="This limits the difference between the learned earth magnetic field and the earth field from the world magnetic model tables. A value of zero means to disable the use of the WMM tables." user="Advanced">
<field name="Range">0 500</field>
<field name="Units">mGauss</field>
<field name="UnitText">milligauss</field>
</param>
</parameters>
<parameters name="EK3_">
<param humanName="Enable EKF3" name="EK3_ENABLE" documentation="This enables EKF3. Enabling EKF3 only makes the maths run, it does not mean it will be used for flight control. To use it for flight control set AHRS_EKF_TYPE=3. A reboot or restart will need to be performed after changing the value of EK3_ENABLE for it to take effect." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code=" 1">Enabled</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="GPS mode control" name="EK3_GPS_TYPE" documentation="This controls use of GPS measurements : 0 = use 3D velocity &amp; 2D position, 1 = use 2D velocity and 2D position, 2 = use 2D position, 3 = Inhibit GPS use - this can be useful when flying with an optical flow sensor in an environment where GPS quality is poor and subject to large multipath errors." user="Advanced">
<values>
<value code="0">GPS 3D Vel and 2D Pos</value>
<value code=" 1">GPS 2D vel and 2D pos</value>
<value code=" 2">GPS 2D pos</value>
<value code=" 3">No GPS</value>
</values>
</param>
<param humanName="GPS horizontal velocity measurement noise (m/s)" name="EK3_VELNE_M_NSE" documentation="This sets a lower limit on the speed accuracy reported by the GPS receiver that is used to set horizontal velocity observation noise. If the model of receiver used does not provide a speed accurcy estimate, then the parameter value will be used. Increasing it reduces the weighting of the GPS horizontal velocity measurements." user="Advanced">
<field name="Range">0.05 5.0</field>
<field name="Increment">0.05</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="GPS vertical velocity measurement noise (m/s)" name="EK3_VELD_M_NSE" documentation="This sets a lower limit on the speed accuracy reported by the GPS receiver that is used to set vertical velocity observation noise. If the model of receiver used does not provide a speed accurcy estimate, then the parameter value will be used. Increasing it reduces the weighting of the GPS vertical velocity measurements." user="Advanced">
<field name="Range">0.05 5.0</field>
<field name="Increment">0.05</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="GPS velocity innovation gate size" name="EK3_VEL_I_GATE" documentation="This sets the percentage number of standard deviations applied to the GPS velocity measurement innovation consistency check. Decreasing it makes it more likely that good measurements willbe rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="GPS horizontal position measurement noise (m)" name="EK3_POSNE_M_NSE" documentation="This sets the GPS horizontal position observation noise. Increasing it reduces the weighting of GPS horizontal position measurements." user="Advanced">
<field name="Range">0.1 10.0</field>
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="GPS position measurement gate size" name="EK3_POS_I_GATE" documentation="This sets the percentage number of standard deviations applied to the GPS position measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="GPS glitch radius gate size (m)" name="EK3_GLITCH_RAD" documentation="This controls the maximum radial uncertainty in position between the value predicted by the filter and the value measured by the GPS before the filter position and velocity states are reset to the GPS. Making this value larger allows the filter to ignore larger GPS glitches but also means that non-GPS errors such as IMU and compass can create a larger error in position before the filter is forced back to the GPS position." user="Advanced">
<field name="Range">10 100</field>
<field name="Increment">5</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Primary altitude sensor source" name="EK3_ALT_SOURCE" documentation='Primary height sensor used by the EKF. If the selected option cannot be used, baro is used. 1 uses the range finder and only with optical flow navigation (EK2_GPS_TYPE = 3), Do not use "1" for terrain following. NOTE: the EK3_RNG_USE_HGT parameter can be used to switch to range-finder when close to the ground.' user="Advanced">
<values>
<value code="0">Use Baro</value>
<value code=" 1">Use Range Finder</value>
<value code=" 2">Use GPS</value>
<value code=" 3">Use Range Beacon</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Altitude measurement noise (m)" name="EK3_ALT_M_NSE" documentation="This is the RMS value of noise in the altitude measurement. Increasing it reduces the weighting of the baro measurement and will make the filter respond more slowly to baro measurement errors, but will make it more sensitive to GPS and accelerometer errors." user="Advanced">
<field name="Range">0.1 10.0</field>
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Height measurement gate size" name="EK3_HGT_I_GATE" documentation="This sets the percentage number of standard deviations applied to the height measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Height measurement delay (msec)" name="EK3_HGT_DELAY" documentation="This is the number of msec that the Height measurements lag behind the inertial measurements." user="Advanced">
<field name="Range">0 250</field>
<field name="Increment">10</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Magnetometer measurement noise (Gauss)" name="EK3_MAG_M_NSE" documentation="This is the RMS value of noise in magnetometer measurements. Increasing it reduces the weighting on these measurements." user="Advanced">
<field name="Range">0.01 0.5</field>
<field name="Increment">0.01</field>
<field name="Units">Gauss</field>
<field name="UnitText">gauss</field>
</param>
<param humanName="Magnetometer default fusion mode" name="EK3_MAG_CAL" documentation="This determines when the filter will use the 3-axis magnetometer fusion model that estimates both earth and body fixed magnetic field states and when it will use a simpler magnetic heading fusion model that does not use magnetic field states. The 3-axis magnetometer fusion is only suitable for use when the external magnetic field environment is stable. EK3_MAG_CAL = 0 uses heading fusion on ground, 3-axis fusion in-flight, and is the default setting for Plane users. EK3_MAG_CAL = 1 uses 3-axis fusion only when manoeuvring. EK3_MAG_CAL = 2 uses heading fusion at all times, is recommended if the external magnetic field is varying and is the default for rovers. EK3_MAG_CAL = 3 uses heading fusion on the ground and 3-axis fusion after the first in-air field and yaw reset has completed, and is the default for copters. EK3_MAG_CAL = 4 uses 3-axis fusion at all times. EK3_MAG_CAL = 5 uses an external yaw sensor with simple heading fusion. NOTE : Use of simple heading magnetometer fusion makes vehicle compass calibration and alignment errors harder for the EKF to detect which reduces the sensitivity of the Copter EKF failsafe algorithm. NOTE: The fusion mode can be forced to 2 for specific EKF cores using the EK3_MAG_MASK parameter." user="Advanced">
<values>
<value code="0">When flying</value>
<value code="1">When manoeuvring</value>
<value code="2">Never</value>
<value code="3">After first climb yaw reset</value>
<value code="4">Always</value>
<value code="5">Use external yaw sensor</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Magnetometer measurement gate size" name="EK3_MAG_I_GATE" documentation="This sets the percentage number of standard deviations applied to the magnetometer measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Equivalent airspeed measurement noise (m/s)" name="EK3_EAS_M_NSE" documentation="This is the RMS value of noise in equivalent airspeed measurements used by planes. Increasing it reduces the weighting of airspeed measurements and will make wind speed estimates less noisy and slower to converge. Increasing also increases navigation errors when dead-reckoning without GPS measurements." user="Advanced">
<field name="Range">0.5 5.0</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Airspeed measurement gate size" name="EK3_EAS_I_GATE" documentation="This sets the percentage number of standard deviations applied to the airspeed measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Range finder measurement noise (m)" name="EK3_RNG_M_NSE" documentation="This is the RMS value of noise in the range finder measurement. Increasing it reduces the weighting on this measurement." user="Advanced">
<field name="Range">0.1 10.0</field>
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Range finder measurement gate size" name="EK3_RNG_I_GATE" documentation="This sets the percentage number of standard deviations applied to the range finder innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Maximum valid optical flow rate" name="EK3_MAX_FLOW" documentation="This sets the magnitude maximum optical flow rate in rad/sec that will be accepted by the filter" user="Advanced">
<field name="Range">1.0 4.0</field>
<field name="Increment">0.1</field>
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Optical flow measurement noise (rad/s)" name="EK3_FLOW_M_NSE" documentation="This is the RMS value of noise and errors in optical flow measurements. Increasing it reduces the weighting on these measurements." user="Advanced">
<field name="Range">0.05 1.0</field>
<field name="Increment">0.05</field>
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Optical Flow measurement gate size" name="EK3_FLOW_I_GATE" documentation="This sets the percentage number of standard deviations applied to the optical flow innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Optical Flow measurement delay (msec)" name="EK3_FLOW_DELAY" documentation="This is the number of msec that the optical flow measurements lag behind the inertial measurements. It is the time from the end of the optical flow averaging period and does not include the time delay due to the 100msec of averaging within the flow sensor." user="Advanced">
<field name="Range">0 250</field>
<field name="Increment">10</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Rate gyro noise (rad/s)" name="EK3_GYRO_P_NSE" documentation="This control disturbance noise controls the growth of estimated error due to gyro measurement errors excluding bias. Increasing it makes the flter trust the gyro measurements less and other measurements more." user="Advanced">
<field name="Range">0.0001 0.1</field>
<field name="Increment">0.0001</field>
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Accelerometer noise (m/s^2)" name="EK3_ACC_P_NSE" documentation="This control disturbance noise controls the growth of estimated error due to accelerometer measurement errors excluding bias. Increasing it makes the flter trust the accelerometer measurements less and other measurements more." user="Advanced">
<field name="Range">0.01 1.0</field>
<field name="Increment">0.01</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Rate gyro bias stability (rad/s/s)" name="EK3_GBIAS_P_NSE" documentation="This state  process noise controls growth of the gyro delta angle bias state error estimate. Increasing it makes rate gyro bias estimation faster and noisier." user="Advanced">
<field name="Range">0.00001 0.001</field>
<field name="Units">rad/s/s</field>
<field name="UnitText">radians per square second</field>
</param>
<param humanName="Accelerometer bias stability (m/s^3)" name="EK3_ABIAS_P_NSE" documentation="This noise controls the growth of the vertical accelerometer delta velocity bias state error estimate. Increasing it makes accelerometer bias estimation faster and noisier." user="Advanced">
<field name="Range">0.00001 0.005</field>
<field name="Units">m/s/s/s</field>
<field name="UnitText">meters per cubic second</field>
</param>
<param humanName="Wind velocity process noise (m/s^2)" name="EK3_WIND_P_NSE" documentation="This state process noise controls the growth of wind state error estimates. Increasing it makes wind estimation faster and noisier." user="Advanced">
<field name="Range">0.01 1.0</field>
<field name="Increment">0.1</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Height rate to wind process noise scaler" name="EK3_WIND_PSCALE" documentation="This controls how much the process noise on the wind states is increased when gaining or losing altitude to take into account changes in wind speed and direction with altitude. Increasing this parameter increases how rapidly the wind states adapt when changing altitude, but does make wind velocity estimation noiser." user="Advanced">
<field name="Range">0.0 1.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="GPS preflight check" name="EK3_GPS_CHECK" documentation="This is a 1 byte bitmap controlling which GPS preflight checks are performed. Set to 0 to bypass all checks. Set to 255 perform all checks. Set to 3 to check just the number of satellites and HDoP. Set to 31 for the most rigorous checks that will still allow checks to pass when the copter is moving, eg launch from a boat." user="Advanced">
<field name="Bitmask">0:NSats,1:HDoP,2:speed error,3:position error,4:yaw error,5:pos drift,6:vert speed,7:horiz speed</field>
</param>
<param humanName="Bitmask of active IMUs" name="EK3_IMU_MASK" documentation="1 byte bitmap of IMUs to use in EKF3. A separate instance of EKF3 will be started for each IMU selected. Set to 1 to use the first IMU only (default), set to 2 to use the second IMU only, set to 3 to use the first and second IMU. Additional IMU's can be used up to a maximum of 6 if memory and processing resources permit. There may be insufficient memory and processing resources to run multiple instances. If this occurs EKF3 will fail to start." user="Advanced">
<field name="Bitmask">0:FirstIMU,1:SecondIMU,2:ThirdIMU,3:FourthIMU,4:FifthIMU,5:SixthIMU</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="GPS accuracy check scaler (%)" name="EK3_CHECK_SCALE" documentation="This scales the thresholds that are used to check GPS accuracy before it is used by the EKF. A value of 100 is the default. Values greater than 100 increase and values less than 100 reduce the maximum GPS error the EKF will accept. A value of 200 will double the allowable GPS error." user="Advanced">
<field name="Range">50 200</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Non-GPS operation position uncertainty (m)" name="EK3_NOAID_M_NSE" documentation="This sets the amount of position variation that the EKF allows for when operating without external measurements (eg GPS or optical flow). Increasing this parameter makes the EKF attitude estimate less sensitive to vehicle manoeuvres but more sensitive to IMU errors." user="Advanced">
<field name="Range">0.5 50.0</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="EKF sensor logging IMU mask" name="EK3_LOG_MASK" documentation="This sets the IMU mask of sensors to do full logging for" user="Advanced">
<field name="Bitmask">0:FirstIMU,1:SecondIMU,2:ThirdIMU,3:FourthIMU,4:FifthIMU,5:SixthIMU</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Yaw measurement noise (rad)" name="EK3_YAW_M_NSE" documentation="This is the RMS value of noise in yaw measurements from the magnetometer. Increasing it reduces the weighting on these measurements." user="Advanced">
<field name="Range">0.05 1.0</field>
<field name="Increment">0.05</field>
<field name="Units">rad</field>
<field name="UnitText">radians</field>
</param>
<param humanName="Yaw measurement gate size" name="EK3_YAW_I_GATE" documentation="This sets the percentage number of standard deviations applied to the magnetometer yaw measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Output complementary filter time constant (centi-sec)" name="EK3_TAU_OUTPUT" documentation="Sets the time constant of the output complementary filter/predictor in centi-seconds." user="Advanced">
<field name="Range">10 50</field>
<field name="Increment">5</field>
<field name="Units">cs</field>
<field name="UnitText">centiseconds</field>
</param>
<param humanName="Earth magnetic field process noise (gauss/s)" name="EK3_MAGE_P_NSE" documentation="This state process noise controls the growth of earth magnetic field state error estimates. Increasing it makes earth magnetic field estimation faster and noisier." user="Advanced">
<field name="Range">0.00001 0.01</field>
<field name="Units">Gauss/s</field>
<field name="UnitText">gauss per second</field>
</param>
<param humanName="Body magnetic field process noise (gauss/s)" name="EK3_MAGB_P_NSE" documentation="This state process noise controls the growth of body magnetic field state error estimates. Increasing it makes magnetometer bias error estimation faster and noisier." user="Advanced">
<field name="Range">0.00001 0.01</field>
<field name="Units">Gauss/s</field>
<field name="UnitText">gauss per second</field>
</param>
<param humanName="Range finder switch height percentage" name="EK3_RNG_USE_HGT" documentation="Range finder can be used as the primary height source when below this percentage of its maximum range (see RNGFND_MAX_CM). Set to -1 when EK3_ALT_SOURCE is not set to range finder.  This is not for terrain following." user="Advanced">
<field name="Range">-1 70</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Maximum terrain gradient" name="EK3_TERR_GRAD" documentation="Specifies the maximum gradient of the terrain below the vehicle when it is using range finder as a height reference" user="Advanced">
<field name="Range">0 0.2</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Range beacon measurement noise (m)" name="EK3_BCN_M_NSE" documentation="This is the RMS value of noise in the range beacon measurement. Increasing it reduces the weighting on this measurement." user="Advanced">
<field name="Range">0.1 10.0</field>
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Range beacon measurement gate size" name="EK3_BCN_I_GTE" documentation="This sets the percentage number of standard deviations applied to the range beacon measurement innovation consistency check. Decreasing it makes it more likely that good measurements will be rejected. Increasing it makes it more likely that bad measurements will be accepted." user="Advanced">
<field name="Range">100 1000</field>
<field name="Increment">25</field>
</param>
<param humanName="Range beacon measurement delay (msec)" name="EK3_BCN_DELAY" documentation="This is the number of msec that the range beacon measurements lag behind the inertial measurements." user="Advanced">
<field name="Range">0 250</field>
<field name="Increment">10</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Range finder max ground speed" name="EK3_RNG_USE_SPD" documentation="The range finder will not be used as the primary height source when the horizontal ground speed is greater than this value." user="Advanced">
<field name="Range">2.0 6.0</field>
<field name="Increment">0.5</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Accelerometer bias limit" name="EK3_ACC_BIAS_LIM" documentation="The accelerometer bias state will be limited to +- this value" user="Advanced">
<field name="Range">0.5 2.5</field>
<field name="Increment">0.1</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Bitmask of active EKF cores that will always use heading fusion" name="EK3_MAG_MASK" documentation="1 byte bitmap of EKF cores that will disable magnetic field states and use simple magnetic heading fusion at all times. This parameter enables specified cores to be used as a backup for flight into an environment with high levels of external magnetic interference which may degrade the EKF attitude estimate when using 3-axis magnetometer fusion. NOTE : Use of a different magnetometer fusion algorithm on different cores makes unwanted EKF core switches due to magnetometer errors more likely." user="Advanced">
<field name="Bitmask">0:FirstEKF,1:SecondEKF,2:ThirdEKF,3:FourthEKF,4:FifthEKF,5:SixthEKF</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Bitmask control of EKF reference height correction" name="EK3_OGN_HGT_MASK" documentation="When a height sensor other than GPS is used as the primary height source by the EKF, the position of the zero height datum is defined by that sensor and its frame of reference. If a GPS height measurement is also available, then the height of the WGS-84 height datum used by the EKF can be corrected so that the height returned by the getLLH() function is compensated for primary height sensor drift and change in datum over time. The first two bit positions control when the height datum will be corrected. Correction is performed using a Bayes filter and only operates when GPS quality permits. The third bit position controls where the corrections to the GPS reference datum are applied. Corrections can be applied to the local vertical position or to the reported EKF origin height (default)." user="Advanced">
<field name="Bitmask">0:Correct when using Baro height,1:Correct when using range finder height,2:Apply corrections to local position</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Visual odometry minimum velocity error" name="EK3_VIS_VERR_MIN" documentation="This is the 1-STD odometry velocity observation error that will be assumed when maximum quality is reported by the sensor. When quality is between max and min, the error will be calculated using linear interpolation between VIS_VERR_MIN and VIS_VERR_MAX." user="Advanced">
<field name="Range">0.05 0.5</field>
<field name="Increment">0.05</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Visual odometry maximum velocity error" name="EK3_VIS_VERR_MAX" documentation="This is the 1-STD odometry velocity observation error that will be assumed when minimum quality is reported by the sensor. When quality is between max and min, the error will be calculated using linear interpolation between VIS_VERR_MIN and VIS_VERR_MAX." user="Advanced">
<field name="Range">0.5 5.0</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Wheel odometry velocity error" name="EK3_WENC_VERR" documentation="This is the 1-STD odometry velocity observation error that will be assumed when wheel encoder data is being fused." user="Advanced">
<field name="Range">0.01 1.0</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Optical flow use bitmask" name="EK3_FLOW_USE" documentation="Controls if the optical flow data is fused into the 24-state navigation estimator OR the 1-state terrain height estimator." user="Advanced">
<values>
<value code="0">None</value>
<value code="1">Navigation</value>
<value code="2">Terrain</value>
</values>
<field name="RebootRequired">True</field>
</param>
</parameters>
<parameters name="FLOW">
<param humanName="Optical flow sensor type" name="FLOW_TYPE" documentation="Optical flow sensor type" user="Standard">
<values>
<value code="0">None</value>
<value code=" 1">PX4Flow</value>
<value code=" 2">Pixart</value>
<value code=" 3">Bebop</value>
<value code=" 4">CXOF</value>
<value code=" 5">MAVLink</value>
<value code=" 6">UAVCAN</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="X axis optical flow scale factor correction" name="FLOW_FXSCALER" documentation="This sets the parts per thousand scale factor correction applied to the flow sensor X axis optical rate. It can be used to correct for variations in effective focal length. Each positive increment of 1 increases the scale factor applied to the X axis optical flow reading by 0.1%. Negative values reduce the scale factor." user="Standard">
<field name="Range">-200 +200</field>
<field name="Increment">1</field>
</param>
<param humanName="Y axis optical flow scale factor correction" name="FLOW_FYSCALER" documentation="This sets the parts per thousand scale factor correction applied to the flow sensor Y axis optical rate. It can be used to correct for variations in effective focal length. Each positive increment of 1 increases the scale factor applied to the Y axis optical flow reading by 0.1%. Negative values reduce the scale factor." user="Standard">
<field name="Range">-200 +200</field>
<field name="Increment">1</field>
</param>
<param humanName="Flow sensor yaw alignment" name="FLOW_ORIENT_YAW" documentation="Specifies the number of centi-degrees that the flow sensor is yawed relative to the vehicle. A sensor with its X-axis pointing to the right of the vehicle X axis has a positive yaw angle." user="Standard">
<field name="Range">-18000 +18000</field>
<field name="Increment">1</field>
</param>
<param humanName=" X position offset" name="FLOW_POS_X" documentation="X position of the optical flow sensor focal point in body frame. Positive X is forward of the origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Y position offset" name="FLOW_POS_Y" documentation="Y position of the optical flow sensor focal point in body frame. Positive Y is to the right of the origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Z position offset" name="FLOW_POS_Z" documentation="Z position of the optical flow sensor focal point in body frame. Positive Z is down from the origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Address on the bus" name="FLOW_ADDR" documentation="This is used to select between multiple possible I2C addresses for some sensor types. For PX4Flow you can choose 0 to 7 for the 8 possible addresses on the I2C bus." user="Advanced">
<field name="Range">0 127</field>
</param>
<param humanName="Optical flow enable/disable" name="FLOW_ENABLE" documentation="Setting this to Enabled(1) will enable optical flow. Setting this to Disabled(0) will disable optical flow" user="Standard">
<values>
<value code="0">Disabled</value>
<value code=" 1">Enabled</value>
</values>
</param>
</parameters>
<parameters name="GND_">
<param humanName="Absolute Pressure" name="GND_ABS_PRESS" documentation="calibrated ground pressure in Pascals" user="Advanced">
<field name="ReadOnly">True</field>
<field name="Volatile">True</field>
<field name="Increment">1</field>
<field name="Units">Pa</field>
<field name="UnitText">pascal</field>
</param>
<param humanName="ground temperature" name="GND_TEMP" documentation="User provided ambient ground temperature in degrees Celsius. This is used to improve the calculation of the altitude the vehicle is at. This parameter is not persistent and will be reset to 0 every time the vehicle is rebooted. A value of 0 means use the internal measurement ambient temperature." user="Advanced">
<field name="Volatile">True</field>
<field name="Increment">1</field>
<field name="Units">degC</field>
<field name="UnitText">degrees Celsius</field>
</param>
<param humanName="altitude offset" name="GND_ALT_OFFSET" documentation="altitude offset in meters added to barometric altitude. This is used to allow for automatic adjustment of the base barometric altitude by a ground station equipped with a barometer. The value is added to the barometric altitude read by the aircraft. It is automatically reset to 0 when the barometer is calibrated on each reboot or when a preflight calibration is performed." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Primary barometer" name="GND_PRIMARY" documentation="This selects which barometer will be the primary if multiple barometers are found" user="Advanced">
<values>
<value code="0">FirstBaro</value>
<value code="1">2ndBaro</value>
<value code="2">3rdBaro</value>
</values>
</param>
<param humanName="External baro bus" name="GND_EXT_BUS" documentation="This selects the bus number for looking for an I2C barometer. When set to -1 it will probe all external i2c buses based on the GND_PROBE_EXT parameter." user="Advanced">
<values>
<value code="-1">Disabled</value>
<value code="0">Bus0</value>
<value code="1">Bus1</value>
</values>
</param>
<param humanName="Specific Gravity (For water depth measurement)" name="GND_SPEC_GRAV" documentation="This sets the specific gravity of the fluid when flying an underwater ROV.">
<field name="Values">1.0:Freshwater,1.024:Saltwater</field>
</param>
<param humanName="Absolute Pressure" name="GND_ABS_PRESS2" documentation="calibrated ground pressure in Pascals" user="Advanced">
<field name="ReadOnly">True</field>
<field name="Volatile">True</field>
<field name="Increment">1</field>
<field name="Units">Pa</field>
<field name="UnitText">pascal</field>
</param>
<param humanName="Absolute Pressure" name="GND_ABS_PRESS3" documentation="calibrated ground pressure in Pascals" user="Advanced">
<field name="ReadOnly">True</field>
<field name="Volatile">True</field>
<field name="Increment">1</field>
<field name="Units">Pa</field>
<field name="UnitText">pascal</field>
</param>
<param humanName="Range in which sample is accepted" name="GND_FLTR_RNG" documentation="This sets the range around the average value that new samples must be within to be accepted. This can help reduce the impact of noise on sensors that are on long I2C cables. The value is a percentage from the average value. A value of zero disables this filter.">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="External barometers to probe" name="GND_PROBE_EXT" documentation="This sets which types of external i2c barometer to look for. It is a bitmask of barometer types. The I2C buses to probe is based on GND_EXT_BUS. If GND_EXT_BUS is -1 then it will probe all external buses, otherwise it will probe just the bus number given in GND_EXT_BUS." user="Advanced">
<field name="Bitmask">0:BMP085,1:BMP280,2:MS5611,3:MS5607,4:MS5637,5:FBM320,6:DPS280,7:LPS25H,8:Keller,10:MS5837,11:BMP388</field>
<values>
<value code="1">BMP085</value>
<value code="2">BMP280</value>
<value code="4">MS5611</value>
<value code="8">MS5607</value>
<value code="16">MS5637</value>
<value code="32">FBM320</value>
<value code="64">DPS280</value>
<value code="128">LPS25H</value>
<value code="256">Keller</value>
<value code="512">MS5837</value>
<value code="1024">BMP388</value>
</values>
</param>
</parameters>
<parameters name="GPS_">
<param humanName="GPS type" name="GPS_TYPE" documentation="GPS type" user="Advanced">
<values>
<value code="0">None</value>
<value code="1">AUTO</value>
<value code="2">uBlox</value>
<value code="3">MTK</value>
<value code="4">MTK19</value>
<value code="5">NMEA</value>
<value code="6">SiRF</value>
<value code="7">HIL</value>
<value code="8">SwiftNav</value>
<value code="9">UAVCAN</value>
<value code="10">SBF</value>
<value code="11">GSOF</value>
<value code="13">ERB</value>
<value code="14">MAV</value>
<value code="15">NOVA</value>
<value code="16">HemisphereNMEA</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="2nd GPS type" name="GPS_TYPE2" documentation="GPS type of 2nd GPS" user="Advanced">
<values>
<value code="0">None</value>
<value code="1">AUTO</value>
<value code="2">uBlox</value>
<value code="3">MTK</value>
<value code="4">MTK19</value>
<value code="5">NMEA</value>
<value code="6">SiRF</value>
<value code="7">HIL</value>
<value code="8">SwiftNav</value>
<value code="9">UAVCAN</value>
<value code="10">SBF</value>
<value code="11">GSOF</value>
<value code="13">ERB</value>
<value code="14">MAV</value>
<value code="15">NOVA</value>
<value code="16">HemisphereNMEA</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Navigation filter setting" name="GPS_NAVFILTER" documentation="Navigation filter engine setting" user="Advanced">
<values>
<value code="0">Portable</value>
<value code="2">Stationary</value>
<value code="3">Pedestrian</value>
<value code="4">Automotive</value>
<value code="5">Sea</value>
<value code="6">Airborne1G</value>
<value code="7">Airborne2G</value>
<value code="8">Airborne4G</value>
</values>
</param>
<param humanName="Automatic Switchover Setting" name="GPS_AUTO_SWITCH" documentation="Automatic switchover to GPS reporting best lock" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">UseBest</value>
<value code="2">Blend</value>
<value code="3">UseSecond</value>
</values>
</param>
<param humanName="Minimum Lock Type Accepted for DGPS" name="GPS_MIN_DGPS" documentation="Sets the minimum type of differential GPS corrections required before allowing to switch into DGPS mode." user="Advanced">
<values>
<value code="0">Any</value>
<value code="50">FloatRTK</value>
<value code="100">IntegerRTK</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="SBAS Mode" name="GPS_SBAS_MODE" documentation="This sets the SBAS (satellite based augmentation system) mode if available on this GPS. If set to 2 then the SBAS mode is not changed in the GPS. Otherwise the GPS will be reconfigured to enable/disable SBAS. Disabling SBAS may be worthwhile in some parts of the world where an SBAS signal is available but the baseline is too long to be useful." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
<value code="2">NoChange</value>
</values>
</param>
<param humanName="Minimum elevation" name="GPS_MIN_ELEV" documentation="This sets the minimum elevation of satellites above the horizon for them to be used for navigation. Setting this to -100 leaves the minimum elevation set to the GPS modules default." user="Advanced">
<field name="Range">-100 90</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Destination for GPS_INJECT_DATA MAVLink packets" name="GPS_INJECT_TO" documentation="The GGS can send raw serial packets to inject data to multiple GPSes." user="Advanced">
<values>
<value code="0">send to first GPS</value>
<value code="1">send to 2nd GPS</value>
<value code="127">send to all</value>
</values>
</param>
<param humanName="Swift Binary Protocol Logging Mask" name="GPS_SBP_LOGMASK" documentation="Masked with the SBP msg_type field to determine whether SBR1/SBR2 data is logged" user="Advanced">
<values>
<value code="0">None (0x0000)</value>
<value code="-1">All (0xFFFF)</value>
<value code="-256">External only (0xFF00)</value>
</values>
</param>
<param humanName="Raw data logging" name="GPS_RAW_DATA" documentation="Handles logging raw data; on uBlox chips that support raw data this will log RXM messages into logger; on Septentrio this will log on the equipment's SD card and when set to 2, the autopilot will try to stop logging after disarming and restart after arming" user="Advanced">
<values>
<value code="0">Ignore</value>
<value code="1">Always log</value>
<value code="2">Stop logging when disarmed (SBF only)</value>
<value code="5">Only log every five samples (uBlox only)</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="GNSS system configuration" name="GPS_GNSS_MODE" documentation="Bitmask for what GNSS system to use on the first GPS (all unchecked or zero to leave GPS as configured)" user="Advanced">
<field name="Bitmask">0:GPS,1:SBAS,2:Galileo,3:Beidou,4:IMES,5:QZSS,6:GLOSNASS</field>
<values>
<value code="0">Leave as currently configured</value>
<value code=" 1">GPS-NoSBAS</value>
<value code=" 3">GPS+SBAS</value>
<value code=" 4">Galileo-NoSBAS</value>
<value code=" 6">Galileo+SBAS</value>
<value code=" 8">Beidou</value>
<value code=" 51">GPS+IMES+QZSS+SBAS (Japan Only)</value>
<value code=" 64">GLONASS</value>
<value code=" 66">GLONASS+SBAS</value>
<value code=" 67">GPS+GLONASS+SBAS</value>
</values>
</param>
<param humanName="Save GPS configuration" name="GPS_SAVE_CFG" documentation="Determines whether the configuration for this GPS should be written to non-volatile memory on the GPS. Currently working for UBlox 6 series and above." user="Advanced">
<values>
<value code="0">Do not save config</value>
<value code="1">Save config</value>
<value code="2">Save only when needed</value>
</values>
</param>
<param humanName="GNSS system configuration" name="GPS_GNSS_MODE2" documentation="Bitmask for what GNSS system to use on the second GPS (all unchecked or zero to leave GPS as configured)" user="Advanced">
<field name="Bitmask">0:GPS,1:SBAS,2:Galileo,3:Beidou,4:IMES,5:QZSS,6:GLOSNASS</field>
<values>
<value code="0">Leave as currently configured</value>
<value code=" 1">GPS-NoSBAS</value>
<value code=" 3">GPS+SBAS</value>
<value code=" 4">Galileo-NoSBAS</value>
<value code=" 6">Galileo+SBAS</value>
<value code=" 8">Beidou</value>
<value code=" 51">GPS+IMES+QZSS+SBAS (Japan Only)</value>
<value code=" 64">GLONASS</value>
<value code=" 66">GLONASS+SBAS</value>
<value code=" 67">GPS+GLONASS+SBAS</value>
</values>
</param>
<param humanName="Automatic GPS configuration" name="GPS_AUTO_CONFIG" documentation="Controls if the autopilot should automatically configure the GPS based on the parameters and default settings" user="Advanced">
<values>
<value code="0">Disables automatic configuration</value>
<value code="1">Enable automatic configuration</value>
</values>
</param>
<param humanName="GPS update rate in milliseconds" name="GPS_RATE_MS" documentation="Controls how often the GPS should provide a position update. Lowering below 5Hz is not allowed" user="Advanced">
<field name="Range">50 200</field>
<values>
<value code="100">10Hz</value>
<value code="125">8Hz</value>
<value code="200">5Hz</value>
</values>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
</param>
<param humanName="GPS 2 update rate in milliseconds" name="GPS_RATE_MS2" documentation="Controls how often the GPS should provide a position update. Lowering below 5Hz is not allowed" user="Advanced">
<field name="Range">50 200</field>
<values>
<value code="100">10Hz</value>
<value code="125">8Hz</value>
<value code="200">5Hz</value>
</values>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
</param>
<param humanName="Antenna X position offset" name="GPS_POS1_X" documentation="X position of the first GPS antenna in body frame. Positive X is forward of the origin. Use antenna phase centroid location if provided by the manufacturer." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Antenna Y position offset" name="GPS_POS1_Y" documentation="Y position of the first GPS antenna in body frame. Positive Y is to the right of the origin. Use antenna phase centroid location if provided by the manufacturer." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Antenna Z position offset" name="GPS_POS1_Z" documentation="Z position of the first GPS antenna in body frame. Positive Z is down from the origin. Use antenna phase centroid location if provided by the manufacturer." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Antenna X position offset" name="GPS_POS2_X" documentation="X position of the second GPS antenna in body frame. Positive X is forward of the origin. Use antenna phase centroid location if provided by the manufacturer." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Antenna Y position offset" name="GPS_POS2_Y" documentation="Y position of the second GPS antenna in body frame. Positive Y is to the right of the origin. Use antenna phase centroid location if provided by the manufacturer." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Antenna Z position offset" name="GPS_POS2_Z" documentation="Z position of the second GPS antenna in body frame. Positive Z is down from the origin. Use antenna phase centroid location if provided by the manufacturer." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="GPS delay in milliseconds" name="GPS_DELAY_MS" documentation="Controls the amount of GPS  measurement delay that the autopilot compensates for. Set to zero to use the default delay for the detected GPS type." user="Advanced">
<field name="Range">0 250</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="GPS 2 delay in milliseconds" name="GPS_DELAY_MS2" documentation="Controls the amount of GPS  measurement delay that the autopilot compensates for. Set to zero to use the default delay for the detected GPS type." user="Advanced">
<field name="Range">0 250</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Multi GPS Blending Mask" name="GPS_BLEND_MASK" documentation="Determines which of the accuracy measures Horizontal position, Vertical Position and Speed are used to calculate the weighting on each GPS receiver when soft switching has been selected by setting GPS_AUTO_SWITCH to 2" user="Advanced">
<field name="Bitmask">0:Horiz Pos,1:Vert Pos,2:Speed</field>
</param>
<param humanName="Blending time constant" name="GPS_BLEND_TC" documentation="Controls the slowest time constant applied to the calculation of GPS position and height offsets used to adjust different GPS receivers for steady state position differences." user="Advanced">
<field name="Range">5.0 30.0</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
</parameters>
<parameters name="GRIP_">
<param humanName="Gripper Enable/Disable" name="GRIP_ENABLE" documentation="Gripper enable/disable" user="Standard">
<values>
<value code="0">Disabled</value>
<value code=" 1">Enabled</value>
</values>
</param>
<param humanName="Gripper Type" name="GRIP_TYPE" documentation="Gripper enable/disable" user="Standard">
<values>
<value code="0">None</value>
<value code="1">Servo</value>
<value code="2">EPM</value>
</values>
</param>
<param humanName="Gripper Grab PWM" name="GRIP_GRAB" documentation="PWM value in microseconds sent to Gripper to initiate grabbing the cargo" user="Advanced">
<field name="Range">1000 2000</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Gripper Release PWM" name="GRIP_RELEASE" documentation="PWM value in microseconds sent to Gripper to release the cargo" user="Advanced">
<field name="Range">1000 2000</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Neutral PWM" name="GRIP_NEUTRAL" documentation="PWM value in microseconds sent to grabber when not grabbing or releasing" user="Advanced">
<field name="Range">1000 2000</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Gripper Regrab interval" name="GRIP_REGRAB" documentation="Time in seconds that gripper will regrab the cargo to ensure grip has not weakened; 0 to disable" user="Advanced">
<field name="Range">0 255</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="EPM UAVCAN Hardpoint ID" name="GRIP_UAVCAN_ID" documentation="Refer to https://docs.zubax.com/opengrab_epm_v3#UAVCAN_interface" user="Standard">
<field name="Range">0 255</field>
</param>
</parameters>
<parameters name="ICE_">
<param humanName="Enable ICEngine control" name="ICE_ENABLE" documentation="This enables internal combustion engine control" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code=" 1">Enabled</value>
</values>
</param>
<param humanName="Input channel for engine start" name="ICE_START_CHAN" documentation="This is an RC input channel for requesting engine start. Engine will try to start when channel is at or above 1700. Engine will stop when channel is at or below 1300. Between 1301 and 1699 the engine will not change state unless a MAVLink command or mission item commands a state change, or the vehicle is disamed." user="Standard">
<values>
<value code="0">None</value>
<value code="1">Chan1</value>
<value code="2">Chan2</value>
<value code="3">Chan3</value>
<value code="4">Chan4</value>
<value code="5">Chan5</value>
<value code="6">Chan6</value>
<value code="7">Chan7</value>
<value code="8">Chan8</value>
<value code="9">Chan9</value>
<value code="10">Chan10</value>
<value code="11">Chan11</value>
<value code="12">Chan12</value>
<value code="13">Chan13</value>
<value code="14">Chan14</value>
<value code="15">Chan15</value>
<value code="16">Chan16</value>
</values>
</param>
<param humanName="Time to run starter" name="ICE_STARTER_TIME" documentation="This is the number of seconds to run the starter when trying to start the engine" user="Standard">
<field name="Range">0.1 5</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Time to wait between starts" name="ICE_START_DELAY" documentation="Delay between start attempts" user="Standard">
<field name="Range">1 10</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="RPM threshold" name="ICE_RPM_THRESH" documentation="This is the measured RPM above which the engine is considered to be running" user="Standard">
<field name="Range">100 100000</field>
</param>
<param humanName="PWM value for ignition on" name="ICE_PWM_IGN_ON" documentation="This is the value sent to the ignition channel when on" user="Standard">
<field name="Range">1000 2000</field>
</param>
<param humanName="PWM value for ignition off" name="ICE_PWM_IGN_OFF" documentation="This is the value sent to the ignition channel when off" user="Standard">
<field name="Range">1000 2000</field>
</param>
<param humanName="PWM value for starter on" name="ICE_PWM_STRT_ON" documentation="This is the value sent to the starter channel when on" user="Standard">
<field name="Range">1000 2000</field>
</param>
<param humanName="PWM value for starter off" name="ICE_PWM_STRT_OFF" documentation="This is the value sent to the starter channel when off" user="Standard">
<field name="Range">1000 2000</field>
</param>
<param humanName="RPM instance channel to use" name="ICE_RPM_CHAN" documentation="This is which of the RPM instances to use for detecting the RPM of the engine" user="Standard">
<values>
<value code="0">None</value>
<value code="1">RPM1</value>
<value code="2">RPM2</value>
</values>
</param>
<param humanName="Throttle percentage for engine start" name="ICE_START_PCT" documentation="This is the percentage throttle output for engine start" user="Standard">
<field name="Range">0 100</field>
</param>
<param humanName="Throttle percentage for engine idle" name="ICE_IDLE_PCT" documentation="This is the minimum percentage throttle output while running, this includes being disarmed, but not safe" user="Standard">
<field name="Range">0 100</field>
</param>
</parameters>
<parameters name="INS_">
<param humanName="Gyro offsets of X axis" name="INS_GYROFFS_X" documentation="Gyro sensor offsets of X axis. This is setup on each boot during gyro calibrations" user="Advanced">
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Gyro offsets of Y axis" name="INS_GYROFFS_Y" documentation="Gyro sensor offsets of Y axis. This is setup on each boot during gyro calibrations" user="Advanced">
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Gyro offsets of Z axis" name="INS_GYROFFS_Z" documentation="Gyro sensor offsets of Z axis. This is setup on each boot during gyro calibrations" user="Advanced">
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Gyro2 offsets of X axis" name="INS_GYR2OFFS_X" documentation="Gyro2 sensor offsets of X axis. This is setup on each boot during gyro calibrations" user="Advanced">
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Gyro2 offsets of Y axis" name="INS_GYR2OFFS_Y" documentation="Gyro2 sensor offsets of Y axis. This is setup on each boot during gyro calibrations" user="Advanced">
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Gyro2 offsets of Z axis" name="INS_GYR2OFFS_Z" documentation="Gyro2 sensor offsets of Z axis. This is setup on each boot during gyro calibrations" user="Advanced">
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Gyro3 offsets of X axis" name="INS_GYR3OFFS_X" documentation="Gyro3 sensor offsets of X axis. This is setup on each boot during gyro calibrations" user="Advanced">
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Gyro3 offsets of Y axis" name="INS_GYR3OFFS_Y" documentation="Gyro3 sensor offsets of Y axis. This is setup on each boot during gyro calibrations" user="Advanced">
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Gyro3 offsets of Z axis" name="INS_GYR3OFFS_Z" documentation="Gyro3 sensor offsets of Z axis. This is setup on each boot during gyro calibrations" user="Advanced">
<field name="Units">rad/s</field>
<field name="UnitText">radians per second</field>
</param>
<param humanName="Accelerometer scaling of X axis" name="INS_ACCSCAL_X" documentation="Accelerometer scaling of X axis.  Calculated during acceleration calibration routine" user="Advanced">
<field name="Range">0.8 1.2</field>
</param>
<param humanName="Accelerometer scaling of Y axis" name="INS_ACCSCAL_Y" documentation="Accelerometer scaling of Y axis  Calculated during acceleration calibration routine" user="Advanced">
<field name="Range">0.8 1.2</field>
</param>
<param humanName="Accelerometer scaling of Z axis" name="INS_ACCSCAL_Z" documentation="Accelerometer scaling of Z axis  Calculated during acceleration calibration routine" user="Advanced">
<field name="Range">0.8 1.2</field>
</param>
<param humanName="Accelerometer offsets of X axis" name="INS_ACCOFFS_X" documentation="Accelerometer offsets of X axis. This is setup using the acceleration calibration or level operations" user="Advanced">
<field name="Range">-3.5 3.5</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Accelerometer offsets of Y axis" name="INS_ACCOFFS_Y" documentation="Accelerometer offsets of Y axis. This is setup using the acceleration calibration or level operations" user="Advanced">
<field name="Range">-3.5 3.5</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Accelerometer offsets of Z axis" name="INS_ACCOFFS_Z" documentation="Accelerometer offsets of Z axis. This is setup using the acceleration calibration or level operations" user="Advanced">
<field name="Range">-3.5 3.5</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Accelerometer2 scaling of X axis" name="INS_ACC2SCAL_X" documentation="Accelerometer2 scaling of X axis.  Calculated during acceleration calibration routine" user="Advanced">
<field name="Range">0.8 1.2</field>
</param>
<param humanName="Accelerometer2 scaling of Y axis" name="INS_ACC2SCAL_Y" documentation="Accelerometer2 scaling of Y axis  Calculated during acceleration calibration routine" user="Advanced">
<field name="Range">0.8 1.2</field>
</param>
<param humanName="Accelerometer2 scaling of Z axis" name="INS_ACC2SCAL_Z" documentation="Accelerometer2 scaling of Z axis  Calculated during acceleration calibration routine" user="Advanced">
<field name="Range">0.8 1.2</field>
</param>
<param humanName="Accelerometer2 offsets of X axis" name="INS_ACC2OFFS_X" documentation="Accelerometer2 offsets of X axis. This is setup using the acceleration calibration or level operations" user="Advanced">
<field name="Range">-3.5 3.5</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Accelerometer2 offsets of Y axis" name="INS_ACC2OFFS_Y" documentation="Accelerometer2 offsets of Y axis. This is setup using the acceleration calibration or level operations" user="Advanced">
<field name="Range">-3.5 3.5</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Accelerometer2 offsets of Z axis" name="INS_ACC2OFFS_Z" documentation="Accelerometer2 offsets of Z axis. This is setup using the acceleration calibration or level operations" user="Advanced">
<field name="Range">-3.5 3.5</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Accelerometer3 scaling of X axis" name="INS_ACC3SCAL_X" documentation="Accelerometer3 scaling of X axis.  Calculated during acceleration calibration routine" user="Advanced">
<field name="Range">0.8 1.2</field>
</param>
<param humanName="Accelerometer3 scaling of Y axis" name="INS_ACC3SCAL_Y" documentation="Accelerometer3 scaling of Y axis  Calculated during acceleration calibration routine" user="Advanced">
<field name="Range">0.8 1.2</field>
</param>
<param humanName="Accelerometer3 scaling of Z axis" name="INS_ACC3SCAL_Z" documentation="Accelerometer3 scaling of Z axis  Calculated during acceleration calibration routine" user="Advanced">
<field name="Range">0.8 1.2</field>
</param>
<param humanName="Accelerometer3 offsets of X axis" name="INS_ACC3OFFS_X" documentation="Accelerometer3 offsets of X axis. This is setup using the acceleration calibration or level operations" user="Advanced">
<field name="Range">-3.5 3.5</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Accelerometer3 offsets of Y axis" name="INS_ACC3OFFS_Y" documentation="Accelerometer3 offsets of Y axis. This is setup using the acceleration calibration or level operations" user="Advanced">
<field name="Range">-3.5 3.5</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Accelerometer3 offsets of Z axis" name="INS_ACC3OFFS_Z" documentation="Accelerometer3 offsets of Z axis. This is setup using the acceleration calibration or level operations" user="Advanced">
<field name="Range">-3.5 3.5</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Gyro filter cutoff frequency" name="INS_GYRO_FILTER" documentation="Filter cutoff frequency for gyroscopes. This can be set to a lower value to try to cope with very high vibration levels in aircraft. A value of zero means no filtering (not recommended!)" user="Advanced">
<field name="Range">0 256</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Accel filter cutoff frequency" name="INS_ACCEL_FILTER" documentation="Filter cutoff frequency for accelerometers. This can be set to a lower value to try to cope with very high vibration levels in aircraft. A value of zero means no filtering (not recommended!)" user="Advanced">
<field name="Range">0 256</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Use first IMU for attitude, velocity and position estimates" name="INS_USE" documentation="Use first IMU for attitude, velocity and position estimates" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Use second IMU for attitude, velocity and position estimates" name="INS_USE2" documentation="Use second IMU for attitude, velocity and position estimates" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Use third IMU for attitude, velocity and position estimates" name="INS_USE3" documentation="Use third IMU for attitude, velocity and position estimates" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Stillness threshold for detecting if we are moving" name="INS_STILL_THRESH" documentation="Threshold to tolerate vibration to determine if vehicle is motionless. This depends on the frame type and if there is a constant vibration due to motors before launch or after landing. Total motionless is about 0.05. Suggested values: Planes/rover use 0.1, multirotors use 1, tradHeli uses 5" user="Advanced">
<field name="Range">0.05 50</field>
</param>
<param humanName="Gyro Calibration scheme" name="INS_GYR_CAL" documentation="Conrols when automatic gyro calibration is performed" user="Advanced">
<values>
<value code="0">Never</value>
<value code=" 1">Start-up only</value>
</values>
</param>
<param humanName="Accel cal trim option" name="INS_TRIM_OPTION" documentation="Specifies how the accel cal routine determines the trims" user="Advanced">
<values>
<value code="0">Don't adjust the trims</value>
<value code="1">Assume first orientation was level</value>
<value code="2">Assume ACC_BODYFIX is perfectly aligned to the vehicle</value>
</values>
</param>
<param humanName="Body-fixed accelerometer" name="INS_ACC_BODYFIX" documentation="The body-fixed accelerometer to be used for trim calculation" user="Advanced">
<values>
<value code="1">IMU 1</value>
<value code="2">IMU 2</value>
<value code="3">IMU 3</value>
</values>
</param>
<param humanName="IMU accelerometer X position" name="INS_POS1_X" documentation="X position of the first IMU Accelerometer in body frame. Positive X is forward of the origin. Attention: The IMU should be located as close to the vehicle c.g. as practical so that the value of this parameter is minimised. Failure to do so can result in noisy navigation velocity measurements due to vibration and IMU gyro noise. If the IMU cannot be moved and velocity noise is a problem, a location closer to the IMU can be used as the body frame origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="IMU accelerometer Y position" name="INS_POS1_Y" documentation="Y position of the first IMU accelerometer in body frame. Positive Y is to the right of the origin. Attention: The IMU should be located as close to the vehicle c.g. as practical so that the value of this parameter is minimised. Failure to do so can result in noisy navigation velocity measurements due to vibration and IMU gyro noise. If the IMU cannot be moved and velocity noise is a problem, a location closer to the IMU can be used as the body frame origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="IMU accelerometer Z position" name="INS_POS1_Z" documentation="Z position of the first IMU accelerometer in body frame. Positive Z is down from the origin. Attention: The IMU should be located as close to the vehicle c.g. as practical so that the value of this parameter is minimised. Failure to do so can result in noisy navigation velocity measurements due to vibration and IMU gyro noise. If the IMU cannot be moved and velocity noise is a problem, a location closer to the IMU can be used as the body frame origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="IMU accelerometer X position" name="INS_POS2_X" documentation="X position of the second IMU accelerometer in body frame. Positive X is forward of the origin. Attention: The IMU should be located as close to the vehicle c.g. as practical so that the value of this parameter is minimised. Failure to do so can result in noisy navigation velocity measurements due to vibration and IMU gyro noise. If the IMU cannot be moved and velocity noise is a problem, a location closer to the IMU can be used as the body frame origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="IMU accelerometer Y position" name="INS_POS2_Y" documentation="Y position of the second IMU accelerometer in body frame. Positive Y is to the right of the origin. Attention: The IMU should be located as close to the vehicle c.g. as practical so that the value of this parameter is minimised. Failure to do so can result in noisy navigation velocity measurements due to vibration and IMU gyro noise. If the IMU cannot be moved and velocity noise is a problem, a location closer to the IMU can be used as the body frame origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="IMU accelerometer Z position" name="INS_POS2_Z" documentation="Z position of the second IMU accelerometer in body frame. Positive Z is down from the origin. Attention: The IMU should be located as close to the vehicle c.g. as practical so that the value of this parameter is minimised. Failure to do so can result in noisy navigation velocity measurements due to vibration and IMU gyro noise. If the IMU cannot be moved and velocity noise is a problem, a location closer to the IMU can be used as the body frame origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="IMU accelerometer X position" name="INS_POS3_X" documentation="X position of the third IMU accelerometer in body frame. Positive X is forward of the origin. Attention: The IMU should be located as close to the vehicle c.g. as practical so that the value of this parameter is minimised. Failure to do so can result in noisy navigation velocity measurements due to vibration and IMU gyro noise. If the IMU cannot be moved and velocity noise is a problem, a location closer to the IMU can be used as the body frame origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="IMU accelerometer Y position" name="INS_POS3_Y" documentation="Y position of the third IMU accelerometer in body frame. Positive Y is to the right of the origin. Attention: The IMU should be located as close to the vehicle c.g. as practical so that the value of this parameter is minimised. Failure to do so can result in noisy navigation velocity measurements due to vibration and IMU gyro noise. If the IMU cannot be moved and velocity noise is a problem, a location closer to the IMU can be used as the body frame origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="IMU accelerometer Z position" name="INS_POS3_Z" documentation="Z position of the third IMU accelerometer in body frame. Positive Z is down from the origin. Attention: The IMU should be located as close to the vehicle c.g. as practical so that the value of this parameter is minimised. Failure to do so can result in noisy navigation velocity measurements due to vibration and IMU gyro noise. If the IMU cannot be moved and velocity noise is a problem, a location closer to the IMU can be used as the body frame origin." user="Advanced">
<field name="Range">-10 10</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Gyro ID" name="INS_GYR_ID" documentation="Gyro sensor ID, taking into account its type, bus and instance" user="Advanced">
<field name="ReadOnly">True</field>
</param>
<param humanName="Gyro2 ID" name="INS_GYR2_ID" documentation="Gyro2 sensor ID, taking into account its type, bus and instance" user="Advanced">
<field name="ReadOnly">True</field>
</param>
<param humanName="Gyro3 ID" name="INS_GYR3_ID" documentation="Gyro3 sensor ID, taking into account its type, bus and instance" user="Advanced">
<field name="ReadOnly">True</field>
</param>
<param humanName="Accelerometer ID" name="INS_ACC_ID" documentation="Accelerometer sensor ID, taking into account its type, bus and instance" user="Advanced">
<field name="ReadOnly">True</field>
</param>
<param humanName="Accelerometer2 ID" name="INS_ACC2_ID" documentation="Accelerometer2 sensor ID, taking into account its type, bus and instance" user="Advanced">
<field name="ReadOnly">True</field>
</param>
<param humanName="Accelerometer3 ID" name="INS_ACC3_ID" documentation="Accelerometer3 sensor ID, taking into account its type, bus and instance" user="Advanced">
<field name="ReadOnly">True</field>
</param>
<param humanName="Fast sampling mask" name="INS_FAST_SAMPLE" documentation="Mask of IMUs to enable fast sampling on, if available" user="Advanced">
<field name="Bitmask">0:FirstIMU,1:SecondIMU,2:ThirdIMU</field>
<values>
<value code="1">FirstIMUOnly</value>
<value code="3">FirstAndSecondIMU</value>
</values>
</param>
<param humanName="IMU enable mask" name="INS_ENABLE_MASK" documentation="Bitmask of IMUs to enable. It can be used to prevent startup of specific detected IMUs" user="Advanced">
<field name="Bitmask">0:FirstIMU,1:SecondIMU,2:ThirdIMU</field>
<values>
<value code="1">FirstIMUOnly</value>
<value code="3">FirstAndSecondIMU</value>
<value code="7">FirstSecondAndThirdIMU</value>
<value code="127">AllIMUs</value>
</values>
</param>
</parameters>
<parameters name="INS_HNTCH_">
<param humanName="Harmonic Notch Filter enable" name="INS_HNTCH_ENABLE" documentation="Harmonic Notch Filter enable" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Harmonic Notch Filter base frequency" name="INS_HNTCH_FREQ" documentation="Harmonic Notch Filter base center frequency in Hz" user="Advanced">
<field name="Range">10 400</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Harmonic Notch Filter bandwidth" name="INS_HNTCH_BW" documentation="Harmonic Notch Filter bandwidth in Hz" user="Advanced">
<field name="Range">5 100</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Harmonic Notch Filter attenuation" name="INS_HNTCH_ATT" documentation="Harmonic Notch Filter attenuation in dB" user="Advanced">
<field name="Range">5 30</field>
<field name="Units">dB</field>
<field name="UnitText">decibel</field>
</param>
<param humanName="Harmonic Notch Filter harmonics" name="INS_HNTCH_HMNCS" documentation="Bitmask of harmonic frequencies to apply Harmonic Notch Filter to. This option takes effect on the next reboot. A maximum of 3 harmonics can be used at any one time" user="Advanced">
<field name="Bitmask">0:1st harmonic,1:2nd harmonic,2:3rd harmonic,3:4th hamronic,4:5th harmonic,5:6th harmonic,6:7th harmonic,7:8th harmonic</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Harmonic Notch Filter reference value" name="INS_HNTCH_REF" documentation="Reference value associated with the specified frequency to facilitate frequency scaling of the Harmonic Notch Filter" user="Advanced">
<field name="Range">0.1 0.9</field>
<field name="RebootRequired">True</field>
</param>
</parameters>
<parameters name="INS_LOG_">
<param humanName="sample count per batch" name="INS_LOG_BAT_CNT" documentation="Number of samples to take when logging streams of IMU sensor readings.  Will be rounded down to a multiple of 32. This option takes effect on the next reboot." user="Advanced">
<field name="Increment">32</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Sensor Bitmask" name="INS_LOG_BAT_MASK" documentation="Bitmap of which IMUs to log batch data for. This option takes effect on the next reboot." user="Advanced">
<field name="Bitmask">0:IMU1,1:IMU2,2:IMU3</field>
<values>
<value code="0">None</value>
<value code="1">First IMU</value>
<value code="255">All</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Batch Logging Options Mask" name="INS_LOG_BAT_OPT" documentation="Options for the BatchSampler" user="Advanced">
<field name="Bitmask">0:Sensor-Rate Logging (sample at full sensor rate seen by AP), 1: Sample post-filtering</field>
</param>
<param humanName="logging interval" name="INS_LOG_BAT_LGIN" documentation="Interval between pushing samples to the AP_Logger log">
<field name="Increment">10</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
</param>
<param humanName="logging count" name="INS_LOG_BAT_LGCT" documentation="Number of samples to push to count every INS_LOG_BAT_LGIN">
<field name="Increment">1</field>
</param>
</parameters>
<parameters name="INS_NOTCH_">
<param humanName="Enable" name="INS_NOTCH_ENABLE" documentation="Enable notch filter" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Attenuation" name="INS_NOTCH_ATT" documentation="Notch attenuation in dB" user="Advanced">
<field name="Range">5 30</field>
<field name="Units">dB</field>
<field name="UnitText">decibel</field>
</param>
<param humanName="Frequency" name="INS_NOTCH_FREQ" documentation="Notch center frequency in Hz" user="Advanced">
<field name="Range">10 400</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Bandwidth" name="INS_NOTCH_BW" documentation="Notch bandwidth in Hz" user="Advanced">
<field name="Range">5 100</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
</parameters>
<parameters name="LAND_">
<param humanName="Landing slope re-calc threshold" name="LAND_SLOPE_RCALC" documentation="This parameter is used when using a rangefinder during landing for altitude correction from baro drift (RNGFND_LANDING=1) and the altitude correction indicates your altitude is lower than the intended slope path. This value is the threshold of the correction to re-calculate the landing approach slope. Set to zero to keep the original slope all the way down and any detected baro drift will be corrected by pitching/throttling up to snap back to resume the original slope path. Otherwise, when a rangefinder altitude correction exceeds this threshold it will trigger a slope re-calculate to give a shallower slope. This also smoothes out the approach when flying over objects such as trees. Recommend a value of 2m." user="Advanced">
<field name="Range">0 5</field>
<field name="Increment">0.5</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Landing auto-abort slope threshold" name="LAND_ABORT_DEG" documentation="This parameter is used when using a rangefinder during landing for altitude correction from baro drift (RNGFND_LANDING=1) and the altitude correction indicates your actual altitude is higher than the intended slope path. Normally it would pitch down steeply but that can result in a crash with high airspeed so this allows remembering the baro offset and self-abort the landing and come around for another landing with the correct baro offset applied for a perfect slope. An auto-abort go-around will only happen once, next attempt will not auto-abort again. This operation happens entirely automatically in AUTO mode. This value is the delta degrees threshold to trigger the go-around compared to the original slope. Example: if set to 5 deg and the mission planned slope is 15 deg then if the new slope is 21 then it will go-around. Set to 0 to disable. Requires LAND_SLOPE_RCALC &gt; 0." user="Advanced">
<field name="Range">0 90</field>
<field name="Increment">0.1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Landing Pitch" name="LAND_PITCH_CD" documentation="Used in autoland to give the minimum pitch in the final stage of landing (after the flare). This parameter can be used to ensure that the final landing attitude is appropriate for the type of undercarriage on the aircraft. Note that it is a minimum pitch only - the landing code will control pitch above this value to try to achieve the configured landing sink rate." user="Advanced">
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Landing flare altitude" name="LAND_FLARE_ALT" documentation="Altitude in autoland at which to lock heading and flare to the LAND_PITCH_CD pitch. Note that this option is secondary to LAND_FLARE_SEC. For a good landing it preferable that the flare is triggered by LAND_FLARE_SEC." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Landing flare time" name="LAND_FLARE_SEC" documentation="Vertical time before landing point at which to lock heading and flare with the motor stopped. This is vertical time, and is calculated based solely on the current height above the ground and the current descent rate.  Set to 0 if you only wish to flare based on altitude (see LAND_FLARE_ALT)." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Landing pre-flare altitude" name="LAND_PF_ALT" documentation="Altitude to trigger pre-flare flight stage where LAND_PF_ARSPD controls airspeed. The pre-flare flight stage trigger works just like LAND_FLARE_ALT but higher. Disabled when LAND_PF_ARSPD is 0." user="Advanced">
<field name="Range">0 30</field>
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Landing pre-flare time" name="LAND_PF_SEC" documentation="Vertical time to ground to trigger pre-flare flight stage where LAND_PF_ARSPD controls airspeed. This pre-flare flight stage trigger works just like LAND_FLARE_SEC but earlier. Disabled when LAND_PF_ARSPD is 0." user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">0.1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Landing pre-flare airspeed" name="LAND_PF_ARSPD" documentation="Desired airspeed during pre-flare flight stage. This is useful to reduce airspeed just before the flare. Use 0 to disable." user="Advanced">
<field name="Range">0 30</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Landing throttle slew rate" name="LAND_THR_SLEW" documentation="This parameter sets the slew rate for the throttle during auto landing. When this is zero the THR_SLEWRATE parameter is used during landing. The value is a percentage throttle change per second, so a value of 20 means to advance the throttle over 5 seconds on landing. Values below 50 are not recommended as it may cause a stall when airspeed is low and you can not throttle up fast enough." user="User">
<field name="Range">0 127</field>
<field name="Increment">1</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Landing disarm delay" name="LAND_DISARMDELAY" documentation="After a landing has completed using a LAND waypoint, automatically disarm after this many seconds have passed. Use 0 to not disarm." user="Advanced">
<field name="Range">0 127</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Set servos to neutral after landing" name="LAND_THEN_NEUTRL" documentation="When enabled, after an autoland and auto-disarm via LAND_DISARMDELAY happens then set all servos to neutral. This is helpful when an aircraft has a rough landing upside down or a crazy angle causing the servos to strain." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code=" 1">Servos to Neutral</value>
<value code=" 2">Servos to Zero PWM</value>
</values>
</param>
<param humanName="Landing abort using throttle" name="LAND_ABORT_THR" documentation="Allow a landing abort to trigger with a throttle &gt; 95%" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code=" 1">Enabled</value>
</values>
</param>
<param humanName="Landing flap percentage" name="LAND_FLAP_PERCNT" documentation="The amount of flaps (as a percentage) to apply in the landing approach and flare of an automatic landing" user="Advanced">
<field name="Range">0 100</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Auto-landing type" name="LAND_TYPE" documentation="Specifies the auto-landing type to use" user="Standard">
<values>
<value code="0">Standard Glide Slope</value>
<value code=" 1">Deepstall</value>
</values>
</param>
</parameters>
<parameters name="LAND_DS_">
<param humanName="Deepstall forward velocity" name="LAND_DS_V_FWD" documentation="The forward velocity of the aircraft while stalled" user="Advanced">
<field name="Range">0 20</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Deepstall slope a" name="LAND_DS_SLOPE_A" documentation="The a component of distance = a*wind + b" user="Advanced">
</param>
<param humanName="Deepstall slope b" name="LAND_DS_SLOPE_B" documentation="The a component of distance = a*wind + b" user="Advanced">
</param>
<param humanName="Deepstall approach extension" name="LAND_DS_APP_EXT" documentation="The forward velocity of the aircraft while stalled" user="Advanced">
<field name="Range">10 200</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Deepstall velocity down" name="LAND_DS_V_DWN" documentation="The downward velocity of the aircraft while stalled" user="Advanced">
<field name="Range">0 20</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Deepstall slew speed" name="LAND_DS_SLEW_SPD" documentation="The speed at which the elevator slews to deepstall" user="Advanced">
<field name="Range">0 2</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Deepstall elevator PWM" name="LAND_DS_ELEV_PWM" documentation="The PWM value in microseconds for the elevator at full deflection in deepstall" user="Advanced">
<field name="Range">900 2100</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Deepstall enabled airspeed" name="LAND_DS_ARSP_MAX" documentation="The maximum aispeed where the deepstall steering controller is allowed to have control" user="Advanced">
<field name="Range">5 20</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Deepstall minimum derating airspeed" name="LAND_DS_ARSP_MIN" documentation="Deepstall lowest airspeed where the deepstall controller isn't allowed full control" user="Advanced">
<field name="Range">5 20</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Deepstall L1 period" name="LAND_DS_L1" documentation="Deepstall L1 navigational controller period" user="Advanced">
<field name="Range">5 50</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Deepstall L1 I gain" name="LAND_DS_L1_I" documentation="Deepstall L1 integratior gain" user="Advanced">
<field name="Range">0 1</field>
</param>
<param humanName="Aileron landing gain scalaing" name="LAND_DS_AIL_SCL" documentation="A scalar to reduce or increase the aileron control" user="Advanced">
<field name="Range">0 2.0</field>
</param>
</parameters>
<parameters name="LAND_DS_DS_">
<param humanName="PID Proportional Gain" name="LAND_DS_DS_P" documentation="P Gain which produces an output value that is proportional to the current error value">
</param>
<param humanName="PID Integral Gain" name="LAND_DS_DS_I" documentation="I Gain which produces an output that is proportional to both the magnitude and the duration of the error">
</param>
<param humanName="PID Derivative Gain" name="LAND_DS_DS_D" documentation="D Gain which produces an output that is proportional to the rate of change of the error">
</param>
<param humanName="PID Integral Maximum" name="LAND_DS_DS_IMAX" documentation="The maximum/minimum value that the I term can output">
</param>
</parameters>
<parameters name="LGR_">
<param humanName="Landing Gear Startup position" name="LGR_STARTUP" documentation="Landing Gear Startup behaviour control" user="Standard">
<values>
<value code="0">WaitForPilotInput</value>
<value code=" 1">Retract</value>
<value code=" 2">Deploy</value>
</values>
</param>
<param humanName="Chassis deployment feedback pin" name="LGR_DEPLOY_PIN" documentation="Pin number to use for detection of gear deployment. If set to -1 feedback is disabled." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="50">AUX1</value>
<value code="51">AUX2</value>
<value code="52">AUX3</value>
<value code="53">AUX4</value>
<value code="54">AUX5</value>
<value code="55">AUX6</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Chassis deployment feedback pin polarity" name="LGR_DEPLOY_POL" documentation="Polarity for feedback pin. If this is 1 then the pin should be high when gear are deployed. If set to 0 then then deployed gear level is low." user="Standard">
<values>
<value code="0">Low</value>
<value code="1">High</value>
</values>
</param>
<param humanName="Weight on wheels feedback pin" name="LGR_WOW_PIN" documentation="Pin number to use for feedback of weight on wheels condition. If set to -1 feedback is disabled." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="50">AUX1</value>
<value code="51">AUX2</value>
<value code="52">AUX3</value>
<value code="53">AUX4</value>
<value code="54">AUX5</value>
<value code="55">AUX6</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Weight on wheels feedback pin polarity" name="LGR_WOW_POL" documentation="Polarity for feedback pin. If this is 1 then the pin should be high when there is weight on wheels. If set to 0 then then weight on wheels level is low." user="Standard">
<values>
<value code="0">Low</value>
<value code="1">High</value>
</values>
</param>
<param humanName="Landing gear deployment altitude" name="LGR_DEPLOY_ALT" documentation="Altitude where the landing gear will be deployed. This should be lower than the RETRACT_ALT. If zero then altitude is not used for deploying landing gear. Only applies when vehicle is armed." user="Standard">
<field name="Range">0 1000</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Landing gear retract altitude" name="LGR_RETRACT_ALT" documentation="Altitude where the landing gear will be retracted. This should be higher than the DEPLOY_ALT. If zero then altitude is not used for retracting landing gear. Only applies when vehicle is armed." user="Standard">
<field name="Range">0 1000</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
</parameters>
<parameters name="LOG">
<param humanName="AP_Logger Backend Storage type" name="LOG_BACKEND_TYPE" documentation="Bitmap of what Logger backend types to enable. Block-based logging is available on SITL and boards with dataflash chips. Multiple backends can be selected." user="Standard">
<field name="Bitmask">0:File,1:MAVLink,2:Block</field>
<values>
<value code="0">None</value>
<value code="1">File</value>
<value code="2">MAVLink</value>
<value code="3">File and MAVLink</value>
<value code="4">Block</value>
<value code="6">Block and MAVLink</value>
</values>
</param>
<param humanName="Maximum AP_Logger File Backend buffer size (in kilobytes)" name="LOG_FILE_BUFSIZE" documentation='The AP_Logger_File backend uses a buffer to store data before writing to the block device.  Raising this value may reduce "gaps" in your SD card logging.  This buffer size may be reduced depending on available memory.  PixHawk requires at least 4 kilobytes.  Maximum value available here is 64 kilobytes.' user="Standard">
</param>
<param humanName="Enable logging while disarmed" name="LOG_DISARMED" documentation="If LOG_DISARMED is set to 1 then logging will be enabled while disarmed. This can make for very large logfiles but can help a lot when tracking down startup issues" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Enable logging of information needed for Replay" name="LOG_REPLAY" documentation="If LOG_REPLAY is set to 1 then the EKF2 state estimator will log detailed information needed for diagnosing problems with the Kalman filter. It is suggested that you also raise LOG_FILE_BUFSIZE to give more buffer space for logging and use a high quality microSD card to ensure no sensor data is lost" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Stop logging to current file on disarm" name="LOG_FILE_DSRMROT" documentation="When set, the current log file is closed when the vehicle is disarmed.  If LOG_DISARMED is set then a fresh log will be opened." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Maximum AP_Logger MAVLink Backend buffer size" name="LOG_MAV_BUFSIZE" documentation="Maximum amount of memory to allocate to AP_Logger-over-mavlink" user="Advanced">
<field name="Units">kB</field>
<field name="UnitText">kilobytes</field>
</param>
<param humanName="Timeout before giving up on file writes" name="LOG_FILE_TIMEOUT" documentation="This controls the amount of time before failing writes to a log file cause the file to be closed and logging stopped." user="Standard">
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
</parameters>
<parameters name="MIS_">
<param humanName="Total mission commands" name="MIS_TOTAL" documentation="The number of mission mission items that has been loaded by the ground station. Do not change this manually." user="Advanced">
<field name="ReadOnly">True</field>
<field name="Range">0 32766</field>
<field name="Increment">1</field>
</param>
<param humanName="Mission Restart when entering Auto mode" name="MIS_RESTART" documentation="Controls mission starting point when entering Auto mode (either restart from beginning of mission or resume from last command run)" user="Advanced">
<values>
<value code="0">Resume Mission</value>
<value code=" 1">Restart Mission</value>
</values>
</param>
<param humanName="Mission options bitmask" name="MIS_OPTIONS" documentation="Bitmask of what options to use in missions." user="Advanced">
<field name="Bitmask">0:Clear Mission on reboot</field>
</param>
</parameters>
<parameters name="MNT">
<param humanName="Mount default operating mode" name="MNT_DEFLT_MODE" documentation="Mount default operating mode on startup and after control is returned from autopilot" user="Standard">
<values>
<value code="0">Retracted</value>
<value code="1">Neutral</value>
<value code="2">MavLink Targeting</value>
<value code="3">RC Targeting</value>
<value code="4">GPS Point</value>
</values>
</param>
<param humanName="Mount roll angle when in retracted position" name="MNT_RETRACT_X" documentation="Mount roll angle when in retracted position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Mount tilt/pitch angle when in retracted position" name="MNT_RETRACT_Y" documentation="Mount tilt/pitch angle when in retracted position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Mount yaw/pan angle when in retracted position" name="MNT_RETRACT_Z" documentation="Mount yaw/pan angle when in retracted position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Mount roll angle when in neutral position" name="MNT_NEUTRAL_X" documentation="Mount roll angle when in neutral position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Mount tilt/pitch angle when in neutral position" name="MNT_NEUTRAL_Y" documentation="Mount tilt/pitch angle when in neutral position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Mount pan/yaw angle when in neutral position" name="MNT_NEUTRAL_Z" documentation="Mount pan/yaw angle when in neutral position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Stabilize mount's roll angle" name="MNT_STAB_ROLL" documentation="enable roll stabilisation relative to Earth" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Stabilize mount's pitch/tilt angle" name="MNT_STAB_TILT" documentation="enable tilt/pitch stabilisation relative to Earth" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Stabilize mount pan/yaw angle" name="MNT_STAB_PAN" documentation="enable pan/yaw stabilisation relative to Earth" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="roll RC input channel" name="MNT_RC_IN_ROLL" documentation="0 for none, any other for the RC channel to be used to control roll movements" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="5">RC5</value>
<value code="6">RC6</value>
<value code="7">RC7</value>
<value code="8">RC8</value>
<value code="9">RC9</value>
<value code="10">RC10</value>
<value code="11">RC11</value>
<value code="12">RC12</value>
</values>
</param>
<param humanName="Minimum roll angle" name="MNT_ANGMIN_ROL" documentation="Minimum physical roll angular position of mount." user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Maximum roll angle" name="MNT_ANGMAX_ROL" documentation="Maximum physical roll angular position of the mount" user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="tilt (pitch) RC input channel" name="MNT_RC_IN_TILT" documentation="0 for none, any other for the RC channel to be used to control tilt (pitch) movements" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="5">RC5</value>
<value code="6">RC6</value>
<value code="7">RC7</value>
<value code="8">RC8</value>
<value code="9">RC9</value>
<value code="10">RC10</value>
<value code="11">RC11</value>
<value code="12">RC12</value>
</values>
</param>
<param humanName="Minimum tilt angle" name="MNT_ANGMIN_TIL" documentation="Minimum physical tilt (pitch) angular position of mount." user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Maximum tilt angle" name="MNT_ANGMAX_TIL" documentation="Maximum physical tilt (pitch) angular position of the mount" user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="pan (yaw) RC input channel" name="MNT_RC_IN_PAN" documentation="0 for none, any other for the RC channel to be used to control pan (yaw) movements" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="5">RC5</value>
<value code="6">RC6</value>
<value code="7">RC7</value>
<value code="8">RC8</value>
<value code="9">RC9</value>
<value code="10">RC10</value>
<value code="11">RC11</value>
<value code="12">RC12</value>
</values>
</param>
<param humanName="Minimum pan angle" name="MNT_ANGMIN_PAN" documentation="Minimum physical pan (yaw) angular position of mount." user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Maximum pan angle" name="MNT_ANGMAX_PAN" documentation="Maximum physical pan (yaw) angular position of the mount" user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="mount joystick speed" name="MNT_JSTICK_SPD" documentation="0 for position control, small for low speeds, 100 for max speed. A good general value is 10 which gives a movement speed of 3 degrees per second." user="Standard">
<field name="Range">0 100</field>
<field name="Increment">1</field>
</param>
<param humanName="Roll stabilization lead time" name="MNT_LEAD_RLL" documentation="Causes the servo angle output to lead the current angle of the vehicle by some amount of time based on current angular rate, compensating for servo delay. Increase until the servo is responsive but doesn't overshoot. Does nothing with pan stabilization enabled." user="Standard">
<field name="Range">0.0 0.2</field>
<field name="Increment">.005</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Pitch stabilization lead time" name="MNT_LEAD_PTCH" documentation="Causes the servo angle output to lead the current angle of the vehicle by some amount of time based on current angular rate. Increase until the servo is responsive but doesn't overshoot. Does nothing with pan stabilization enabled." user="Standard">
<field name="Range">0.0 0.2</field>
<field name="Increment">.005</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Mount Type" name="MNT_TYPE" documentation="Mount Type (None, Servo or MAVLink)" user="Standard">
<values>
<value code="0">None</value>
<value code=" 1">Servo</value>
<value code=" 2">3DR Solo</value>
<value code=" 3">Alexmos Serial</value>
<value code=" 4">SToRM32 MAVLink</value>
<value code=" 5">SToRM32 Serial</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Mount default operating mode" name="MNT2_DEFLT_MODE" documentation="Mount default operating mode on startup and after control is returned from autopilot" user="Standard">
<values>
<value code="0">Retracted</value>
<value code="1">Neutral</value>
<value code="2">MavLink Targeting</value>
<value code="3">RC Targeting</value>
<value code="4">GPS Point</value>
</values>
</param>
<param humanName="Mount2 roll angle when in retracted position" name="MNT2_RETRACT_X" documentation="Mount2 roll angle when in retracted position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Mount2 tilt/pitch angle when in retracted position" name="MNT2_RETRACT_Y" documentation="Mount2 tilt/pitch angle when in retracted position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Mount2 yaw/pan angle when in retracted position" name="MNT2_RETRACT_Z" documentation="Mount2 yaw/pan angle when in retracted position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Mount2 roll angle when in neutral position" name="MNT2_NEUTRAL_X" documentation="Mount2 roll angle when in neutral position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Mount2 tilt/pitch angle when in neutral position" name="MNT2_NEUTRAL_Y" documentation="Mount2 tilt/pitch angle when in neutral position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Mount2 pan/yaw angle when in neutral position" name="MNT2_NEUTRAL_Z" documentation="Mount2 pan/yaw angle when in neutral position" user="Standard">
<field name="Range">-180.00 179.99</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Stabilize Mount2's roll angle" name="MNT2_STAB_ROLL" documentation="enable roll stabilisation relative to Earth" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Stabilize Mount2's pitch/tilt angle" name="MNT2_STAB_TILT" documentation="enable tilt/pitch stabilisation relative to Earth" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Stabilize mount2 pan/yaw angle" name="MNT2_STAB_PAN" documentation="enable pan/yaw stabilisation relative to Earth" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Mount2's roll RC input channel" name="MNT2_RC_IN_ROLL" documentation="0 for none, any other for the RC channel to be used to control roll movements" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="5">RC5</value>
<value code="6">RC6</value>
<value code="7">RC7</value>
<value code="8">RC8</value>
<value code="9">RC9</value>
<value code="10">RC10</value>
<value code="11">RC11</value>
<value code="12">RC12</value>
</values>
</param>
<param humanName="Mount2's minimum roll angle" name="MNT2_ANGMIN_ROL" documentation="Mount2's minimum physical roll angular position" user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Mount2's maximum roll angle" name="MNT2_ANGMAX_ROL" documentation="Mount2's maximum physical roll angular position" user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Mount2's tilt (pitch) RC input channel" name="MNT2_RC_IN_TILT" documentation="0 for none, any other for the RC channel to be used to control tilt (pitch) movements" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="5">RC5</value>
<value code="6">RC6</value>
<value code="7">RC7</value>
<value code="8">RC8</value>
<value code="9">RC9</value>
<value code="10">RC10</value>
<value code="11">RC11</value>
<value code="12">RC12</value>
</values>
</param>
<param humanName="Mount2's minimum tilt angle" name="MNT2_ANGMIN_TIL" documentation="Mount2's minimum physical tilt (pitch) angular position" user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Mount2's maximum tilt angle" name="MNT2_ANGMAX_TIL" documentation="Mount2's maximum physical tilt (pitch) angular position" user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Mount2's pan (yaw) RC input channel" name="MNT2_RC_IN_PAN" documentation="0 for none, any other for the RC channel to be used to control pan (yaw) movements" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="5">RC5</value>
<value code="6">RC6</value>
<value code="7">RC7</value>
<value code="8">RC8</value>
<value code="9">RC9</value>
<value code="10">RC10</value>
<value code="11">RC11</value>
<value code="12">RC12</value>
</values>
</param>
<param humanName="Mount2's minimum pan angle" name="MNT2_ANGMIN_PAN" documentation="Mount2's minimum physical pan (yaw) angular position" user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Mount2's maximum pan angle" name="MNT2_ANGMAX_PAN" documentation="MOunt2's maximum physical pan (yaw) angular position" user="Standard">
<field name="Range">-18000 17999</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Mount2's Roll stabilization lead time" name="MNT2_LEAD_RLL" documentation="Causes the servo angle output to lead the current angle of the vehicle by some amount of time based on current angular rate, compensating for servo delay. Increase until the servo is responsive but doesn't overshoot. Does nothing with pan stabilization enabled." user="Standard">
<field name="Range">0.0 0.2</field>
<field name="Increment">.005</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Mount2's Pitch stabilization lead time" name="MNT2_LEAD_PTCH" documentation="Causes the servo angle output to lead the current angle of the vehicle by some amount of time based on current angular rate. Increase until the servo is responsive but doesn't overshoot. Does nothing with pan stabilization enabled." user="Standard">
<field name="Range">0.0 0.2</field>
<field name="Increment">.005</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Mount2 Type" name="MNT2_TYPE" documentation="Mount Type (None, Servo or MAVLink)" user="Standard">
<values>
<value code="0">None</value>
<value code=" 1">Servo</value>
<value code=" 2">3DR Solo</value>
<value code=" 3">Alexmos Serial</value>
<value code=" 4">SToRM32 MAVLink</value>
<value code=" 5">SToRM32 Serial</value>
</values>
</param>
</parameters>
<parameters name="NAVL1_">
<param humanName="L1 control period" name="NAVL1_PERIOD" documentation="Period in seconds of L1 tracking loop. This parameter is the primary control for agressiveness of turns in auto mode. This needs to be larger for less responsive airframes. The default of 20 is quite conservative, but for most RC aircraft will lead to reasonable flight. For smaller more agile aircraft a value closer to 15 is appropriate, or even as low as 10 for some very agile aircraft. When tuning, change this value in small increments, as a value that is much too small (say 5 or 10 below the right value) can lead to very radical turns, and a risk of stalling." user="Standard">
<field name="Range">1 60</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="L1 control damping ratio" name="NAVL1_DAMPING" documentation="Damping ratio for L1 control. Increase this in increments of 0.05 if you are getting overshoot in path tracking. You should not need a value below 0.7 or above 0.85." user="Advanced">
<field name="Range">0.6 1.0</field>
<field name="Increment">0.05</field>
</param>
<param humanName="L1 control crosstrack integrator gain" name="NAVL1_XTRACK_I" documentation="Crosstrack error integrator gain. This gain is applied to the crosstrack error to ensure it converges to zero. Set to zero to disable. Smaller values converge slower, higher values will cause crosstrack error oscillation." user="Advanced">
<field name="Range">0 0.1</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Loiter Radius Bank Angle Limit" name="NAVL1_LIM_BANK" documentation="The sealevel bank angle limit for a continous loiter. (Used to calculate airframe loading limits at higher altitudes). Setting to 0, will instead just scale the loiter radius directly" user="Advanced">
<field name="Range">0 89</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
</parameters>
<parameters name="NTF_">
<param humanName="LED Brightness" name="NTF_LED_BRIGHT" documentation="Select the RGB LED brightness level. When USB is connected brightness will never be higher than low regardless of the setting." user="Advanced">
<values>
<value code="0">Off</value>
<value code="1">Low</value>
<value code="2">Medium</value>
<value code="3">High</value>
</values>
</param>
<param humanName="Buzzer enable" name="NTF_BUZZ_ENABLE" documentation="Enable or disable the buzzer." user="Advanced">
<values>
<value code="0">Disable</value>
<value code="1">Enable</value>
</values>
</param>
<param humanName="Specifies colour source for the RGBLed" name="NTF_LED_OVERRIDE" documentation='Specifies the source for the colours and brightness for the LED.  OutbackChallenge conforms to the MedicalExpress (https://uavchallenge.org/medical-express/) rules, essentially "Green" is disarmed (safe-to-approach), "Red" is armed (not safe-to-approach). Traffic light is a simplified color set, red when armed, yellow when the safety switch is not surpressing outputs (but disarmed), and green when outputs are surpressed and disarmed, the LED will blink faster if disarmed and failing arming checks.' user="Advanced">
<values>
<value code="0">Standard</value>
<value code="1">MAVLink</value>
<value code="2">OutbackChallenge</value>
<value code="3">TrafficLight</value>
</values>
</param>
<param humanName="Type of on-board I2C display" name="NTF_DISPLAY_TYPE" documentation="This sets up the type of on-board I2C display. Disabled by default." user="Advanced">
<values>
<value code="0">Disable</value>
<value code="1">ssd1306</value>
<value code="2">sh1106</value>
<value code="10">SITL</value>
</values>
</param>
<param humanName="OreoLED Theme" name="NTF_OREO_THEME" documentation="Enable/Disable Solo Oreo LED driver, 0 to disable, 1 for Aircraft theme, 2 for Rover theme" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Aircraft</value>
<value code="2">Rover</value>
</values>
</param>
<param humanName="Buzzer pin" name="NTF_BUZZ_PIN" documentation="Enables to connect active buzzer to arbitrary pin. Requires 3-pin buzzer or additional MOSFET!" user="Advanced">
<values>
<value code="0">Disabled</value>
</values>
</param>
<param humanName="LED Driver Types" name="NTF_LED_TYPES" documentation="Controls what types of LEDs will be enabled" user="Advanced">
<field name="Bitmask">0:Build in LED, 1:Internal ToshibaLED, 2:External ToshibaLED, 3:External PCA9685, 4:Oreo LED, 5:UAVCAN, 6:NCP5623 External, 7:NCP5623 Internal, 8:NeoPixel</field>
</param>
<param humanName="Buzzer-on pin logic level" name="NTF_BUZZ_ON_LVL" documentation="Specifies pin level that indicates buzzer should play" user="Advanced">
<values>
<value code="0">LowIsOn</value>
<value code="1">HighIsOn</value>
</values>
</param>
<param humanName="Buzzer volume" name="NTF_BUZZ_VOLUME" documentation="Enable or disable the buzzer.">
<field name="Range">0 100</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
</parameters>
<parameters name="OSD">
<param humanName="OSD type" name="OSD_TYPE" documentation="OSD type" user="Standard">
<values>
<value code="0">None</value>
<value code="1">MAX7456</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Screen switch transmitter channel" name="OSD_CHAN" documentation="This sets the channel used to switch different OSD screens." user="Standard">
<values>
<value code="0">Disable</value>
<value code="5">Chan5</value>
<value code="6">Chan6</value>
<value code="7">Chan7</value>
<value code="8">Chan8</value>
<value code="9">Chan9</value>
<value code="10">Chan10</value>
<value code="11">Chan11</value>
<value code="12">Chan12</value>
<value code="13">Chan13</value>
<value code="14">Chan14</value>
<value code="15">Chan15</value>
<value code="16">Chan16</value>
</values>
</param>
<param humanName="OSD Options" name="OSD_OPTIONS" documentation="This sets options that change the display" user="Standard">
<field name="Bitmask">0:UseDecimalPack, 1:InvertedWindPointer, 2:InvertedAHRoll</field>
</param>
<param humanName="OSD Font" name="OSD_FONT" documentation="This sets which OSD font to use. It is an integer from 0 to the number of fonts available" user="Standard">
<field name="RebootRequired">True</field>
</param>
<param humanName="OSD vertical offset" name="OSD_V_OFFSET" documentation="Sets vertical offset of the osd inside image" user="Standard">
<field name="Range">0 31</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="OSD horizontal offset" name="OSD_H_OFFSET" documentation="Sets horizontal offset of the osd inside image" user="Standard">
<field name="Range">0 63</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="RSSI warn level (in %)" name="OSD_W_RSSI" documentation="Set level at which RSSI item will flash" user="Standard">
<field name="Range">0 99</field>
</param>
<param humanName="NSAT warn level" name="OSD_W_NSAT" documentation="Set level at which NSAT item will flash" user="Standard">
<field name="Range">1 30</field>
</param>
<param humanName="BAT_VOLT warn level" name="OSD_W_BATVOLT" documentation="Set level at which BAT_VOLT item will flash" user="Standard">
<field name="Range">0 100</field>
</param>
<param humanName="Display Units" name="OSD_UNITS" documentation="Sets the units to use in displaying items" user="Standard">
<values>
<value code="0">Metric</value>
<value code="1">Imperial</value>
<value code="2">SI</value>
<value code="3">Aviation</value>
</values>
</param>
<param humanName="Message display duration in seconds" name="OSD_MSG_TIME" documentation="Sets message duration seconds" user="Standard">
<field name="Range">1 20</field>
</param>
<param humanName="Arm screen" name="OSD_ARM_SCR" documentation="Screen to be shown on Arm event. Zero to disable the feature." user="Standard">
<field name="Range">0 4</field>
</param>
<param humanName="Disarm screen" name="OSD_DSARM_SCR" documentation="Screen to be shown on disarm event. Zero to disable the feature." user="Standard">
<field name="Range">0 4</field>
</param>
<param humanName="Failsafe screen" name="OSD_FS_SCR" documentation="Screen to be shown on failsafe event. Zero to disable the feature." user="Standard">
<field name="Range">0 4</field>
</param>
</parameters>
<parameters name="OSD1_">
<param humanName="Enable screen" name="OSD1_ENABLE" documentation="Enable this screen" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Transmitter switch screen minimum pwm" name="OSD1_CHAN_MIN" documentation="This sets the PWM lower limit for this screen" user="Standard">
<field name="Range">900 2100</field>
</param>
<param humanName="Transmitter switch screen maximum pwm" name="OSD1_CHAN_MAX" documentation="This sets the PWM upper limit for this screen" user="Standard">
<field name="Range">900 2100</field>
</param>
<param humanName="ALTITUDE_EN" name="OSD1_ALTITUDE_EN" documentation="Enables display of altitude AGL">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ALTITUDE_X" name="OSD1_ALTITUDE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ALTITUDE_Y" name="OSD1_ALTITUDE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BATVOLT_EN" name="OSD1_BATVOLT_EN" documentation="Displays main battery voltage">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BATVOLT_X" name="OSD1_BATVOLT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BATVOLT_Y" name="OSD1_BATVOLT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="RSSI_EN" name="OSD1_RSSI_EN" documentation="Displays RC signal strength">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="RSSI_X" name="OSD1_RSSI_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="RSSI_Y" name="OSD1_RSSI_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CURRENT_EN" name="OSD1_CURRENT_EN" documentation="Displays main battery current">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CURRENT_X" name="OSD1_CURRENT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CURRENT_Y" name="OSD1_CURRENT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BATUSED_EN" name="OSD1_BATUSED_EN" documentation="Displays primary battery mAh consumed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BATUSED_X" name="OSD1_BATUSED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BATUSED_Y" name="OSD1_BATUSED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="SATS_EN" name="OSD1_SATS_EN" documentation="Displays number of acquired sattelites">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="SATS_X" name="OSD1_SATS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="SATS_Y" name="OSD1_SATS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="FLTMODE_EN" name="OSD1_FLTMODE_EN" documentation="Displays flight mode">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="FLTMODE_X" name="OSD1_FLTMODE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="FLTMODE_Y" name="OSD1_FLTMODE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="MESSAGE_EN" name="OSD1_MESSAGE_EN" documentation="Displays Mavlink messages">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="MESSAGE_X" name="OSD1_MESSAGE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="MESSAGE_Y" name="OSD1_MESSAGE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GSPEED_EN" name="OSD1_GSPEED_EN" documentation="Displays GPS ground speed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GSPEED_X" name="OSD1_GSPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GSPEED_Y" name="OSD1_GSPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HORIZON_EN" name="OSD1_HORIZON_EN" documentation="Displays artificial horizon">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HORIZON_X" name="OSD1_HORIZON_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HORIZON_Y" name="OSD1_HORIZON_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HOME_EN" name="OSD1_HOME_EN" documentation="Displays distance and relative direction to HOME">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HOME_X" name="OSD1_HOME_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HOME_Y" name="OSD1_HOME_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HEADING_EN" name="OSD1_HEADING_EN" documentation="Displays heading">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HEADING_X" name="OSD1_HEADING_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HEADING_Y" name="OSD1_HEADING_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="THROTTLE_EN" name="OSD1_THROTTLE_EN" documentation="Displays actual throttle percentage being sent to motor(s)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="THROTTLE_X" name="OSD1_THROTTLE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="THROTTLE_Y" name="OSD1_THROTTLE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="COMPASS_EN" name="OSD1_COMPASS_EN" documentation="Enables display of compass rose">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="COMPASS_X" name="OSD1_COMPASS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="COMPASS_Y" name="OSD1_COMPASS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="WIND_EN" name="OSD1_WIND_EN" documentation="Displays wind speed and relative direction">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="WIND_X" name="OSD1_WIND_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="WIND_Y" name="OSD1_WIND_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPEED_EN" name="OSD1_ASPEED_EN" documentation="Displays airspeed value being used by TECS (fused value)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ASPEED_X" name="OSD1_ASPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ASPEED_Y" name="OSD1_ASPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="VSPEED_EN" name="OSD1_VSPEED_EN" documentation="Displays climb rate">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="VSPEED_X" name="OSD1_VSPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="VSPEED_Y" name="OSD1_VSPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHTEMP_EN" name="OSD1_BLHTEMP_EN" documentation="Displays first esc's temp">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHTEMP_X" name="OSD1_BLHTEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHTEMP_Y" name="OSD1_BLHTEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHRPM_EN" name="OSD1_BLHRPM_EN" documentation="Displays first esc's rpm">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHRPM_X" name="OSD1_BLHRPM_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHRPM_Y" name="OSD1_BLHRPM_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHAMPS_EN" name="OSD1_BLHAMPS_EN" documentation="Displays first esc's current">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHAMPS_X" name="OSD1_BLHAMPS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHAMPS_Y" name="OSD1_BLHAMPS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GPSLAT_EN" name="OSD1_GPSLAT_EN" documentation="Displays GPS latitude">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GPSLAT_X" name="OSD1_GPSLAT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GPSLAT_Y" name="OSD1_GPSLAT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GPSLONG_EN" name="OSD1_GPSLONG_EN" documentation="Displays GPS longitude">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GPSLONG_X" name="OSD1_GPSLONG_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GPSLONG_Y" name="OSD1_GPSLONG_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ROLL_EN" name="OSD1_ROLL_EN" documentation="Displays degrees of roll from level">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ROLL_X" name="OSD1_ROLL_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ROLL_Y" name="OSD1_ROLL_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="PITCH_EN" name="OSD1_PITCH_EN" documentation="Displays degrees of pitch from level">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="PITCH_X" name="OSD1_PITCH_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="PITCH_Y" name="OSD1_PITCH_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="TEMP_EN" name="OSD1_TEMP_EN" documentation="Displays temperature reported by primary barometer">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="TEMP_X" name="OSD1_TEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="TEMP_Y" name="OSD1_TEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HDOP_EN" name="OSD1_HDOP_EN" documentation="Displays Horizontal Dilution Of Position">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HDOP_X" name="OSD1_HDOP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HDOP_Y" name="OSD1_HDOP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="WAYPOINT_EN" name="OSD1_WAYPOINT_EN" documentation="Displays bearing and distance to next waypoint">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="WAYPOINT_X" name="OSD1_WAYPOINT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="WAYPOINT_Y" name="OSD1_WAYPOINT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="XTRACK_EN" name="OSD1_XTRACK_EN" documentation="Displays crosstrack error">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="XTRACK_X" name="OSD1_XTRACK_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="XTRACK_Y" name="OSD1_XTRACK_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="DIST_EN" name="OSD1_DIST_EN" documentation="Displays total distance flown">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="DIST_X" name="OSD1_DIST_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="DIST_Y" name="OSD1_DIST_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="STATS_EN" name="OSD1_STATS_EN" documentation="Displays flight stats">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="STATS_X" name="OSD1_STATS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="STATS_Y" name="OSD1_STATS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="FLTIME_EN" name="OSD1_FLTIME_EN" documentation="Displays total flight time">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="FLTIME_X" name="OSD1_FLTIME_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="FLTIME_Y" name="OSD1_FLTIME_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CLIMBEFF_EN" name="OSD1_CLIMBEFF_EN" documentation="Displays climb efficiency (climb rate/current)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CLIMBEFF_X" name="OSD1_CLIMBEFF_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CLIMBEFF_Y" name="OSD1_CLIMBEFF_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="EFF_EN" name="OSD1_EFF_EN" documentation="Displays flight efficiency (mAh/km or /mi)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="EFF_X" name="OSD1_EFF_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="EFF_Y" name="OSD1_EFF_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BTEMP_EN" name="OSD1_BTEMP_EN" documentation="Displays temperature reported by secondary barometer">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BTEMP_X" name="OSD1_BTEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BTEMP_Y" name="OSD1_BTEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ATEMP_EN" name="OSD1_ATEMP_EN" documentation="Displays temperature reported by primary airspeed sensor">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ATEMP_X" name="OSD1_ATEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ATEMP_Y" name="OSD1_ATEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BAT2VLT_EN" name="OSD1_BAT2VLT_EN" documentation="Displays battery2 voltage">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BAT2VLT_X" name="OSD1_BAT2VLT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BAT2VLT_Y" name="OSD1_BAT2VLT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BAT2USED_EN" name="OSD1_BAT2USED_EN" documentation="Displays secondary battery mAh consumed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BAT2USED_X" name="OSD1_BAT2USED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BAT2USED_Y" name="OSD1_BAT2USED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPD2_EN" name="OSD1_ASPD2_EN" documentation="Displays airspeed reported directly from secondary airspeed sensor">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ASPD2_X" name="OSD1_ASPD2_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ASPD2_Y" name="OSD1_ASPD2_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPD1_Y" name="OSD1_ASPD1_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CLK_EN" name="OSD1_CLK_EN" documentation="Displays a clock panel based on AP_RTC local time">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CLK_X" name="OSD1_CLK_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CLK_Y" name="OSD1_CLK_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
</parameters>
<parameters name="OSD2_">
<param humanName="Enable screen" name="OSD2_ENABLE" documentation="Enable this screen" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Transmitter switch screen minimum pwm" name="OSD2_CHAN_MIN" documentation="This sets the PWM lower limit for this screen" user="Standard">
<field name="Range">900 2100</field>
</param>
<param humanName="Transmitter switch screen maximum pwm" name="OSD2_CHAN_MAX" documentation="This sets the PWM upper limit for this screen" user="Standard">
<field name="Range">900 2100</field>
</param>
<param humanName="ALTITUDE_EN" name="OSD2_ALTITUDE_EN" documentation="Enables display of altitude AGL">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ALTITUDE_X" name="OSD2_ALTITUDE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ALTITUDE_Y" name="OSD2_ALTITUDE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BATVOLT_EN" name="OSD2_BATVOLT_EN" documentation="Displays main battery voltage">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BATVOLT_X" name="OSD2_BATVOLT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BATVOLT_Y" name="OSD2_BATVOLT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="RSSI_EN" name="OSD2_RSSI_EN" documentation="Displays RC signal strength">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="RSSI_X" name="OSD2_RSSI_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="RSSI_Y" name="OSD2_RSSI_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CURRENT_EN" name="OSD2_CURRENT_EN" documentation="Displays main battery current">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CURRENT_X" name="OSD2_CURRENT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CURRENT_Y" name="OSD2_CURRENT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BATUSED_EN" name="OSD2_BATUSED_EN" documentation="Displays primary battery mAh consumed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BATUSED_X" name="OSD2_BATUSED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BATUSED_Y" name="OSD2_BATUSED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="SATS_EN" name="OSD2_SATS_EN" documentation="Displays number of acquired sattelites">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="SATS_X" name="OSD2_SATS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="SATS_Y" name="OSD2_SATS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="FLTMODE_EN" name="OSD2_FLTMODE_EN" documentation="Displays flight mode">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="FLTMODE_X" name="OSD2_FLTMODE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="FLTMODE_Y" name="OSD2_FLTMODE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="MESSAGE_EN" name="OSD2_MESSAGE_EN" documentation="Displays Mavlink messages">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="MESSAGE_X" name="OSD2_MESSAGE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="MESSAGE_Y" name="OSD2_MESSAGE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GSPEED_EN" name="OSD2_GSPEED_EN" documentation="Displays GPS ground speed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GSPEED_X" name="OSD2_GSPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GSPEED_Y" name="OSD2_GSPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HORIZON_EN" name="OSD2_HORIZON_EN" documentation="Displays artificial horizon">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HORIZON_X" name="OSD2_HORIZON_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HORIZON_Y" name="OSD2_HORIZON_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HOME_EN" name="OSD2_HOME_EN" documentation="Displays distance and relative direction to HOME">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HOME_X" name="OSD2_HOME_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HOME_Y" name="OSD2_HOME_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HEADING_EN" name="OSD2_HEADING_EN" documentation="Displays heading">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HEADING_X" name="OSD2_HEADING_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HEADING_Y" name="OSD2_HEADING_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="THROTTLE_EN" name="OSD2_THROTTLE_EN" documentation="Displays actual throttle percentage being sent to motor(s)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="THROTTLE_X" name="OSD2_THROTTLE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="THROTTLE_Y" name="OSD2_THROTTLE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="COMPASS_EN" name="OSD2_COMPASS_EN" documentation="Enables display of compass rose">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="COMPASS_X" name="OSD2_COMPASS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="COMPASS_Y" name="OSD2_COMPASS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="WIND_EN" name="OSD2_WIND_EN" documentation="Displays wind speed and relative direction">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="WIND_X" name="OSD2_WIND_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="WIND_Y" name="OSD2_WIND_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPEED_EN" name="OSD2_ASPEED_EN" documentation="Displays airspeed value being used by TECS (fused value)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ASPEED_X" name="OSD2_ASPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ASPEED_Y" name="OSD2_ASPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="VSPEED_EN" name="OSD2_VSPEED_EN" documentation="Displays climb rate">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="VSPEED_X" name="OSD2_VSPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="VSPEED_Y" name="OSD2_VSPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHTEMP_EN" name="OSD2_BLHTEMP_EN" documentation="Displays first esc's temp">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHTEMP_X" name="OSD2_BLHTEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHTEMP_Y" name="OSD2_BLHTEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHRPM_EN" name="OSD2_BLHRPM_EN" documentation="Displays first esc's rpm">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHRPM_X" name="OSD2_BLHRPM_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHRPM_Y" name="OSD2_BLHRPM_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHAMPS_EN" name="OSD2_BLHAMPS_EN" documentation="Displays first esc's current">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHAMPS_X" name="OSD2_BLHAMPS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHAMPS_Y" name="OSD2_BLHAMPS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GPSLAT_EN" name="OSD2_GPSLAT_EN" documentation="Displays GPS latitude">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GPSLAT_X" name="OSD2_GPSLAT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GPSLAT_Y" name="OSD2_GPSLAT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GPSLONG_EN" name="OSD2_GPSLONG_EN" documentation="Displays GPS longitude">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GPSLONG_X" name="OSD2_GPSLONG_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GPSLONG_Y" name="OSD2_GPSLONG_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ROLL_EN" name="OSD2_ROLL_EN" documentation="Displays degrees of roll from level">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ROLL_X" name="OSD2_ROLL_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ROLL_Y" name="OSD2_ROLL_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="PITCH_EN" name="OSD2_PITCH_EN" documentation="Displays degrees of pitch from level">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="PITCH_X" name="OSD2_PITCH_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="PITCH_Y" name="OSD2_PITCH_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="TEMP_EN" name="OSD2_TEMP_EN" documentation="Displays temperature reported by primary barometer">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="TEMP_X" name="OSD2_TEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="TEMP_Y" name="OSD2_TEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HDOP_EN" name="OSD2_HDOP_EN" documentation="Displays Horizontal Dilution Of Position">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HDOP_X" name="OSD2_HDOP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HDOP_Y" name="OSD2_HDOP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="WAYPOINT_EN" name="OSD2_WAYPOINT_EN" documentation="Displays bearing and distance to next waypoint">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="WAYPOINT_X" name="OSD2_WAYPOINT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="WAYPOINT_Y" name="OSD2_WAYPOINT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="XTRACK_EN" name="OSD2_XTRACK_EN" documentation="Displays crosstrack error">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="XTRACK_X" name="OSD2_XTRACK_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="XTRACK_Y" name="OSD2_XTRACK_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="DIST_EN" name="OSD2_DIST_EN" documentation="Displays total distance flown">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="DIST_X" name="OSD2_DIST_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="DIST_Y" name="OSD2_DIST_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="STATS_EN" name="OSD2_STATS_EN" documentation="Displays flight stats">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="STATS_X" name="OSD2_STATS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="STATS_Y" name="OSD2_STATS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="FLTIME_EN" name="OSD2_FLTIME_EN" documentation="Displays total flight time">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="FLTIME_X" name="OSD2_FLTIME_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="FLTIME_Y" name="OSD2_FLTIME_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CLIMBEFF_EN" name="OSD2_CLIMBEFF_EN" documentation="Displays climb efficiency (climb rate/current)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CLIMBEFF_X" name="OSD2_CLIMBEFF_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CLIMBEFF_Y" name="OSD2_CLIMBEFF_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="EFF_EN" name="OSD2_EFF_EN" documentation="Displays flight efficiency (mAh/km or /mi)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="EFF_X" name="OSD2_EFF_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="EFF_Y" name="OSD2_EFF_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BTEMP_EN" name="OSD2_BTEMP_EN" documentation="Displays temperature reported by secondary barometer">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BTEMP_X" name="OSD2_BTEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BTEMP_Y" name="OSD2_BTEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ATEMP_EN" name="OSD2_ATEMP_EN" documentation="Displays temperature reported by primary airspeed sensor">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ATEMP_X" name="OSD2_ATEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ATEMP_Y" name="OSD2_ATEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BAT2VLT_EN" name="OSD2_BAT2VLT_EN" documentation="Displays battery2 voltage">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BAT2VLT_X" name="OSD2_BAT2VLT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BAT2VLT_Y" name="OSD2_BAT2VLT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BAT2USED_EN" name="OSD2_BAT2USED_EN" documentation="Displays secondary battery mAh consumed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BAT2USED_X" name="OSD2_BAT2USED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BAT2USED_Y" name="OSD2_BAT2USED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPD2_EN" name="OSD2_ASPD2_EN" documentation="Displays airspeed reported directly from secondary airspeed sensor">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ASPD2_X" name="OSD2_ASPD2_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ASPD2_Y" name="OSD2_ASPD2_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPD1_Y" name="OSD2_ASPD1_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CLK_EN" name="OSD2_CLK_EN" documentation="Displays a clock panel based on AP_RTC local time">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CLK_X" name="OSD2_CLK_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CLK_Y" name="OSD2_CLK_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
</parameters>
<parameters name="OSD3_">
<param humanName="Enable screen" name="OSD3_ENABLE" documentation="Enable this screen" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Transmitter switch screen minimum pwm" name="OSD3_CHAN_MIN" documentation="This sets the PWM lower limit for this screen" user="Standard">
<field name="Range">900 2100</field>
</param>
<param humanName="Transmitter switch screen maximum pwm" name="OSD3_CHAN_MAX" documentation="This sets the PWM upper limit for this screen" user="Standard">
<field name="Range">900 2100</field>
</param>
<param humanName="ALTITUDE_EN" name="OSD3_ALTITUDE_EN" documentation="Enables display of altitude AGL">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ALTITUDE_X" name="OSD3_ALTITUDE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ALTITUDE_Y" name="OSD3_ALTITUDE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BATVOLT_EN" name="OSD3_BATVOLT_EN" documentation="Displays main battery voltage">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BATVOLT_X" name="OSD3_BATVOLT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BATVOLT_Y" name="OSD3_BATVOLT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="RSSI_EN" name="OSD3_RSSI_EN" documentation="Displays RC signal strength">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="RSSI_X" name="OSD3_RSSI_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="RSSI_Y" name="OSD3_RSSI_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CURRENT_EN" name="OSD3_CURRENT_EN" documentation="Displays main battery current">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CURRENT_X" name="OSD3_CURRENT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CURRENT_Y" name="OSD3_CURRENT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BATUSED_EN" name="OSD3_BATUSED_EN" documentation="Displays primary battery mAh consumed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BATUSED_X" name="OSD3_BATUSED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BATUSED_Y" name="OSD3_BATUSED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="SATS_EN" name="OSD3_SATS_EN" documentation="Displays number of acquired sattelites">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="SATS_X" name="OSD3_SATS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="SATS_Y" name="OSD3_SATS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="FLTMODE_EN" name="OSD3_FLTMODE_EN" documentation="Displays flight mode">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="FLTMODE_X" name="OSD3_FLTMODE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="FLTMODE_Y" name="OSD3_FLTMODE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="MESSAGE_EN" name="OSD3_MESSAGE_EN" documentation="Displays Mavlink messages">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="MESSAGE_X" name="OSD3_MESSAGE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="MESSAGE_Y" name="OSD3_MESSAGE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GSPEED_EN" name="OSD3_GSPEED_EN" documentation="Displays GPS ground speed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GSPEED_X" name="OSD3_GSPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GSPEED_Y" name="OSD3_GSPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HORIZON_EN" name="OSD3_HORIZON_EN" documentation="Displays artificial horizon">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HORIZON_X" name="OSD3_HORIZON_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HORIZON_Y" name="OSD3_HORIZON_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HOME_EN" name="OSD3_HOME_EN" documentation="Displays distance and relative direction to HOME">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HOME_X" name="OSD3_HOME_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HOME_Y" name="OSD3_HOME_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HEADING_EN" name="OSD3_HEADING_EN" documentation="Displays heading">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HEADING_X" name="OSD3_HEADING_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HEADING_Y" name="OSD3_HEADING_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="THROTTLE_EN" name="OSD3_THROTTLE_EN" documentation="Displays actual throttle percentage being sent to motor(s)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="THROTTLE_X" name="OSD3_THROTTLE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="THROTTLE_Y" name="OSD3_THROTTLE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="COMPASS_EN" name="OSD3_COMPASS_EN" documentation="Enables display of compass rose">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="COMPASS_X" name="OSD3_COMPASS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="COMPASS_Y" name="OSD3_COMPASS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="WIND_EN" name="OSD3_WIND_EN" documentation="Displays wind speed and relative direction">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="WIND_X" name="OSD3_WIND_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="WIND_Y" name="OSD3_WIND_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPEED_EN" name="OSD3_ASPEED_EN" documentation="Displays airspeed value being used by TECS (fused value)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ASPEED_X" name="OSD3_ASPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ASPEED_Y" name="OSD3_ASPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="VSPEED_EN" name="OSD3_VSPEED_EN" documentation="Displays climb rate">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="VSPEED_X" name="OSD3_VSPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="VSPEED_Y" name="OSD3_VSPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHTEMP_EN" name="OSD3_BLHTEMP_EN" documentation="Displays first esc's temp">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHTEMP_X" name="OSD3_BLHTEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHTEMP_Y" name="OSD3_BLHTEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHRPM_EN" name="OSD3_BLHRPM_EN" documentation="Displays first esc's rpm">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHRPM_X" name="OSD3_BLHRPM_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHRPM_Y" name="OSD3_BLHRPM_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHAMPS_EN" name="OSD3_BLHAMPS_EN" documentation="Displays first esc's current">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHAMPS_X" name="OSD3_BLHAMPS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHAMPS_Y" name="OSD3_BLHAMPS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GPSLAT_EN" name="OSD3_GPSLAT_EN" documentation="Displays GPS latitude">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GPSLAT_X" name="OSD3_GPSLAT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GPSLAT_Y" name="OSD3_GPSLAT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GPSLONG_EN" name="OSD3_GPSLONG_EN" documentation="Displays GPS longitude">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GPSLONG_X" name="OSD3_GPSLONG_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GPSLONG_Y" name="OSD3_GPSLONG_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ROLL_EN" name="OSD3_ROLL_EN" documentation="Displays degrees of roll from level">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ROLL_X" name="OSD3_ROLL_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ROLL_Y" name="OSD3_ROLL_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="PITCH_EN" name="OSD3_PITCH_EN" documentation="Displays degrees of pitch from level">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="PITCH_X" name="OSD3_PITCH_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="PITCH_Y" name="OSD3_PITCH_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="TEMP_EN" name="OSD3_TEMP_EN" documentation="Displays temperature reported by primary barometer">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="TEMP_X" name="OSD3_TEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="TEMP_Y" name="OSD3_TEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HDOP_EN" name="OSD3_HDOP_EN" documentation="Displays Horizontal Dilution Of Position">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HDOP_X" name="OSD3_HDOP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HDOP_Y" name="OSD3_HDOP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="WAYPOINT_EN" name="OSD3_WAYPOINT_EN" documentation="Displays bearing and distance to next waypoint">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="WAYPOINT_X" name="OSD3_WAYPOINT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="WAYPOINT_Y" name="OSD3_WAYPOINT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="XTRACK_EN" name="OSD3_XTRACK_EN" documentation="Displays crosstrack error">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="XTRACK_X" name="OSD3_XTRACK_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="XTRACK_Y" name="OSD3_XTRACK_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="DIST_EN" name="OSD3_DIST_EN" documentation="Displays total distance flown">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="DIST_X" name="OSD3_DIST_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="DIST_Y" name="OSD3_DIST_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="STATS_EN" name="OSD3_STATS_EN" documentation="Displays flight stats">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="STATS_X" name="OSD3_STATS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="STATS_Y" name="OSD3_STATS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="FLTIME_EN" name="OSD3_FLTIME_EN" documentation="Displays total flight time">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="FLTIME_X" name="OSD3_FLTIME_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="FLTIME_Y" name="OSD3_FLTIME_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CLIMBEFF_EN" name="OSD3_CLIMBEFF_EN" documentation="Displays climb efficiency (climb rate/current)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CLIMBEFF_X" name="OSD3_CLIMBEFF_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CLIMBEFF_Y" name="OSD3_CLIMBEFF_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="EFF_EN" name="OSD3_EFF_EN" documentation="Displays flight efficiency (mAh/km or /mi)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="EFF_X" name="OSD3_EFF_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="EFF_Y" name="OSD3_EFF_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BTEMP_EN" name="OSD3_BTEMP_EN" documentation="Displays temperature reported by secondary barometer">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BTEMP_X" name="OSD3_BTEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BTEMP_Y" name="OSD3_BTEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ATEMP_EN" name="OSD3_ATEMP_EN" documentation="Displays temperature reported by primary airspeed sensor">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ATEMP_X" name="OSD3_ATEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ATEMP_Y" name="OSD3_ATEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BAT2VLT_EN" name="OSD3_BAT2VLT_EN" documentation="Displays battery2 voltage">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BAT2VLT_X" name="OSD3_BAT2VLT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BAT2VLT_Y" name="OSD3_BAT2VLT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BAT2USED_EN" name="OSD3_BAT2USED_EN" documentation="Displays secondary battery mAh consumed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BAT2USED_X" name="OSD3_BAT2USED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BAT2USED_Y" name="OSD3_BAT2USED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPD2_EN" name="OSD3_ASPD2_EN" documentation="Displays airspeed reported directly from secondary airspeed sensor">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ASPD2_X" name="OSD3_ASPD2_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ASPD2_Y" name="OSD3_ASPD2_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPD1_Y" name="OSD3_ASPD1_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CLK_EN" name="OSD3_CLK_EN" documentation="Displays a clock panel based on AP_RTC local time">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CLK_X" name="OSD3_CLK_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CLK_Y" name="OSD3_CLK_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
</parameters>
<parameters name="OSD4_">
<param humanName="Enable screen" name="OSD4_ENABLE" documentation="Enable this screen" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Transmitter switch screen minimum pwm" name="OSD4_CHAN_MIN" documentation="This sets the PWM lower limit for this screen" user="Standard">
<field name="Range">900 2100</field>
</param>
<param humanName="Transmitter switch screen maximum pwm" name="OSD4_CHAN_MAX" documentation="This sets the PWM upper limit for this screen" user="Standard">
<field name="Range">900 2100</field>
</param>
<param humanName="ALTITUDE_EN" name="OSD4_ALTITUDE_EN" documentation="Enables display of altitude AGL">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ALTITUDE_X" name="OSD4_ALTITUDE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ALTITUDE_Y" name="OSD4_ALTITUDE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BATVOLT_EN" name="OSD4_BATVOLT_EN" documentation="Displays main battery voltage">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BATVOLT_X" name="OSD4_BATVOLT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BATVOLT_Y" name="OSD4_BATVOLT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="RSSI_EN" name="OSD4_RSSI_EN" documentation="Displays RC signal strength">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="RSSI_X" name="OSD4_RSSI_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="RSSI_Y" name="OSD4_RSSI_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CURRENT_EN" name="OSD4_CURRENT_EN" documentation="Displays main battery current">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CURRENT_X" name="OSD4_CURRENT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CURRENT_Y" name="OSD4_CURRENT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BATUSED_EN" name="OSD4_BATUSED_EN" documentation="Displays primary battery mAh consumed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BATUSED_X" name="OSD4_BATUSED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BATUSED_Y" name="OSD4_BATUSED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="SATS_EN" name="OSD4_SATS_EN" documentation="Displays number of acquired sattelites">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="SATS_X" name="OSD4_SATS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="SATS_Y" name="OSD4_SATS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="FLTMODE_EN" name="OSD4_FLTMODE_EN" documentation="Displays flight mode">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="FLTMODE_X" name="OSD4_FLTMODE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="FLTMODE_Y" name="OSD4_FLTMODE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="MESSAGE_EN" name="OSD4_MESSAGE_EN" documentation="Displays Mavlink messages">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="MESSAGE_X" name="OSD4_MESSAGE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="MESSAGE_Y" name="OSD4_MESSAGE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GSPEED_EN" name="OSD4_GSPEED_EN" documentation="Displays GPS ground speed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GSPEED_X" name="OSD4_GSPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GSPEED_Y" name="OSD4_GSPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HORIZON_EN" name="OSD4_HORIZON_EN" documentation="Displays artificial horizon">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HORIZON_X" name="OSD4_HORIZON_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HORIZON_Y" name="OSD4_HORIZON_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HOME_EN" name="OSD4_HOME_EN" documentation="Displays distance and relative direction to HOME">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HOME_X" name="OSD4_HOME_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HOME_Y" name="OSD4_HOME_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HEADING_EN" name="OSD4_HEADING_EN" documentation="Displays heading">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HEADING_X" name="OSD4_HEADING_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HEADING_Y" name="OSD4_HEADING_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="THROTTLE_EN" name="OSD4_THROTTLE_EN" documentation="Displays actual throttle percentage being sent to motor(s)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="THROTTLE_X" name="OSD4_THROTTLE_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="THROTTLE_Y" name="OSD4_THROTTLE_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="COMPASS_EN" name="OSD4_COMPASS_EN" documentation="Enables display of compass rose">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="COMPASS_X" name="OSD4_COMPASS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="COMPASS_Y" name="OSD4_COMPASS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="WIND_EN" name="OSD4_WIND_EN" documentation="Displays wind speed and relative direction">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="WIND_X" name="OSD4_WIND_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="WIND_Y" name="OSD4_WIND_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPEED_EN" name="OSD4_ASPEED_EN" documentation="Displays airspeed value being used by TECS (fused value)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ASPEED_X" name="OSD4_ASPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ASPEED_Y" name="OSD4_ASPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="VSPEED_EN" name="OSD4_VSPEED_EN" documentation="Displays climb rate">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="VSPEED_X" name="OSD4_VSPEED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="VSPEED_Y" name="OSD4_VSPEED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHTEMP_EN" name="OSD4_BLHTEMP_EN" documentation="Displays first esc's temp">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHTEMP_X" name="OSD4_BLHTEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHTEMP_Y" name="OSD4_BLHTEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHRPM_EN" name="OSD4_BLHRPM_EN" documentation="Displays first esc's rpm">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHRPM_X" name="OSD4_BLHRPM_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHRPM_Y" name="OSD4_BLHRPM_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BLHAMPS_EN" name="OSD4_BLHAMPS_EN" documentation="Displays first esc's current">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHAMPS_X" name="OSD4_BLHAMPS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BLHAMPS_Y" name="OSD4_BLHAMPS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GPSLAT_EN" name="OSD4_GPSLAT_EN" documentation="Displays GPS latitude">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GPSLAT_X" name="OSD4_GPSLAT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GPSLAT_Y" name="OSD4_GPSLAT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="GPSLONG_EN" name="OSD4_GPSLONG_EN" documentation="Displays GPS longitude">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="GPSLONG_X" name="OSD4_GPSLONG_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="GPSLONG_Y" name="OSD4_GPSLONG_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ROLL_EN" name="OSD4_ROLL_EN" documentation="Displays degrees of roll from level">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ROLL_X" name="OSD4_ROLL_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ROLL_Y" name="OSD4_ROLL_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="PITCH_EN" name="OSD4_PITCH_EN" documentation="Displays degrees of pitch from level">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="PITCH_X" name="OSD4_PITCH_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="PITCH_Y" name="OSD4_PITCH_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="TEMP_EN" name="OSD4_TEMP_EN" documentation="Displays temperature reported by primary barometer">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="TEMP_X" name="OSD4_TEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="TEMP_Y" name="OSD4_TEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="HDOP_EN" name="OSD4_HDOP_EN" documentation="Displays Horizontal Dilution Of Position">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="HDOP_X" name="OSD4_HDOP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="HDOP_Y" name="OSD4_HDOP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="WAYPOINT_EN" name="OSD4_WAYPOINT_EN" documentation="Displays bearing and distance to next waypoint">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="WAYPOINT_X" name="OSD4_WAYPOINT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="WAYPOINT_Y" name="OSD4_WAYPOINT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="XTRACK_EN" name="OSD4_XTRACK_EN" documentation="Displays crosstrack error">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="XTRACK_X" name="OSD4_XTRACK_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="XTRACK_Y" name="OSD4_XTRACK_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="DIST_EN" name="OSD4_DIST_EN" documentation="Displays total distance flown">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="DIST_X" name="OSD4_DIST_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="DIST_Y" name="OSD4_DIST_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="STATS_EN" name="OSD4_STATS_EN" documentation="Displays flight stats">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="STATS_X" name="OSD4_STATS_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="STATS_Y" name="OSD4_STATS_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="FLTIME_EN" name="OSD4_FLTIME_EN" documentation="Displays total flight time">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="FLTIME_X" name="OSD4_FLTIME_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="FLTIME_Y" name="OSD4_FLTIME_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CLIMBEFF_EN" name="OSD4_CLIMBEFF_EN" documentation="Displays climb efficiency (climb rate/current)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CLIMBEFF_X" name="OSD4_CLIMBEFF_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CLIMBEFF_Y" name="OSD4_CLIMBEFF_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="EFF_EN" name="OSD4_EFF_EN" documentation="Displays flight efficiency (mAh/km or /mi)">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="EFF_X" name="OSD4_EFF_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="EFF_Y" name="OSD4_EFF_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BTEMP_EN" name="OSD4_BTEMP_EN" documentation="Displays temperature reported by secondary barometer">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BTEMP_X" name="OSD4_BTEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BTEMP_Y" name="OSD4_BTEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ATEMP_EN" name="OSD4_ATEMP_EN" documentation="Displays temperature reported by primary airspeed sensor">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ATEMP_X" name="OSD4_ATEMP_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ATEMP_Y" name="OSD4_ATEMP_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BAT2VLT_EN" name="OSD4_BAT2VLT_EN" documentation="Displays battery2 voltage">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BAT2VLT_X" name="OSD4_BAT2VLT_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BAT2VLT_Y" name="OSD4_BAT2VLT_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="BAT2USED_EN" name="OSD4_BAT2USED_EN" documentation="Displays secondary battery mAh consumed">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BAT2USED_X" name="OSD4_BAT2USED_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="BAT2USED_Y" name="OSD4_BAT2USED_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPD2_EN" name="OSD4_ASPD2_EN" documentation="Displays airspeed reported directly from secondary airspeed sensor">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ASPD2_X" name="OSD4_ASPD2_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="ASPD2_Y" name="OSD4_ASPD2_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="ASPD1_Y" name="OSD4_ASPD1_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
<param humanName="CLK_EN" name="OSD4_CLK_EN" documentation="Displays a clock panel based on AP_RTC local time">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="CLK_X" name="OSD4_CLK_X" documentation="Horizontal position on screen">
<field name="Range">0 29</field>
</param>
<param humanName="CLK_Y" name="OSD4_CLK_Y" documentation="Vertical position on screen">
<field name="Range">0 15</field>
</param>
</parameters>
<parameters name="PTCH2SRV_">
<param humanName="Pitch Time Constant" name="PTCH2SRV_TCONST" documentation="Time constant in seconds from demanded to achieved pitch angle. Most models respond well to 0.5. May be reduced for faster responses, but setting lower than a model can achieve will not help." user="Advanced">
<field name="Range">0.4 1.0</field>
<field name="Increment">0.1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Proportional Gain" name="PTCH2SRV_P" documentation="Proportional gain from pitch angle demands to elevator. Higher values allow more servo response but can cause oscillations. Automatically set and adjusted by AUTOTUNE mode." user="User">
<field name="Range">0.1 3.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Damping Gain" name="PTCH2SRV_D" documentation="Damping gain from pitch acceleration to elevator. Higher values reduce pitching in turbulence, but can cause oscillations. Automatically set and adjusted by AUTOTUNE mode." user="User">
<field name="Range">0 0.2</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Integrator Gain" name="PTCH2SRV_I" documentation='Integrator gain from long-term pitch angle offsets to elevator. Higher values "trim" out offsets faster but can cause oscillations. Automatically set and adjusted by AUTOTUNE mode.' user="User">
<field name="Range">0 0.5</field>
<field name="Increment">0.05</field>
</param>
<param humanName="Pitch up max rate" name="PTCH2SRV_RMAX_UP" documentation="Maximum pitch up rate that the pitch controller demands (degrees/sec) in ACRO mode." user="Advanced">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="Pitch down max rate" name="PTCH2SRV_RMAX_DN" documentation="This sets the maximum nose down pitch rate that the controller will demand (degrees/sec). Setting it to zero disables the limit." user="Advanced">
<field name="Range">0 100</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="Roll compensation" name="PTCH2SRV_RLL" documentation="Gain added to pitch to keep aircraft from descending or ascending in turns. Increase in increments of 0.05 to reduce altitude loss. Decrease for altitude gain." user="User">
<field name="Range">0.7 1.5</field>
<field name="Increment">0.05</field>
</param>
<param humanName="Integrator limit" name="PTCH2SRV_IMAX" documentation="Limit of pitch integrator gain in centi-degrees of servo travel. Servos are assumed to have +/- 4500 centi-degrees of travel, so a value of 3000 allows trim of up to 2/3 of servo travel range." user="Advanced">
<field name="Range">0 4500</field>
<field name="Increment">1</field>
</param>
<param humanName="Feed forward Gain" name="PTCH2SRV_FF" documentation="Gain from demanded rate to elevator output." user="User">
<field name="Range">0.1 4.0</field>
<field name="Increment">0.1</field>
</param>
</parameters>
<parameters name="Q_">
<param humanName="Enable QuadPlane" name="Q_ENABLE" documentation="This enables QuadPlane functionality, assuming multicopter motors start on output 5. If this is set to 2 then when starting AUTO mode it will initially be in VTOL AUTO mode." user="Standard">
<values>
<value code="0">Disable</value>
<value code="1">Enable</value>
<value code="2">Enable VTOL AUTO</value>
</values>
</param>
<param humanName="Angle Max" name="Q_ANGLE_MAX" documentation="Maximum lean angle in all VTOL flight modes" user="Advanced">
<field name="Range">1000 8000</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Transition time" name="Q_TRANSITION_MS" documentation="Transition time in milliseconds after minimum airspeed is reached" user="Advanced">
<field name="Range">0 30000</field>
<field name="Units">ms</field>
<field name="UnitText">milliseconds</field>
</param>
<param humanName="Pilot maximum vertical speed" name="Q_VELZ_MAX" documentation="The maximum vertical velocity the pilot may request in cm/s" user="Standard">
<field name="Range">50 500</field>
<field name="Increment">10</field>
<field name="Units">cm/s</field>
<field name="UnitText">centimeters per second</field>
</param>
<param humanName="Pilot vertical acceleration" name="Q_ACCEL_Z" documentation="The vertical acceleration used when pilot is controlling the altitude" user="Standard">
<field name="Range">50 500</field>
<field name="Increment">10</field>
<field name="Units">cm/s/s</field>
<field name="UnitText">centimeters per square second</field>
</param>
<param humanName="RC output speed in Hz" name="Q_RC_SPEED" documentation="This is the PWM refresh rate in Hz for QuadPlane quad motors" user="Standard">
<field name="Range">50 500</field>
<field name="Increment">10</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Minimum PWM output" name="Q_THR_MIN_PWM" documentation="This is the minimum PWM output for the quad motors" user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM output" name="Q_THR_MAX_PWM" documentation="This is the maximum PWM output for the quad motors" user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Quadplane assistance speed" name="Q_ASSIST_SPEED" documentation="This is the speed below which the quad motors will provide stability and lift assistance in fixed wing modes. Zero means no assistance except during transition" user="Standard">
<field name="Range">0 100</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Maximum yaw rate" name="Q_YAW_RATE_MAX" documentation="This is the maximum yaw rate for pilot input on rudder stick in degrees/second" user="Standard">
<field name="Range">50 500</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="Land speed" name="Q_LAND_SPEED" documentation="The descent speed for the final stage of landing in cm/s" user="Standard">
<field name="Range">30 200</field>
<field name="Increment">10</field>
<field name="Units">cm/s</field>
<field name="UnitText">centimeters per second</field>
</param>
<param humanName="Land final altitude" name="Q_LAND_FINAL_ALT" documentation="The altitude at which we should switch to Q_LAND_SPEED descent rate" user="Standard">
<field name="Range">0.5 50</field>
<field name="Increment">0.1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Transition max pitch" name="Q_TRAN_PIT_MAX" documentation="Maximum pitch during transition to auto fixed wing flight" user="Standard">
<field name="Range">0 30</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Frame Class" name="Q_FRAME_CLASS" documentation="Controls major frame class for multicopter component" user="Standard">
<values>
<value code="0">Undefined</value>
<value code=" 1">Quad</value>
<value code=" 2">Hexa</value>
<value code=" 3">Octa</value>
<value code=" 4">OctaQuad</value>
<value code=" 5">Y6</value>
<value code=" 7">Tri</value>
<value code=" 10"> TailSitter</value>
</values>
</param>
<param humanName="Frame Type (+, X or V)" name="Q_FRAME_TYPE" documentation="Controls motor mixing for multicopter component" user="Standard">
<values>
<value code="0">Plus</value>
<value code=" 1">X</value>
<value code=" 2">V</value>
<value code=" 3">H</value>
<value code=" 4">V-Tail</value>
<value code=" 5">A-Tail</value>
<value code=" 10">Y6B</value>
<value code=" 11">Y6F</value>
<value code=" 12">BetaFlightX</value>
<value code=" 13">DJIX</value>
<value code=" 14">ClockwiseX</value>
<value code=" 15"> I</value>
</values>
</param>
<param humanName="Forward velocity hold gain" name="Q_VFWD_GAIN" documentation="Controls use of forward motor in vtol modes. If this is zero then the forward motor will not be used for position control in VTOL modes. A value of 0.05 is a good place to start if you want to use the forward motor for position control. No forward motor will be used in QSTABILIZE or QHOVER modes. Use QLOITER for position hold with the forward motor." user="Standard">
<field name="Range">0 0.5</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Weathervaning gain" name="Q_WVANE_GAIN" documentation="This controls the tendency to yaw to face into the wind. A value of 0.1 is to start with and will give a slow turn into the wind. Use a value of 0.4 for more rapid response. The weathervaning works by turning into the direction of roll." user="Standard">
<field name="Range">0 1</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Weathervaning min roll" name="Q_WVANE_MINROLL" documentation="This set the minimum roll in degrees before active weathervaning will start. This may need to be larger if your aircraft has bad roll trim." user="Standard">
<field name="Range">0 10</field>
<field name="Increment">0.1</field>
</param>
<param humanName="QRTL return altitude" name="Q_RTL_ALT" documentation="The altitude which QRTL mode heads to initially" user="Standard">
<field name="Range">1 200</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="VTOL RTL mode" name="Q_RTL_MODE" documentation="If this is set to 1 then an RTL will change to QRTL when within RTL_RADIUS meters of the RTL destination" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Tiltrotor mask" name="Q_TILT_MASK" documentation="This is a bitmask of motors that are tiltable in a tiltrotor (or tiltwing). The mask is in terms of the standard motor order for the frame type." user="Standard">
</param>
<param humanName="Tiltrotor upwards tilt rate" name="Q_TILT_RATE_UP" documentation="This is the maximum speed at which the motor angle will change for a tiltrotor when moving from forward flight to hover" user="Standard">
<field name="Range">10 300</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="Tiltrotor maximum VTOL angle" name="Q_TILT_MAX" documentation="This is the maximum angle of the tiltable motors at which multicopter control will be enabled. Beyond this angle the plane will fly solely as a fixed wing aircraft and the motors will tilt to their maximum angle at the TILT_RATE" user="Standard">
<field name="Range">20 80</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Enable VTOL in GUIDED mode" name="Q_GUIDED_MODE" documentation="This enables use of VTOL in guided mode. When enabled the aircraft will switch to VTOL flight when the guided destination is reached and hover at the destination." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="ESC Calibration" name="Q_ESC_CAL" documentation="This is used to calibrate the throttle range of the VTOL motors. Please read http://ardupilot.org/plane/docs/quadplane-esc-calibration.html before using. This parameter is automatically set back to 0 on every boot. This parameter only takes effect in QSTABILIZE mode. When set to 1 the output of all motors will come directly from the throttle stick when armed, and will be zero when disarmed. When set to 2 the output of all motors will be maximum when armed and zero when disarmed. Make sure you remove all properllers before using." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">ThrottleInput</value>
<value code="2">FullInput</value>
</values>
</param>
<param humanName="Forward velocity alt cutoff" name="Q_VFWD_ALT" documentation="Controls altitude to disable forward velocity assist when below this relative altitude. This is useful to keep the forward velocity propeller from hitting the ground. Rangefinder height data is incorporated when available." user="Standard">
<field name="Range">0 10</field>
<field name="Increment">0.25</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Cut IC engine on landing" name="Q_LAND_ICE_CUT" documentation="This controls stopping an internal combustion engine in the final landing stage of a VTOL. This is important for aircraft where the forward thrust engine may experience prop-strike if left running during landing. This requires the engine controls are enabled using the ICE_* parameters." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Quadplane assistance angle" name="Q_ASSIST_ANGLE" documentation="This is the angular error in attitude beyond which the quadplane VTOL motors will provide stability assistance. This will only be used if Q_ASSIST_SPEED is also non-zero. Assistance will be given if the attitude is outside the normal attitude limits by at least 5 degrees and the angular error in roll or pitch is greater than this angle for at least 1 second. Set to zero to disable angle assistance." user="Standard">
<field name="Range">0 90</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Tiltrotor type" name="Q_TILT_TYPE" documentation="This is the type of tiltrotor when TILT_MASK is non-zero. A continuous tiltrotor can tilt the rotors to any angle on demand. A binary tiltrotor assumes a retract style servo where the servo is either fully forward or fully up. In both cases the servo can't move faster than Q_TILT_RATE. A vectored yaw tiltrotor will use the tilt of the motors to control yaw in hover, Bicopter tiltrottor must use the tailsitter frame class (10)">
<values>
<value code="0">Continuous</value>
<value code="1">Binary</value>
<value code="2">VectoredYaw</value>
<value code="3">Bicopter</value>
</values>
</param>
<param humanName="Tailsitter transition angle" name="Q_TAILSIT_ANGLE" documentation="This is the angle at which tailsitter aircraft will change from VTOL control to fixed wing control.">
<field name="Range">5 80</field>
</param>
<param humanName="Tiltrotor downwards tilt rate" name="Q_TILT_RATE_DN" documentation="This is the maximum speed at which the motor angle will change for a tiltrotor when moving from hover to forward flight. When this is zero the Q_TILT_RATE_UP value is used." user="Standard">
<field name="Range">10 300</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="Tailsitter input type" name="Q_TAILSIT_INPUT" documentation="This controls whether stick input when hovering as a tailsitter follows the conventions for fixed wing hovering or multicopter hovering. When multicopter input is selected the roll stick will roll the aircraft in earth frame and yaw stick will yaw in earth frame. When using fixed wing input the roll and yaw sticks are swapped so that the roll stick controls earth-frame yaw and rudder controls earth-frame roll. When body-frame roll is selected, the yaw stick controls earth-frame yaw rate and the roll stick controls roll in the tailsitter's body frame.">
<values>
<value code="0">MultiCopterInput</value>
<value code="1">FixedWingInput</value>
<value code="2">BodyFrameRoll_M</value>
<value code="3">BodyFrameRoll_P</value>
</values>
</param>
<param humanName="Tailsitter input mask" name="Q_TAILSIT_MASK" documentation="This controls what channels have full manual control when hovering as a tailsitter and the Q_TAILSIT_MASKCH channel in high. This can be used to teach yourself to prop-hang a 3D plane by learning one or more channels at a time.">
<field name="Bitmask">0:Aileron,1:Elevator,2:Throttle,3:Rudder</field>
</param>
<param humanName="Tailsitter input mask channel" name="Q_TAILSIT_MASKCH" documentation="This controls what input channel will activate the Q_TAILSIT_MASK mask. When this channel goes above 1700 then the pilot will have direct manual control of the output channels specified in Q_TAILSIT_MASK. Set to zero to disable.">
<values>
<value code="0">Disabled</value>
<value code="1">Channel1</value>
<value code="2">Channel2</value>
<value code="3">Channel3</value>
<value code="4">Channel4</value>
<value code="5">Channel5</value>
<value code="6">Channel6</value>
<value code="7">Channel7</value>
<value code="8">Channel8</value>
</values>
</param>
<param humanName="Tailsitter vector thrust gain in forward flight" name="Q_TAILSIT_VFGAIN" documentation="This controls the amount of vectored thrust control used in forward flight for a vectored tailsitter">
<field name="Range">0 1</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Tailsitter vector thrust gain in hover" name="Q_TAILSIT_VHGAIN" documentation="This controls the amount of vectored thrust control used in hover for a vectored tailsitter">
<field name="Range">0 1</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Tilt minimum angle for vectored yaw" name="Q_TILT_YAW_ANGLE" documentation="This is the angle of the tilt servos when in VTOL mode and at minimum output. This needs to be set for Q_TILT_TYPE=3 to enable vectored control for yaw of tricopter tilt quadplanes. This is also used to limit the forwards travel of bicopter tilts when in VTOL modes">
<field name="Range">0 30</field>
</param>
<param humanName="Tailsitter vector thrust gain power" name="Q_TAILSIT_VHPOW" documentation="This controls the amount of extra pitch given to the vectored control when at high pitch errors">
<field name="Range">0 4</field>
<field name="Increment">0.1</field>
</param>
<param humanName="MAVLink type identifier" name="Q_MAV_TYPE" documentation="This controls the mavlink type given in HEARTBEAT messages. For some GCS types a particular setting will be needed for correct operation.">
<values>
<value code="0">AUTO</value>
<value code="1">FIXED_WING</value>
<value code="2">QUADROTOR</value>
<value code="3">COAXIAL</value>
<value code="4">HELICOPTER</value>
<value code="7">AIRSHIP</value>
<value code="8">FREE_BALLOON</value>
<value code="9">ROCKET</value>
<value code="10">GROUND_ROVER</value>
<value code="11">SURFACE_BOAT</value>
<value code="12">SUBMARINE</value>
<value code="16">FLAPPING_WING</value>
<value code="17">KITE</value>
<value code="19">VTOL_DUOROTOR</value>
<value code="20">VTOL_QUADROTOR</value>
<value code="21">VTOL_TILTROTOR</value>
</values>
</param>
<param humanName="quadplane options" name="Q_OPTIONS" documentation="This provides a set of additional control options for quadplanes. LevelTransition means that the wings should be held level to within LEVEL_ROLL_LIMIT degrees during transition to fixed wing flight, and the vehicle will not use the vertical lift motors to climb during the transition. If AllowFWTakeoff bit is not set then fixed wing takeoff on quadplanes will instead perform a VTOL takeoff. If AllowFWLand bit is not set then fixed wing land on quadplanes will instead perform a VTOL land. If respect takeoff frame is not set the vehicle will interpret all takeoff waypoints as an altitude above the corrent position. When Use QRTL is set it will replace QLAND with QRTL for failsafe actions when in VTOL modes.">
<field name="Bitmask">0:LevelTransition,1:AllowFWTakeoff,2:AllowFWLand,3:Respect takeoff frame types,4:Use a fixed wing approach for VTOL landings,5:Use QRTL instead of QLAND for failsafe when in VTOL modes.</field>
</param>
<param humanName="Transition deceleration" name="Q_TRANS_DECEL" documentation="This is deceleration rate that will be used in calculating the stopping distance when transitioning from fixed wing flight to multicopter flight." user="Standard">
<field name="Range">0.2 5</field>
<field name="Increment">0.1</field>
<field name="Units">m/s/s</field>
<field name="UnitText">meters per square second</field>
</param>
<param humanName="Maximum control throttle scaling value" name="Q_TAILSIT_THSCMX" documentation="Maximum value of throttle scaling for tailsitter velocity scaling, reduce this value to remove low thorottle D ossilaitons " user="Standard">
<field name="Range">1 5</field>
</param>
<param humanName="Quadplane AHRS trim pitch" name="Q_TRIM_PITCH" documentation="This sets the compensation for the pitch angle trim difference between forward and vertical flight pitch, NOTE! this is relative to forward flight trim not mounting locaiton. For tailsitters this is relative to a baseline of 90 degrees." user="Advanced">
<field name="Range">-10 +10</field>
<field name="Increment">0.1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Maximum Roll angle" name="Q_TAILSIT_RLL_MX" documentation="Maximum Allowed roll angle for tailsitters. If this is zero then Q_ANGLE_MAX is used." user="Standard">
<field name="Range">0 80</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Quadplane fixed wing landing approach radius" name="Q_FW_LND_APR_RAD" documentation="This provides the radius used, when using a fixed wing landing approach. If set to 0 then the WP_LOITER_RAD will be selected." user="Advanced">
<field name="Range">0 200</field>
<field name="Increment">5</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Quadplane transition failure time" name="Q_TRANS_FAIL" documentation="Maximum time allowed for forward transitions, exceeding this time will cancel the transition and the aircraft will immediately change to QLAND. 0 for no limit." user="Advanced">
<field name="Range">0 20</field>
<field name="Increment">1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Tailsiter mask" name="Q_TAILSIT_MOTMX" documentation="Bitmask of motors to remain active in forward flight for a 'copter' tailsitter. Non-zero indicates airframe is a tailsitter which pitches forward 90 degrees in forward flight modes." user="Standard">
<field name="Bitmask">0:Motor 1,1:Motor 2,2:Motor 3,3:Motor 4, 4:Motor 5,5:Motor 6,6:Motor 7,7:Motor 8</field>
</param>
<param humanName="Throttle expo strength" name="Q_THROTTLE_EXPO" documentation="Amount of curvature in throttle curve: 0 is linear, 1 is cubic" user="Advanced">
<field name="Range">0 1</field>
<field name="Increment">.1</field>
</param>
<param humanName="QACRO mode roll rate" name="Q_ACRO_RLL_RATE" documentation="The maximum roll rate at full stick deflection in QACRO mode" user="Standard">
<field name="Range">10 500</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="QACRO mode pitch rate" name="Q_ACRO_PIT_RATE" documentation="The maximum pitch rate at full stick deflection in QACRO mode" user="Standard">
<field name="Range">10 500</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="QACRO mode yaw rate" name="Q_ACRO_YAW_RATE" documentation="The maximum yaw rate at full stick deflection in QACRO mode" user="Standard">
<field name="Range">10 500</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="Takeoff time failure scalar" name="Q_TKOFF_FAIL_SCL" documentation="Scalar for how long past the expected takeoff time a takeoff should be considered as failed and the vehicle will switch to QLAND. If set to 0 there is no limit on takeoff time." user="Advanced">
<field name="Range">1.1 5.0</field>
<field name="Increment">5.1</field>
</param>
<param humanName="Takeoff airspeed limit" name="Q_TKOFF_ARSP_LIM" documentation="Airspeed limit during takeoff. If the airspeed exceeds this level the vehicle will switch to QLAND. This is useful for ensuring that you don't takeoff into excessively strong wind. If set to 0 there is no limit on airspeed during takeoff." user="Advanced">
<field name="Range">0 20</field>
<field name="Increment">1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Quadplane assistance altitude" name="Q_ASSIST_ALT" documentation="This is the altitude below which quadplane assistance will be triggered. This acts the same way as Q_ASSIST_ANGLE and Q_ASSIST_SPEED, but triggers if the aircraft drops below the given altitude while the VTOL motors are not running. A value of zero disables this feature. The altutude is calculated as being above ground level. The height above ground is given from a Lidar used if available and RNGFND_LANDING=1. Otherwise it comes from terrain data if TERRAIN_FOLLOW=1 and comes from height above home otherwise." user="Standard">
<field name="Range">0 120</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
</parameters>
<parameters name="Q_A_">
<param humanName="Yaw target slew rate" name="Q_A_SLEW_YAW" documentation="Maximum rate the yaw target can be updated in Loiter, RTL, Auto flight modes" user="Advanced">
<field name="Range">500 18000</field>
<field name="Increment">100</field>
<field name="Units">cdeg/s</field>
<field name="UnitText">centidegrees per second</field>
</param>
<param humanName="Acceleration Max for Yaw" name="Q_A_ACCEL_Y_MAX" documentation="Maximum acceleration in yaw axis" user="Advanced">
<field name="Range">0 72000</field>
<values>
<value code="0">Disabled</value>
<value code=" 9000">VerySlow</value>
<value code=" 18000">Slow</value>
<value code=" 36000">Medium</value>
<value code=" 54000">Fast</value>
</values>
<field name="Increment">1000</field>
<field name="Units">cdeg/s/s</field>
<field name="UnitText">centidegrees per square second</field>
</param>
<param humanName="Rate Feedforward Enable" name="Q_A_RATE_FF_ENAB" documentation="Controls whether body-frame rate feedfoward is enabled or disabled" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code=" 1">Enabled</value>
</values>
</param>
<param humanName="Acceleration Max for Roll" name="Q_A_ACCEL_R_MAX" documentation="Maximum acceleration in roll axis" user="Advanced">
<field name="Range">0 180000</field>
<values>
<value code="0">Disabled</value>
<value code=" 30000">VerySlow</value>
<value code=" 72000">Slow</value>
<value code=" 108000">Medium</value>
<value code=" 162000">Fast</value>
</values>
<field name="Increment">1000</field>
<field name="Units">cdeg/s/s</field>
<field name="UnitText">centidegrees per square second</field>
</param>
<param humanName="Acceleration Max for Pitch" name="Q_A_ACCEL_P_MAX" documentation="Maximum acceleration in pitch axis" user="Advanced">
<field name="Range">0 180000</field>
<values>
<value code="0">Disabled</value>
<value code=" 30000">VerySlow</value>
<value code=" 72000">Slow</value>
<value code=" 108000">Medium</value>
<value code=" 162000">Fast</value>
</values>
<field name="Increment">1000</field>
<field name="Units">cdeg/s/s</field>
<field name="UnitText">centidegrees per square second</field>
</param>
<param humanName="Angle Boost" name="Q_A_ANGLE_BOOST" documentation="Angle Boost increases output throttle as the vehicle leans to reduce loss of altitude" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code=" 1">Enabled</value>
</values>
</param>
<param humanName="Roll axis angle controller P gain" name="Q_A_ANG_RLL_P" documentation="Roll axis angle controller P gain.  Converts the error between the desired roll angle and actual angle to a desired roll rate" user="Standard">
<field name="Range">0.0 12.000</field>
</param>
<param humanName="Pitch axis angle controller P gain" name="Q_A_ANG_PIT_P" documentation="Pitch axis angle controller P gain.  Converts the error between the desired pitch angle and actual angle to a desired pitch rate" user="Standard">
<field name="Range">0.0 12.000</field>
</param>
<param humanName="Yaw axis angle controller P gain" name="Q_A_ANG_YAW_P" documentation="Yaw axis angle controller P gain.  Converts the error between the desired yaw angle and actual angle to a desired yaw rate" user="Standard">
<field name="Range">0.0 6.000</field>
</param>
<param humanName="Angle Limit (to maintain altitude) Time Constant" name="Q_A_ANG_LIM_TC" documentation="Angle Limit (to maintain altitude) Time Constant" user="Advanced">
<field name="Range">0.5 10.0</field>
</param>
<param humanName="Angular Velocity Max for Roll" name="Q_A_RATE_R_MAX" documentation="Maximum angular velocity in roll axis" user="Advanced">
<field name="Range">0 1080</field>
<values>
<value code="0">Disabled</value>
<value code=" 360">Slow</value>
<value code=" 720">Medium</value>
<value code=" 1080">Fast</value>
</values>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="Angular Velocity Max for Pitch" name="Q_A_RATE_P_MAX" documentation="Maximum angular velocity in pitch axis" user="Advanced">
<field name="Range">0 1080</field>
<values>
<value code="0">Disabled</value>
<value code=" 360">Slow</value>
<value code=" 720">Medium</value>
<value code=" 1080">Fast</value>
</values>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="Angular Velocity Max for Yaw" name="Q_A_RATE_Y_MAX" documentation="Maximum angular velocity in yaw axis" user="Advanced">
<field name="Range">0 1080</field>
<values>
<value code="0">Disabled</value>
<value code=" 360">Slow</value>
<value code=" 720">Medium</value>
<value code=" 1080">Fast</value>
</values>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="Attitude control input time constant" name="Q_A_INPUT_TC" documentation="Attitude control input time constant.  Low numbers lead to sharper response, higher numbers to softer response" user="Standard">
<field name="Range">0 1</field>
<field name="Values">0.5:Very Soft, 0.2:Soft, 0.15:Medium, 0.1:Crisp, 0.05:Very Crisp</field>
<field name="Increment">0.01</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Roll axis rate controller P gain" name="Q_A_RAT_RLL_P" documentation="Roll axis rate controller P gain.  Converts the difference between desired roll rate and actual roll rate into a motor speed output" user="Standard">
<field name="Range">0.01 0.5</field>
<field name="Increment">0.005</field>
</param>
<param humanName="Roll axis rate controller I gain" name="Q_A_RAT_RLL_I" documentation="Roll axis rate controller I gain.  Corrects long-term difference in desired roll rate vs actual roll rate" user="Standard">
<field name="Range">0.01 2.0</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Roll axis rate controller I gain maximum" name="Q_A_RAT_RLL_IMAX" documentation="Roll axis rate controller I gain maximum.  Constrains the maximum motor output that the I gain will output" user="Standard">
<field name="Range">0 1</field>
<field name="Increment">0.01</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Roll axis rate controller D gain" name="Q_A_RAT_RLL_D" documentation="Roll axis rate controller D gain.  Compensates for short-term change in desired roll rate vs actual roll rate" user="Standard">
<field name="Range">0.0 0.05</field>
<field name="Increment">0.001</field>
</param>
<param humanName="Roll axis rate controller feed forward" name="Q_A_RAT_RLL_FF" documentation="Roll axis rate controller feed forward" user="Standard">
<field name="Range">0 0.5</field>
<field name="Increment">0.001</field>
</param>
<param humanName="Roll axis rate controller target frequency in Hz" name="Q_A_RAT_RLL_FLTT" documentation="Roll axis rate controller target frequency in Hz" user="Standard">
<field name="Range">1 50</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Roll axis rate controller error frequency in Hz" name="Q_A_RAT_RLL_FLTE" documentation="Roll axis rate controller error frequency in Hz" user="Standard">
<field name="Range">1 100</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Roll axis rate controller derivative frequency in Hz" name="Q_A_RAT_RLL_FLTD" documentation="Roll axis rate controller derivative frequency in Hz" user="Standard">
<field name="Range">1 100</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Pitch axis rate controller P gain" name="Q_A_RAT_PIT_P" documentation="Pitch axis rate controller P gain.  Converts the difference between desired pitch rate and actual pitch rate into a motor speed output" user="Standard">
<field name="Range">0.01 0.50</field>
<field name="Increment">0.005</field>
</param>
<param humanName="Pitch axis rate controller I gain" name="Q_A_RAT_PIT_I" documentation="Pitch axis rate controller I gain.  Corrects long-term difference in desired pitch rate vs actual pitch rate" user="Standard">
<field name="Range">0.01 2.0</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Pitch axis rate controller I gain maximum" name="Q_A_RAT_PIT_IMAX" documentation="Pitch axis rate controller I gain maximum.  Constrains the maximum motor output that the I gain will output" user="Standard">
<field name="Range">0 1</field>
<field name="Increment">0.01</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Pitch axis rate controller D gain" name="Q_A_RAT_PIT_D" documentation="Pitch axis rate controller D gain.  Compensates for short-term change in desired pitch rate vs actual pitch rate" user="Standard">
<field name="Range">0.0 0.05</field>
<field name="Increment">0.001</field>
</param>
<param humanName="Pitch axis rate controller feed forward" name="Q_A_RAT_PIT_FF" documentation="Pitch axis rate controller feed forward" user="Standard">
<field name="Range">0 0.5</field>
<field name="Increment">0.001</field>
</param>
<param humanName="Pitch axis rate controller target frequency in Hz" name="Q_A_RAT_PIT_FLTT" documentation="Pitch axis rate controller target frequency in Hz" user="Standard">
<field name="Range">1 50</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Pitch axis rate controller error frequency in Hz" name="Q_A_RAT_PIT_FLTE" documentation="Pitch axis rate controller error frequency in Hz" user="Standard">
<field name="Range">1 100</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Pitch axis rate controller derivative frequency in Hz" name="Q_A_RAT_PIT_FLTD" documentation="Pitch axis rate controller derivative frequency in Hz" user="Standard">
<field name="Range">1 100</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Yaw axis rate controller P gain" name="Q_A_RAT_YAW_P" documentation="Yaw axis rate controller P gain.  Converts the difference between desired yaw rate and actual yaw rate into a motor speed output" user="Standard">
<field name="Range">0.10 2.50</field>
<field name="Increment">0.005</field>
</param>
<param humanName="Yaw axis rate controller I gain" name="Q_A_RAT_YAW_I" documentation="Yaw axis rate controller I gain.  Corrects long-term difference in desired yaw rate vs actual yaw rate" user="Standard">
<field name="Range">0.010 1.0</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Yaw axis rate controller I gain maximum" name="Q_A_RAT_YAW_IMAX" documentation="Yaw axis rate controller I gain maximum.  Constrains the maximum motor output that the I gain will output" user="Standard">
<field name="Range">0 1</field>
<field name="Increment">0.01</field>
<field name="Units">%</field>
<field name="UnitText">percent</field>
</param>
<param humanName="Yaw axis rate controller D gain" name="Q_A_RAT_YAW_D" documentation="Yaw axis rate controller D gain.  Compensates for short-term change in desired yaw rate vs actual yaw rate" user="Standard">
<field name="Range">0.000 0.02</field>
<field name="Increment">0.001</field>
</param>
<param humanName="Yaw axis rate controller feed forward" name="Q_A_RAT_YAW_FF" documentation="Yaw axis rate controller feed forward" user="Standard">
<field name="Range">0 0.5</field>
<field name="Increment">0.001</field>
</param>
<param humanName="Yaw axis rate controller target frequency in Hz" name="Q_A_RAT_YAW_FLTT" documentation="Yaw axis rate controller target frequency in Hz" user="Standard">
<field name="Range">1 5</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Yaw axis rate controller error frequency in Hz" name="Q_A_RAT_YAW_FLTE" documentation="Yaw axis rate controller error frequency in Hz" user="Standard">
<field name="Range">1 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Yaw axis rate controller derivative frequency in Hz" name="Q_A_RAT_YAW_FLTD" documentation="Yaw axis rate controller derivative frequency in Hz" user="Standard">
<field name="Range">1 20</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Throttle Mix Minimum" name="Q_A_THR_MIX_MIN" documentation="Throttle vs attitude control prioritisation used when landing (higher values mean we prioritise attitude control over throttle)" user="Advanced">
<field name="Range">0.1 0.25</field>
</param>
<param humanName="Throttle Mix Maximum" name="Q_A_THR_MIX_MAX" documentation="Throttle vs attitude control prioritisation used during active flight (higher values mean we prioritise attitude control over throttle)" user="Advanced">
<field name="Range">0.5 0.9</field>
</param>
<param humanName="Throttle Mix Manual" name="Q_A_THR_MIX_MAN" documentation="Throttle vs attitude control prioritisation used during manual flight (higher values mean we prioritise attitude control over throttle)" user="Advanced">
<field name="Range">0.1 0.9</field>
</param>
<param humanName="Roll axis rate controller input frequency in Hz" name="Q_A_RAT_RLL_FILT" documentation="Roll axis rate controller input frequency in Hz" user="Standard">
<field name="Range">1 100</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Pitch axis rate controller input frequency in Hz" name="Q_A_RAT_PIT_FILT" documentation="Pitch axis rate controller input frequency in Hz" user="Standard">
<field name="Range">1 100</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Yaw axis rate controller input frequency in Hz" name="Q_A_RAT_YAW_FILT" documentation="Yaw axis rate controller input frequency in Hz" user="Standard">
<field name="Range">1 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
</parameters>
<parameters name="Q_LOIT_">
<param humanName="Loiter Angle Max" name="Q_LOIT_ANG_MAX" documentation="Loiter maximum lean angle. Set to zero for 2/3 of PSC_ANGLE_MAX or ANGLE_MAX" user="Advanced">
<field name="Range">0 45</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Loiter Horizontal Maximum Speed" name="Q_LOIT_SPEED" documentation="Defines the maximum speed in cm/s which the aircraft will travel horizontally while in loiter mode" user="Standard">
<field name="Range">20 2000</field>
<field name="Increment">50</field>
<field name="Units">cm/s</field>
<field name="UnitText">centimeters per second</field>
</param>
<param humanName="Loiter maximum correction acceleration" name="Q_LOIT_ACC_MAX" documentation="Loiter maximum correction acceleration in cm/s/s.  Higher values cause the copter to correct position errors more aggressively." user="Advanced">
<field name="Range">100 981</field>
<field name="Increment">1</field>
<field name="Units">cm/s/s</field>
<field name="UnitText">centimeters per square second</field>
</param>
<param humanName="Loiter braking acceleration" name="Q_LOIT_BRK_ACCEL" documentation="Loiter braking acceleration in cm/s/s. Higher values stop the copter more quickly when the stick is centered." user="Advanced">
<field name="Range">25 250</field>
<field name="Increment">1</field>
<field name="Units">cm/s/s</field>
<field name="UnitText">centimeters per square second</field>
</param>
<param humanName="Loiter braking jerk" name="Q_LOIT_BRK_JERK" documentation="Loiter braking jerk in cm/s/s/s. Higher values will remove braking faster if the pilot moves the sticks during a braking maneuver." user="Advanced">
<field name="Range">500 5000</field>
<field name="Increment">1</field>
<field name="Units">cm/s/s/s</field>
<field name="UnitText">centimeters per cubic second</field>
</param>
<param humanName="Loiter brake start delay (in seconds)" name="Q_LOIT_BRK_DELAY" documentation="Loiter brake start delay (in seconds)" user="Advanced">
<field name="Range">0 2</field>
<field name="Increment">0.1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
</parameters>
<parameters name="Q_M_">
<param humanName="Matrix Yaw Min" name="Q_M_YAW_HEADROOM" documentation="Yaw control is given at least this pwm in microseconds range" user="Advanced">
<field name="Range">0 500</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Thrust Curve Expo" name="Q_M_THST_EXPO" documentation="Motor thrust curve exponent (from 0 for linear to 1.0 for second order curve)" user="Advanced">
<field name="Range">0.25 0.8</field>
</param>
<param humanName="Motor Spin maximum" name="Q_M_SPIN_MAX" documentation="Point at which the thrust saturates expressed as a number from 0 to 1 in the entire output range" user="Advanced">
<field name="Values">0.9:Low, 0.95:Default, 1.0:High</field>
</param>
<param humanName="Battery voltage compensation maximum voltage" name="Q_M_BAT_VOLT_MAX" documentation="Battery voltage compensation maximum voltage (voltage above this will have no additional scaling effect on thrust).  Recommend 4.4 * cell count, 0 = Disabled" user="Advanced">
<field name="Range">6 35</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Battery voltage compensation minimum voltage" name="Q_M_BAT_VOLT_MIN" documentation="Battery voltage compensation minimum voltage (voltage below this will have no additional scaling effect on thrust).  Recommend 3.5 * cell count, 0 = Disabled" user="Advanced">
<field name="Range">6 35</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Motor Current Max" name="Q_M_BAT_CURR_MAX" documentation="Maximum current over which maximum throttle is limited (0 = Disabled)" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">A</field>
<field name="UnitText">ampere</field>
</param>
<param humanName="Output PWM type" name="Q_M_PWM_TYPE" documentation="This selects the output PWM type, allowing for normal PWM continuous output, OneShot, brushed or DShot motor output" user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">OneShot</value>
<value code="2">OneShot125</value>
<value code="3">Brushed</value>
<value code="4">DShot150</value>
<value code="5">DShot300</value>
<value code="6">DShot600</value>
<value code="7">DShot1200</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="PWM output miniumum" name="Q_M_PWM_MIN" documentation="This sets the min PWM output value in microseconds that will ever be output to the motors, 0 = use input RC3_MIN" user="Advanced">
<field name="Range">0 2000</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="PWM output maximum" name="Q_M_PWM_MAX" documentation="This sets the max PWM value in microseconds that will ever be output to the motors, 0 = use input RC3_MAX" user="Advanced">
<field name="Range">0 2000</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Motor Spin minimum" name="Q_M_SPIN_MIN" documentation="Point at which the thrust starts expressed as a number from 0 to 1 in the entire output range.  Should be higher than MOT_SPIN_ARM." user="Advanced">
<field name="Values">0.0:Low, 0.15:Default, 0.3:High</field>
</param>
<param humanName="Motor Spin armed" name="Q_M_SPIN_ARM" documentation="Point at which the motors start to spin expressed as a number from 0 to 1 in the entire output range.  Should be lower than MOT_SPIN_MIN." user="Advanced">
<field name="Values">0.0:Low, 0.1:Default, 0.2:High</field>
</param>
<param humanName="Motor Current Max Time Constant" name="Q_M_BAT_CURR_TC" documentation="Time constant used to limit the maximum current" user="Advanced">
<field name="Range">0 10</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Thrust Hover Value" name="Q_M_THST_HOVER" documentation="Motor thrust needed to hover expressed as a number from 0 to 1" user="Advanced">
<field name="Range">0.2 0.8</field>
</param>
<param humanName="Hover Value Learning" name="Q_M_HOVER_LEARN" documentation="Enable/Disable automatic learning of hover throttle" user="Advanced">
<values>
<value code="0">Disabled</value>
</values>
</param>
<param humanName="Motor PWM output disabled when disarmed" name="Q_M_SAFE_DISARM" documentation="Disables motor PWM output when disarmed" user="Advanced">
<values>
<value code="0">PWM enabled while disarmed</value>
<value code=" 1">PWM disabled while disarmed</value>
</values>
</param>
<param humanName="Yaw Servo Max Lean Angle" name="Q_M_YAW_SV_ANGLE" documentation="Yaw servo's maximum lean angle" user="Standard">
<field name="Range">5 80</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Spool up time" name="Q_M_SPOOL_TIME" documentation="Time in seconds to spool up the motors from zero to min throttle. " user="Advanced">
<field name="Range">0 2</field>
<field name="Increment">0.1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Motor boost scale" name="Q_M_BOOST_SCALE" documentation="Booster motor output scaling factor vs main throttle.  The output to the BoostThrottle servo will be the main throttle times this scaling factor. A higher scaling factor will put more of the load on the booster motor. A value of 1 will set the BoostThrottle equal to the main throttle." user="Advanced">
<field name="Range">0 5</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Battery compensation index" name="Q_M_BAT_IDX" documentation="Which battery monitor should be used for doing compensation" user="Advanced">
<values>
<value code="0">First battery</value>
<value code=" 1">Second battery</value>
</values>
</param>
<param humanName="Output slew time for increasing throttle" name="Q_M_SLEW_UP_TIME" documentation="Time in seconds to slew output from zero to full.  For medium size copter such as a Solo, a value of 0.25 is a good starting point.  This is used to limit the rate at which output can change. Range is constrained between 0 and 0.5." user="Advanced">
<field name="Range">0 .5</field>
<field name="Increment">0.001</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Output slew time for decreasing throttle" name="Q_M_SLEW_DN_TIME" documentation="Time in seconds to slew output from full to zero.  For medium size copter such as a Solo, a value of 0.275 is a good starting point.  This is used to limit the rate at which output can change.  Range is constrained between 0 and 0.5." user="Advanced">
<field name="Range">0 .5</field>
<field name="Increment">0.001</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
</parameters>
<parameters name="Q_P">
<param humanName="XY Acceleration filter cutoff frequency" name="Q_P_ACC_XY_FILT" documentation="Lower values will slow the response of the navigation controller and reduce twitchiness" user="Advanced">
<field name="Range">0.5 5</field>
<field name="Increment">0.1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Position (vertical) controller P gain" name="Q_P_POSZ_P" documentation="Position (vertical) controller P gain.  Converts the difference between the desired altitude and actual altitude into a climb or descent rate which is passed to the throttle rate controller" user="Standard">
<field name="Range">1.000 3.000</field>
</param>
<param humanName="Velocity (vertical) controller P gain" name="Q_P_VELZ_P" documentation="Velocity (vertical) controller P gain.  Converts the difference between desired vertical speed and actual speed into a desired acceleration that is passed to the throttle acceleration controller" user="Standard">
<field name="Range">1.000 8.000</field>
</param>
<param humanName="Acceleration (vertical) controller P gain" name="Q_P_ACCZ_P" documentation="Acceleration (vertical) controller P gain.  Converts the difference between desired vertical acceleration and actual acceleration into a motor output" user="Standard">
<field name="Range">0.500 1.500</field>
<field name="Increment">0.05</field>
</param>
<param humanName="Acceleration (vertical) controller I gain" name="Q_P_ACCZ_I" documentation="Acceleration (vertical) controller I gain.  Corrects long-term difference in desired vertical acceleration and actual acceleration" user="Standard">
<field name="Range">0.000 3.000</field>
</param>
<param humanName="Acceleration (vertical) controller I gain maximum" name="Q_P_ACCZ_IMAX" documentation="Acceleration (vertical) controller I gain maximum.  Constrains the maximum pwm that the I term will generate" user="Standard">
<field name="Range">0 1000</field>
<field name="Units">d%</field>
<field name="UnitText">decipercent</field>
</param>
<param humanName="Acceleration (vertical) controller D gain" name="Q_P_ACCZ_D" documentation="Acceleration (vertical) controller D gain.  Compensates for short-term change in desired vertical acceleration vs actual acceleration" user="Standard">
<field name="Range">0.000 0.400</field>
</param>
<param humanName="Acceleration (vertical) controller filter" name="Q_P_ACCZ_FILT" documentation="Filter applied to acceleration to reduce noise.  Lower values reduce noise but add delay." user="Standard">
<field name="Range">1.000 100.000</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Position (horizonal) controller P gain" name="Q_P_POSXY_P" documentation="Position controller P gain.  Converts the distance (in the latitude direction) to the target location into a desired speed which is then passed to the loiter latitude rate controller" user="Standard">
<field name="Range">0.500 2.000</field>
</param>
<param humanName="Velocity (horizontal) P gain" name="Q_P_VELXY_P" documentation="Velocity (horizontal) P gain.  Converts the difference between desired velocity to a target acceleration" user="Advanced">
<field name="Range">0.1 6.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Velocity (horizontal) I gain" name="Q_P_VELXY_I" documentation="Velocity (horizontal) I gain.  Corrects long-term difference in desired velocity to a target acceleration" user="Advanced">
<field name="Range">0.02 1.00</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Velocity (horizontal) D gain" name="Q_P_VELXY_D" documentation="Velocity (horizontal) D gain.  Corrects short-term changes in velocity" user="Advanced">
<field name="Range">0.00 1.00</field>
<field name="Increment">0.001</field>
</param>
<param humanName="Velocity (horizontal) integrator maximum" name="Q_P_VELXY_IMAX" documentation="Velocity (horizontal) integrator maximum.  Constrains the target acceleration that the I gain will output" user="Advanced">
<field name="Range">0 4500</field>
<field name="Increment">10</field>
<field name="Units">cm/s/s</field>
<field name="UnitText">centimeters per square second</field>
</param>
<param humanName="Velocity (horizontal) input filter" name="Q_P_VELXY_FILT" documentation="Velocity (horizontal) input filter.  This filter (in hz) is applied to the input for P and I terms" user="Advanced">
<field name="Range">0 100</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Velocity (horizontal) input filter" name="Q_P_VELXY_D_FILT" documentation="Velocity (horizontal) input filter.  This filter (in hz) is applied to the input for P and I terms" user="Advanced">
<field name="Range">0 100</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Position Control Angle Max" name="Q_P_ANGLE_MAX" documentation="Maximum lean angle autopilot can request.  Set to zero to use ANGLE_MAX parameter value" user="Advanced">
<field name="Range">0 45</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
</parameters>
<parameters name="Q_WP_">
<param humanName="Waypoint Horizontal Speed Target" name="Q_WP_SPEED" documentation="Defines the speed in cm/s which the aircraft will attempt to maintain horizontally during a WP mission" user="Standard">
<field name="Range">20 2000</field>
<field name="Increment">50</field>
<field name="Units">cm/s</field>
<field name="UnitText">centimeters per second</field>
</param>
<param humanName="Waypoint Radius" name="Q_WP_RADIUS" documentation="Defines the distance from a waypoint, that when crossed indicates the wp has been hit." user="Standard">
<field name="Range">5 1000</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Waypoint Climb Speed Target" name="Q_WP_SPEED_UP" documentation="Defines the speed in cm/s which the aircraft will attempt to maintain while climbing during a WP mission" user="Standard">
<field name="Range">10 1000</field>
<field name="Increment">50</field>
<field name="Units">cm/s</field>
<field name="UnitText">centimeters per second</field>
</param>
<param humanName="Waypoint Descent Speed Target" name="Q_WP_SPEED_DN" documentation="Defines the speed in cm/s which the aircraft will attempt to maintain while descending during a WP mission" user="Standard">
<field name="Range">10 500</field>
<field name="Increment">10</field>
<field name="Units">cm/s</field>
<field name="UnitText">centimeters per second</field>
</param>
<param humanName="Waypoint Acceleration " name="Q_WP_ACCEL" documentation="Defines the horizontal acceleration in cm/s/s used during missions" user="Standard">
<field name="Range">50 500</field>
<field name="Increment">10</field>
<field name="Units">cm/s/s</field>
<field name="UnitText">centimeters per square second</field>
</param>
<param humanName="Waypoint Vertical Acceleration" name="Q_WP_ACCEL_Z" documentation="Defines the vertical acceleration in cm/s/s used during missions" user="Standard">
<field name="Range">50 500</field>
<field name="Increment">10</field>
<field name="Units">cm/s/s</field>
<field name="UnitText">centimeters per square second</field>
</param>
<param humanName="Waypoint missions use rangefinder for terrain following" name="Q_WP_RFND_USE" documentation="This controls if waypoint missions use rangefinder for terrain following" user="Advanced">
<values>
<value code="0">Disable</value>
<value code="1">Enable</value>
</values>
</param>
</parameters>
<parameters name="RALLY_">
<param humanName="Rally Total" name="RALLY_TOTAL" documentation="Number of rally points currently loaded" user="Advanced">
</param>
<param humanName="Rally Limit" name="RALLY_LIMIT_KM" documentation="Maximum distance to rally point. If the closest rally point is more than this number of kilometers from the current position and the home location is closer than any of the rally points from the current position then do RTL to home rather than to the closest rally point. This prevents a leftover rally point from a different airfield being used accidentally. If this is set to 0 then the closest rally point is always used." user="Advanced">
<field name="Increment">0.1</field>
<field name="Units">km</field>
<field name="UnitText">kilometers</field>
</param>
<param humanName="Rally Include Home" name="RALLY_INCL_HOME" documentation="Controls if Home is included as a Rally point (i.e. as a safe landing place) for RTL" user="Standard">
<values>
<value code="0">DoNotIncludeHome</value>
<value code="1">IncludeHome</value>
</values>
</param>
</parameters>
<parameters name="RC">
<param humanName="RC override timeout" name="RC_OVERRIDE_TIME" documentation="Timeout after which RC overrides will no longer be used, and RC input will resume, 0 will disable RC overrides, -1 will never timeout, and continue using overrides until they are disabled" user="Advanced">
<field name="Range">0.0 120.0</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="RC options" name="RC_OPTIONS" documentation="RC input options" user="Advanced">
<field name="Bitmask">0:Ignore RC Receiver, 1:Ignore MAVLink Overrides, 2:Ignore Receiver Failsafe</field>
</param>
</parameters>
<parameters name="RC10_">
<param humanName="RC min PWM" name="RC10_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC10_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC10_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC10_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC10_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC10_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC11_">
<param humanName="RC min PWM" name="RC11_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC11_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC11_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC11_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC11_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC11_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC12_">
<param humanName="RC min PWM" name="RC12_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC12_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC12_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC12_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC12_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC12_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC13_">
<param humanName="RC min PWM" name="RC13_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC13_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC13_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC13_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC13_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC13_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC14_">
<param humanName="RC min PWM" name="RC14_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC14_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC14_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC14_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC14_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC14_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC15_">
<param humanName="RC min PWM" name="RC15_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC15_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC15_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC15_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC15_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC15_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC16_">
<param humanName="RC min PWM" name="RC16_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC16_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC16_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC16_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC16_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC16_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC1_">
<param humanName="RC min PWM" name="RC1_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC1_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC1_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC1_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC1_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC1_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC2_">
<param humanName="RC min PWM" name="RC2_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC2_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC2_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC2_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC2_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC2_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC3_">
<param humanName="RC min PWM" name="RC3_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC3_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC3_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC3_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC3_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC3_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC4_">
<param humanName="RC min PWM" name="RC4_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC4_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC4_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC4_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC4_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC4_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC5_">
<param humanName="RC min PWM" name="RC5_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC5_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC5_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC5_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC5_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC5_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC6_">
<param humanName="RC min PWM" name="RC6_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC6_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC6_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC6_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC6_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC6_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC7_">
<param humanName="RC min PWM" name="RC7_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC7_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC7_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC7_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC7_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC7_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC8_">
<param humanName="RC min PWM" name="RC8_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC8_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC8_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC8_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC8_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC8_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RC9_">
<param humanName="RC min PWM" name="RC9_MIN" documentation="RC minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC trim PWM" name="RC9_TRIM" documentation="RC trim (neutral) PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC max PWM" name="RC9_MAX" documentation="RC maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Advanced">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC reversed" name="RC9_REVERSED" documentation="Reverse channel input. Set to 0 for normal operation. Set to 1 to reverse this input channel." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="RC dead-zone" name="RC9_DZ" documentation="PWM dead zone in microseconds around trim or bottom" user="Advanced">
<field name="Range">0 200</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="RC input option" name="RC9_OPTION" documentation="Function assigned to this RC channel" user="Standard">
<values>
<value code="0">Do Nothing</value>
<value code=" 4">ModeRTL</value>
<value code=" 9">Camera Trigger</value>
<value code=" 16">ModeAuto</value>
<value code=" 24">Auto Mission Reset</value>
<value code=" 28">Relay On/Off</value>
<value code=" 29">Landing Gear</value>
<value code=" 34">Relay2 On/Off</value>
<value code=" 30">Lost Plane Sound</value>
<value code=" 31">Motor Emergency Stop</value>
<value code=" 35">Relay3 On/Off</value>
<value code=" 36">Relay4 On/Off</value>
<value code=" 41">ArmDisarm</value>
<value code=" 43">InvertedFlight</value>
<value code=" 46">RC Override Enable</value>
<value code=" 51">ModeManual</value>
<value code=" 55">ModeGuided</value>
<value code=" 58">Clear Waypoints</value>
<value code=" 62">Compass Learn</value>
<value code=" 64">Reverse Throttle</value>
<value code=" 65">GPS Disable</value>
<value code=" 66">Relay5</value>
<value code=" 67">Relay6</value>
<value code=" 72">ModeCircle</value>
<value code=" 77">ModeTakeoff</value>
<value code=" 100">KillIMU1</value>
<value code=" 101">KillIMU2</value>
</values>
</param>
</parameters>
<parameters name="RCMAP_">
<param humanName="Roll channel" name="RCMAP_ROLL" documentation="Roll channel number. This is useful when you have a RC transmitter that can't change the channel order easily. Roll is normally on channel 1, but you can move it to any channel with this parameter.  Reboot is required for changes to take effect." user="Advanced">
<field name="Range">1 8</field>
<field name="Increment">1</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Pitch channel" name="RCMAP_PITCH" documentation="Pitch channel number. This is useful when you have a RC transmitter that can't change the channel order easily. Pitch is normally on channel 2, but you can move it to any channel with this parameter.  Reboot is required for changes to take effect." user="Advanced">
<field name="Range">1 8</field>
<field name="Increment">1</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Throttle channel" name="RCMAP_THROTTLE" documentation="Throttle channel number. This is useful when you have a RC transmitter that can't change the channel order easily. Throttle is normally on channel 3, but you can move it to any channel with this parameter. Warning APM 2.X: Changing the throttle channel could produce unexpected fail-safe results if connection between receiver and on-board PPM Encoder is lost. Disabling on-board PPM Encoder is recommended.  Reboot is required for changes to take effect." user="Advanced">
<field name="Range">1 8</field>
<field name="Increment">1</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Yaw channel" name="RCMAP_YAW" documentation="Yaw channel number. This is useful when you have a RC transmitter that can't change the channel order easily. Yaw (also known as rudder) is normally on channel 4, but you can move it to any channel with this parameter.  Reboot is required for changes to take effect." user="Advanced">
<field name="Range">1 8</field>
<field name="Increment">1</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Forward channel" name="RCMAP_FORWARD" documentation="Forward channel number. This is useful when you have a RC transmitter that can't change the channel order easily. Forward is normally on channel 5, but you can move it to any channel with this parameter. Reboot is required for changes to take effect." user="Advanced">
<field name="Range">1 8</field>
<field name="Values">1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8</field>
<field name="Increment">1</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Lateral channel" name="RCMAP_LATERAL" documentation="Lateral channel number. This is useful when you have a RC transmitter that can't change the channel order easily. Lateral is normally on channel 6, but you can move it to any channel with this parameter. Reboot is required for changes to take effect." user="Advanced">
<field name="Range">1 8</field>
<field name="Values">1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8</field>
<field name="Increment">1</field>
<field name="RebootRequired">True</field>
</param>
</parameters>
<parameters name="RELAY_">
<param humanName="First Relay Pin" name="RELAY_PIN" documentation="Digital pin number for first relay control. This is the pin used for camera control." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="49">BB Blue GP0 pin 4</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
<value code="57">BB Blue GP0 pin 3</value>
<value code="113">BB Blue GP0 pin 6</value>
<value code="116">BB Blue GP0 pin 5</value>
</values>
</param>
<param humanName="Second Relay Pin" name="RELAY_PIN2" documentation="Digital pin number for 2nd relay control." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="49">BB Blue GP0 pin 4</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
<value code="57">BB Blue GP0 pin 3</value>
<value code="113">BB Blue GP0 pin 6</value>
<value code="116">BB Blue GP0 pin 5</value>
</values>
</param>
<param humanName="Third Relay Pin" name="RELAY_PIN3" documentation="Digital pin number for 3rd relay control." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="49">BB Blue GP0 pin 4</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
<value code="57">BB Blue GP0 pin 3</value>
<value code="113">BB Blue GP0 pin 6</value>
<value code="116">BB Blue GP0 pin 5</value>
</values>
</param>
<param humanName="Fourth Relay Pin" name="RELAY_PIN4" documentation="Digital pin number for 4th relay control." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="49">BB Blue GP0 pin 4</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
<value code="57">BB Blue GP0 pin 3</value>
<value code="113">BB Blue GP0 pin 6</value>
<value code="116">BB Blue GP0 pin 5</value>
</values>
</param>
<param humanName="Default relay state" name="RELAY_DEFAULT" documentation="The state of the relay on boot." user="Standard">
<values>
<value code="0">Off</value>
<value code="1">On</value>
<value code="2">NoChange</value>
</values>
</param>
<param humanName="Fifth Relay Pin" name="RELAY_PIN5" documentation="Digital pin number for 5th relay control." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="49">BB Blue GP0 pin 4</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
<value code="57">BB Blue GP0 pin 3</value>
<value code="113">BB Blue GP0 pin 6</value>
<value code="116">BB Blue GP0 pin 5</value>
</values>
</param>
<param humanName="Sixth Relay Pin" name="RELAY_PIN6" documentation="Digital pin number for 6th relay control." user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="49">BB Blue GP0 pin 4</value>
<value code="50">AUXOUT1</value>
<value code="51">AUXOUT2</value>
<value code="52">AUXOUT3</value>
<value code="53">AUXOUT4</value>
<value code="54">AUXOUT5</value>
<value code="55">AUXOUT6</value>
<value code="57">BB Blue GP0 pin 3</value>
<value code="113">BB Blue GP0 pin 6</value>
<value code="116">BB Blue GP0 pin 5</value>
</values>
</param>
</parameters>
<parameters name="RLL2SRV_">
<param humanName="Roll Time Constant" name="RLL2SRV_TCONST" documentation="Time constant in seconds from demanded to achieved roll angle. Most models respond well to 0.5. May be reduced for faster responses, but setting lower than a model can achieve will not help." user="Advanced">
<field name="Range">0.4 1.0</field>
<field name="Increment">0.1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Proportional Gain" name="RLL2SRV_P" documentation="Proportional gain from roll angle demands to ailerons. Higher values allow more servo response but can cause oscillations. Automatically set and adjusted by AUTOTUNE mode." user="User">
<field name="Range">0.1 4.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Damping Gain" name="RLL2SRV_D" documentation="Damping gain from roll acceleration to ailerons. Higher values reduce rolling in turbulence, but can cause oscillations. Automatically set and adjusted by AUTOTUNE mode." user="User">
<field name="Range">0 0.2</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Integrator Gain" name="RLL2SRV_I" documentation='Integrator gain from long-term roll angle offsets to ailerons. Higher values "trim" out offsets faster but can cause oscillations. Automatically set and adjusted by AUTOTUNE mode.' user="User">
<field name="Range">0 1.0</field>
<field name="Increment">0.05</field>
</param>
<param humanName="Maximum Roll Rate" name="RLL2SRV_RMAX" documentation="Maximum roll rate that the roll controller demands (degrees/sec) in ACRO mode." user="Advanced">
<field name="Range">0 180</field>
<field name="Increment">1</field>
<field name="Units">deg/s</field>
<field name="UnitText">degrees per second</field>
</param>
<param humanName="Integrator limit" name="RLL2SRV_IMAX" documentation="Limit of roll integrator gain in centi-degrees of servo travel. Servos are assumed to have +/- 4500 centi-degrees of travel, so a value of 3000 allows trim of up to 2/3 of servo travel range." user="Advanced">
<field name="Range">0 4500</field>
<field name="Increment">1</field>
</param>
<param humanName="Feed forward Gain" name="RLL2SRV_FF" documentation="Gain from demanded rate to aileron output. " user="User">
<field name="Range">0.1 4.0</field>
<field name="Increment">0.1</field>
</param>
</parameters>
<parameters name="RNGFND1_">
<param humanName="Rangefinder type" name="RNGFND1_TYPE" documentation="What type of rangefinder device that is connected" user="Standard">
<values>
<value code="0">None</value>
<value code="1">Analog</value>
<value code="2">MaxbotixI2C</value>
<value code="3">LidarLiteV2-I2C</value>
<value code="5">PWM</value>
<value code="6">BBB-PRU</value>
<value code="7">LightWareI2C</value>
<value code="8">LightWareSerial</value>
<value code="9">Bebop</value>
<value code="10">MAVLink</value>
<value code="11">uLanding</value>
<value code="12">LeddarOne</value>
<value code="13">MaxbotixSerial</value>
<value code="14">TeraRangerI2C</value>
<value code="15">LidarLiteV3-I2C</value>
<value code="16">VL53L0X</value>
<value code="17">NMEA</value>
<value code="18">WASP-LRF</value>
<value code="19">BenewakeTF02</value>
<value code="20">BenewakeTFmini</value>
<value code="21">LidarLightV3HP</value>
<value code="22">PWM</value>
<value code="23">BlueRoboticsPing</value>
<value code="24">UAVCAN</value>
<value code="25">BenewakeTFMiniPlus</value>
</values>
</param>
<param humanName="Rangefinder pin" name="RNGFND1_PIN" documentation="Analog pin that rangefinder is connected to. Set to 11 on PX4 for the analog 'airspeed' port. Set to 15 on the Pixhawk for the analog 'airspeed' port." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code=" 11">PX4-airspeed port</value>
<value code=" 15">Pixhawk-airspeed port</value>
</values>
</param>
<param humanName="Rangefinder scaling" name="RNGFND1_SCALING" documentation="Scaling factor between rangefinder reading and distance. For the linear and inverted functions this is in meters per volt. For the hyperbolic function the units are meterVolts." user="Standard">
<field name="Increment">0.001</field>
<field name="Units">m/V</field>
<field name="UnitText">meters per volt</field>
</param>
<param humanName="rangefinder offset" name="RNGFND1_OFFSET" documentation="Offset in volts for zero distance for analog rangefinders. Offset added to distance in centimeters for PWM and I2C Lidars" user="Standard">
<field name="Increment">0.001</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Rangefinder function" name="RNGFND1_FUNCTION" documentation="Control over what function is used to calculate distance. For a linear function, the distance is (voltage-offset)*scaling. For a inverted function the distance is (offset-voltage)*scaling. For a hyperbolic function the distance is scaling/(voltage-offset). The functions return the distance in meters." user="Standard">
<values>
<value code="0">Linear</value>
<value code="1">Inverted</value>
<value code="2">Hyperbolic</value>
</values>
</param>
<param humanName="Rangefinder minimum distance" name="RNGFND1_MIN_CM" documentation="Minimum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder maximum distance" name="RNGFND1_MAX_CM" documentation="Maximum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder stop pin" name="RNGFND1_STOP_PIN" documentation="Digital pin that enables/disables rangefinder measurement for the pwm rangefinder. A value of -1 means no pin. If this is set, then the pin is set to 1 to enable the rangefinder and set to 0 to disable it. This is used to enable powersaving when out of range." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code="50">Pixhawk AUXOUT1</value>
<value code="51">Pixhawk AUXOUT2</value>
<value code="52">Pixhawk AUXOUT3</value>
<value code="53">Pixhawk AUXOUT4</value>
<value code="54">Pixhawk AUXOUT5</value>
<value code="55">Pixhawk AUXOUT6</value>
<value code="111">PX4 FMU Relay1</value>
<value code="112">PX4 FMU Relay2</value>
<value code="113">PX4IO Relay1</value>
<value code="114">PX4IO Relay2</value>
<value code="115">PX4IO ACC1</value>
<value code="116">PX4IO ACC2</value>
</values>
</param>
<param humanName="Ratiometric" name="RNGFND1_RMETRIC" documentation="This parameter sets whether an analog rangefinder is ratiometric. Most analog rangefinders are ratiometric, meaning that their output voltage is influenced by the supply voltage. Some analog rangefinders (such as the SF/02) have their own internal voltage regulators so they are not ratiometric." user="Standard">
<values>
<value code="0">No</value>
<value code="1">Yes</value>
</values>
</param>
<param humanName="Powersave range" name="RNGFND1_PWRRNG" documentation="This parameter sets the estimated terrain distance in meters above which the sensor will be put into a power saving mode (if available). A value of zero means power saving is not enabled" user="Standard">
<field name="Range">0 32767</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance (in cm) from the range finder to the ground" name="RNGFND1_GNDCLEAR" documentation="This parameter sets the expected range measurement(in cm) that the range finder should return when the vehicle is on the ground." user="Standard">
<field name="Range">5 127</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Bus address of sensor" name="RNGFND1_ADDR" documentation="This sets the bus address of the sensor, where applicable. Used for the I2C and UAVCAN sensors to allow for multiple sensors on different addresses. A value of 0 disables the sensor." user="Standard">
<field name="Range">0 127</field>
<field name="Increment">1</field>
</param>
<param humanName=" X position offset" name="RNGFND1_POS_X" documentation="X position of the first rangefinder in body frame. Positive X is forward of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Y position offset" name="RNGFND1_POS_Y" documentation="Y position of the first rangefinder in body frame. Positive Y is to the right of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Z position offset" name="RNGFND1_POS_Z" documentation="Z position of the first rangefinder in body frame. Positive Z is down from the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Rangefinder orientation" name="RNGFND1_ORIENT" documentation="Orientation of rangefinder" user="Advanced">
<values>
<value code="0">Forward</value>
<value code=" 1">Forward-Right</value>
<value code=" 2">Right</value>
<value code=" 3">Back-Right</value>
<value code=" 4">Back</value>
<value code=" 5">Back-Left</value>
<value code=" 6">Left</value>
<value code=" 7">Forward-Left</value>
<value code=" 24">Up</value>
<value code=" 25">Down</value>
</values>
</param>
</parameters>
<parameters name="RNGFND1_">
<param humanName="Moving Average Range" name="RNGFND1_WSP_MAVG" documentation="Sets the number of historic range results to use for calculating the current range result. When MAVG is greater than 1, the current range result will be the current measured value averaged with the N-1 previous results" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Moving Median Filter" name="RNGFND1_WSP_MEDF" documentation="Sets the window size for the real-time median filter. When MEDF is greater than 0 the median filter is active" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Frequency" name="RNGFND1_WSP_FRQ" documentation="Sets the repetition frequency of the ranging operation in Hertz. Upon entering the desired frequency the system will calculate the nearest frequency that it can handle according to the resolution of internal timers." user="Advanced">
<field name="Range">0 10000</field>
</param>
<param humanName="Multi-pulse averages" name="RNGFND1_WSP_AVG" documentation="Sets the number of pulses to be used in multi-pulse averaging mode. In this mode, a sequence of rapid fire ranges are taken and then averaged to improve the accuracy of the measurement" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Sensitivity threshold" name="RNGFND1_WSP_THR" documentation="Sets the system sensitivity. Larger values of THR represent higher sensitivity. The system may limit the maximum value of THR to prevent excessive false alarm rates based on settings made at the factory. Set to -1 for automatic threshold adjustments" user="Advanced">
<field name="Range">-1 255</field>
</param>
<param humanName="Baud rate" name="RNGFND1_WSP_BAUD" documentation="Desired baud rate" user="Advanced">
<values>
<value code="0">Low Speed</value>
<value code="1">High Speed</value>
</values>
</param>
</parameters>
<parameters name="RNGFND2_">
<param humanName="Rangefinder type" name="RNGFND2_TYPE" documentation="What type of rangefinder device that is connected" user="Standard">
<values>
<value code="0">None</value>
<value code="1">Analog</value>
<value code="2">MaxbotixI2C</value>
<value code="3">LidarLiteV2-I2C</value>
<value code="5">PWM</value>
<value code="6">BBB-PRU</value>
<value code="7">LightWareI2C</value>
<value code="8">LightWareSerial</value>
<value code="9">Bebop</value>
<value code="10">MAVLink</value>
<value code="11">uLanding</value>
<value code="12">LeddarOne</value>
<value code="13">MaxbotixSerial</value>
<value code="14">TeraRangerI2C</value>
<value code="15">LidarLiteV3-I2C</value>
<value code="16">VL53L0X</value>
<value code="17">NMEA</value>
<value code="18">WASP-LRF</value>
<value code="19">BenewakeTF02</value>
<value code="20">BenewakeTFmini</value>
<value code="21">LidarLightV3HP</value>
<value code="22">PWM</value>
<value code="23">BlueRoboticsPing</value>
<value code="24">UAVCAN</value>
<value code="25">BenewakeTFMiniPlus</value>
</values>
</param>
<param humanName="Rangefinder pin" name="RNGFND2_PIN" documentation="Analog pin that rangefinder is connected to. Set to 11 on PX4 for the analog 'airspeed' port. Set to 15 on the Pixhawk for the analog 'airspeed' port." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code=" 11">PX4-airspeed port</value>
<value code=" 15">Pixhawk-airspeed port</value>
</values>
</param>
<param humanName="Rangefinder scaling" name="RNGFND2_SCALING" documentation="Scaling factor between rangefinder reading and distance. For the linear and inverted functions this is in meters per volt. For the hyperbolic function the units are meterVolts." user="Standard">
<field name="Increment">0.001</field>
<field name="Units">m/V</field>
<field name="UnitText">meters per volt</field>
</param>
<param humanName="rangefinder offset" name="RNGFND2_OFFSET" documentation="Offset in volts for zero distance for analog rangefinders. Offset added to distance in centimeters for PWM and I2C Lidars" user="Standard">
<field name="Increment">0.001</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Rangefinder function" name="RNGFND2_FUNCTION" documentation="Control over what function is used to calculate distance. For a linear function, the distance is (voltage-offset)*scaling. For a inverted function the distance is (offset-voltage)*scaling. For a hyperbolic function the distance is scaling/(voltage-offset). The functions return the distance in meters." user="Standard">
<values>
<value code="0">Linear</value>
<value code="1">Inverted</value>
<value code="2">Hyperbolic</value>
</values>
</param>
<param humanName="Rangefinder minimum distance" name="RNGFND2_MIN_CM" documentation="Minimum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder maximum distance" name="RNGFND2_MAX_CM" documentation="Maximum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder stop pin" name="RNGFND2_STOP_PIN" documentation="Digital pin that enables/disables rangefinder measurement for the pwm rangefinder. A value of -1 means no pin. If this is set, then the pin is set to 1 to enable the rangefinder and set to 0 to disable it. This is used to enable powersaving when out of range." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code="50">Pixhawk AUXOUT1</value>
<value code="51">Pixhawk AUXOUT2</value>
<value code="52">Pixhawk AUXOUT3</value>
<value code="53">Pixhawk AUXOUT4</value>
<value code="54">Pixhawk AUXOUT5</value>
<value code="55">Pixhawk AUXOUT6</value>
<value code="111">PX4 FMU Relay1</value>
<value code="112">PX4 FMU Relay2</value>
<value code="113">PX4IO Relay1</value>
<value code="114">PX4IO Relay2</value>
<value code="115">PX4IO ACC1</value>
<value code="116">PX4IO ACC2</value>
</values>
</param>
<param humanName="Ratiometric" name="RNGFND2_RMETRIC" documentation="This parameter sets whether an analog rangefinder is ratiometric. Most analog rangefinders are ratiometric, meaning that their output voltage is influenced by the supply voltage. Some analog rangefinders (such as the SF/02) have their own internal voltage regulators so they are not ratiometric." user="Standard">
<values>
<value code="0">No</value>
<value code="1">Yes</value>
</values>
</param>
<param humanName="Powersave range" name="RNGFND2_PWRRNG" documentation="This parameter sets the estimated terrain distance in meters above which the sensor will be put into a power saving mode (if available). A value of zero means power saving is not enabled" user="Standard">
<field name="Range">0 32767</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance (in cm) from the range finder to the ground" name="RNGFND2_GNDCLEAR" documentation="This parameter sets the expected range measurement(in cm) that the range finder should return when the vehicle is on the ground." user="Standard">
<field name="Range">5 127</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Bus address of sensor" name="RNGFND2_ADDR" documentation="This sets the bus address of the sensor, where applicable. Used for the I2C and UAVCAN sensors to allow for multiple sensors on different addresses. A value of 0 disables the sensor." user="Standard">
<field name="Range">0 127</field>
<field name="Increment">1</field>
</param>
<param humanName=" X position offset" name="RNGFND2_POS_X" documentation="X position of the first rangefinder in body frame. Positive X is forward of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Y position offset" name="RNGFND2_POS_Y" documentation="Y position of the first rangefinder in body frame. Positive Y is to the right of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Z position offset" name="RNGFND2_POS_Z" documentation="Z position of the first rangefinder in body frame. Positive Z is down from the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Rangefinder orientation" name="RNGFND2_ORIENT" documentation="Orientation of rangefinder" user="Advanced">
<values>
<value code="0">Forward</value>
<value code=" 1">Forward-Right</value>
<value code=" 2">Right</value>
<value code=" 3">Back-Right</value>
<value code=" 4">Back</value>
<value code=" 5">Back-Left</value>
<value code=" 6">Left</value>
<value code=" 7">Forward-Left</value>
<value code=" 24">Up</value>
<value code=" 25">Down</value>
</values>
</param>
</parameters>
<parameters name="RNGFND2_">
<param humanName="Moving Average Range" name="RNGFND2_WSP_MAVG" documentation="Sets the number of historic range results to use for calculating the current range result. When MAVG is greater than 1, the current range result will be the current measured value averaged with the N-1 previous results" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Moving Median Filter" name="RNGFND2_WSP_MEDF" documentation="Sets the window size for the real-time median filter. When MEDF is greater than 0 the median filter is active" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Frequency" name="RNGFND2_WSP_FRQ" documentation="Sets the repetition frequency of the ranging operation in Hertz. Upon entering the desired frequency the system will calculate the nearest frequency that it can handle according to the resolution of internal timers." user="Advanced">
<field name="Range">0 10000</field>
</param>
<param humanName="Multi-pulse averages" name="RNGFND2_WSP_AVG" documentation="Sets the number of pulses to be used in multi-pulse averaging mode. In this mode, a sequence of rapid fire ranges are taken and then averaged to improve the accuracy of the measurement" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Sensitivity threshold" name="RNGFND2_WSP_THR" documentation="Sets the system sensitivity. Larger values of THR represent higher sensitivity. The system may limit the maximum value of THR to prevent excessive false alarm rates based on settings made at the factory. Set to -1 for automatic threshold adjustments" user="Advanced">
<field name="Range">-1 255</field>
</param>
<param humanName="Baud rate" name="RNGFND2_WSP_BAUD" documentation="Desired baud rate" user="Advanced">
<values>
<value code="0">Low Speed</value>
<value code="1">High Speed</value>
</values>
</param>
</parameters>
<parameters name="RNGFND3_">
<param humanName="Rangefinder type" name="RNGFND3_TYPE" documentation="What type of rangefinder device that is connected" user="Standard">
<values>
<value code="0">None</value>
<value code="1">Analog</value>
<value code="2">MaxbotixI2C</value>
<value code="3">LidarLiteV2-I2C</value>
<value code="5">PWM</value>
<value code="6">BBB-PRU</value>
<value code="7">LightWareI2C</value>
<value code="8">LightWareSerial</value>
<value code="9">Bebop</value>
<value code="10">MAVLink</value>
<value code="11">uLanding</value>
<value code="12">LeddarOne</value>
<value code="13">MaxbotixSerial</value>
<value code="14">TeraRangerI2C</value>
<value code="15">LidarLiteV3-I2C</value>
<value code="16">VL53L0X</value>
<value code="17">NMEA</value>
<value code="18">WASP-LRF</value>
<value code="19">BenewakeTF02</value>
<value code="20">BenewakeTFmini</value>
<value code="21">LidarLightV3HP</value>
<value code="22">PWM</value>
<value code="23">BlueRoboticsPing</value>
<value code="24">UAVCAN</value>
<value code="25">BenewakeTFMiniPlus</value>
</values>
</param>
<param humanName="Rangefinder pin" name="RNGFND3_PIN" documentation="Analog pin that rangefinder is connected to. Set to 11 on PX4 for the analog 'airspeed' port. Set to 15 on the Pixhawk for the analog 'airspeed' port." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code=" 11">PX4-airspeed port</value>
<value code=" 15">Pixhawk-airspeed port</value>
</values>
</param>
<param humanName="Rangefinder scaling" name="RNGFND3_SCALING" documentation="Scaling factor between rangefinder reading and distance. For the linear and inverted functions this is in meters per volt. For the hyperbolic function the units are meterVolts." user="Standard">
<field name="Increment">0.001</field>
<field name="Units">m/V</field>
<field name="UnitText">meters per volt</field>
</param>
<param humanName="rangefinder offset" name="RNGFND3_OFFSET" documentation="Offset in volts for zero distance for analog rangefinders. Offset added to distance in centimeters for PWM and I2C Lidars" user="Standard">
<field name="Increment">0.001</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Rangefinder function" name="RNGFND3_FUNCTION" documentation="Control over what function is used to calculate distance. For a linear function, the distance is (voltage-offset)*scaling. For a inverted function the distance is (offset-voltage)*scaling. For a hyperbolic function the distance is scaling/(voltage-offset). The functions return the distance in meters." user="Standard">
<values>
<value code="0">Linear</value>
<value code="1">Inverted</value>
<value code="2">Hyperbolic</value>
</values>
</param>
<param humanName="Rangefinder minimum distance" name="RNGFND3_MIN_CM" documentation="Minimum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder maximum distance" name="RNGFND3_MAX_CM" documentation="Maximum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder stop pin" name="RNGFND3_STOP_PIN" documentation="Digital pin that enables/disables rangefinder measurement for the pwm rangefinder. A value of -1 means no pin. If this is set, then the pin is set to 1 to enable the rangefinder and set to 0 to disable it. This is used to enable powersaving when out of range." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code="50">Pixhawk AUXOUT1</value>
<value code="51">Pixhawk AUXOUT2</value>
<value code="52">Pixhawk AUXOUT3</value>
<value code="53">Pixhawk AUXOUT4</value>
<value code="54">Pixhawk AUXOUT5</value>
<value code="55">Pixhawk AUXOUT6</value>
<value code="111">PX4 FMU Relay1</value>
<value code="112">PX4 FMU Relay2</value>
<value code="113">PX4IO Relay1</value>
<value code="114">PX4IO Relay2</value>
<value code="115">PX4IO ACC1</value>
<value code="116">PX4IO ACC2</value>
</values>
</param>
<param humanName="Ratiometric" name="RNGFND3_RMETRIC" documentation="This parameter sets whether an analog rangefinder is ratiometric. Most analog rangefinders are ratiometric, meaning that their output voltage is influenced by the supply voltage. Some analog rangefinders (such as the SF/02) have their own internal voltage regulators so they are not ratiometric." user="Standard">
<values>
<value code="0">No</value>
<value code="1">Yes</value>
</values>
</param>
<param humanName="Powersave range" name="RNGFND3_PWRRNG" documentation="This parameter sets the estimated terrain distance in meters above which the sensor will be put into a power saving mode (if available). A value of zero means power saving is not enabled" user="Standard">
<field name="Range">0 32767</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance (in cm) from the range finder to the ground" name="RNGFND3_GNDCLEAR" documentation="This parameter sets the expected range measurement(in cm) that the range finder should return when the vehicle is on the ground." user="Standard">
<field name="Range">5 127</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Bus address of sensor" name="RNGFND3_ADDR" documentation="This sets the bus address of the sensor, where applicable. Used for the I2C and UAVCAN sensors to allow for multiple sensors on different addresses. A value of 0 disables the sensor." user="Standard">
<field name="Range">0 127</field>
<field name="Increment">1</field>
</param>
<param humanName=" X position offset" name="RNGFND3_POS_X" documentation="X position of the first rangefinder in body frame. Positive X is forward of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Y position offset" name="RNGFND3_POS_Y" documentation="Y position of the first rangefinder in body frame. Positive Y is to the right of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Z position offset" name="RNGFND3_POS_Z" documentation="Z position of the first rangefinder in body frame. Positive Z is down from the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Rangefinder orientation" name="RNGFND3_ORIENT" documentation="Orientation of rangefinder" user="Advanced">
<values>
<value code="0">Forward</value>
<value code=" 1">Forward-Right</value>
<value code=" 2">Right</value>
<value code=" 3">Back-Right</value>
<value code=" 4">Back</value>
<value code=" 5">Back-Left</value>
<value code=" 6">Left</value>
<value code=" 7">Forward-Left</value>
<value code=" 24">Up</value>
<value code=" 25">Down</value>
</values>
</param>
</parameters>
<parameters name="RNGFND3_">
<param humanName="Moving Average Range" name="RNGFND3_WSP_MAVG" documentation="Sets the number of historic range results to use for calculating the current range result. When MAVG is greater than 1, the current range result will be the current measured value averaged with the N-1 previous results" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Moving Median Filter" name="RNGFND3_WSP_MEDF" documentation="Sets the window size for the real-time median filter. When MEDF is greater than 0 the median filter is active" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Frequency" name="RNGFND3_WSP_FRQ" documentation="Sets the repetition frequency of the ranging operation in Hertz. Upon entering the desired frequency the system will calculate the nearest frequency that it can handle according to the resolution of internal timers." user="Advanced">
<field name="Range">0 10000</field>
</param>
<param humanName="Multi-pulse averages" name="RNGFND3_WSP_AVG" documentation="Sets the number of pulses to be used in multi-pulse averaging mode. In this mode, a sequence of rapid fire ranges are taken and then averaged to improve the accuracy of the measurement" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Sensitivity threshold" name="RNGFND3_WSP_THR" documentation="Sets the system sensitivity. Larger values of THR represent higher sensitivity. The system may limit the maximum value of THR to prevent excessive false alarm rates based on settings made at the factory. Set to -1 for automatic threshold adjustments" user="Advanced">
<field name="Range">-1 255</field>
</param>
<param humanName="Baud rate" name="RNGFND3_WSP_BAUD" documentation="Desired baud rate" user="Advanced">
<values>
<value code="0">Low Speed</value>
<value code="1">High Speed</value>
</values>
</param>
</parameters>
<parameters name="RNGFND4_">
<param humanName="Rangefinder type" name="RNGFND4_TYPE" documentation="What type of rangefinder device that is connected" user="Standard">
<values>
<value code="0">None</value>
<value code="1">Analog</value>
<value code="2">MaxbotixI2C</value>
<value code="3">LidarLiteV2-I2C</value>
<value code="5">PWM</value>
<value code="6">BBB-PRU</value>
<value code="7">LightWareI2C</value>
<value code="8">LightWareSerial</value>
<value code="9">Bebop</value>
<value code="10">MAVLink</value>
<value code="11">uLanding</value>
<value code="12">LeddarOne</value>
<value code="13">MaxbotixSerial</value>
<value code="14">TeraRangerI2C</value>
<value code="15">LidarLiteV3-I2C</value>
<value code="16">VL53L0X</value>
<value code="17">NMEA</value>
<value code="18">WASP-LRF</value>
<value code="19">BenewakeTF02</value>
<value code="20">BenewakeTFmini</value>
<value code="21">LidarLightV3HP</value>
<value code="22">PWM</value>
<value code="23">BlueRoboticsPing</value>
<value code="24">UAVCAN</value>
<value code="25">BenewakeTFMiniPlus</value>
</values>
</param>
<param humanName="Rangefinder pin" name="RNGFND4_PIN" documentation="Analog pin that rangefinder is connected to. Set to 11 on PX4 for the analog 'airspeed' port. Set to 15 on the Pixhawk for the analog 'airspeed' port." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code=" 11">PX4-airspeed port</value>
<value code=" 15">Pixhawk-airspeed port</value>
</values>
</param>
<param humanName="Rangefinder scaling" name="RNGFND4_SCALING" documentation="Scaling factor between rangefinder reading and distance. For the linear and inverted functions this is in meters per volt. For the hyperbolic function the units are meterVolts." user="Standard">
<field name="Increment">0.001</field>
<field name="Units">m/V</field>
<field name="UnitText">meters per volt</field>
</param>
<param humanName="rangefinder offset" name="RNGFND4_OFFSET" documentation="Offset in volts for zero distance for analog rangefinders. Offset added to distance in centimeters for PWM and I2C Lidars" user="Standard">
<field name="Increment">0.001</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Rangefinder function" name="RNGFND4_FUNCTION" documentation="Control over what function is used to calculate distance. For a linear function, the distance is (voltage-offset)*scaling. For a inverted function the distance is (offset-voltage)*scaling. For a hyperbolic function the distance is scaling/(voltage-offset). The functions return the distance in meters." user="Standard">
<values>
<value code="0">Linear</value>
<value code="1">Inverted</value>
<value code="2">Hyperbolic</value>
</values>
</param>
<param humanName="Rangefinder minimum distance" name="RNGFND4_MIN_CM" documentation="Minimum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder maximum distance" name="RNGFND4_MAX_CM" documentation="Maximum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder stop pin" name="RNGFND4_STOP_PIN" documentation="Digital pin that enables/disables rangefinder measurement for the pwm rangefinder. A value of -1 means no pin. If this is set, then the pin is set to 1 to enable the rangefinder and set to 0 to disable it. This is used to enable powersaving when out of range." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code="50">Pixhawk AUXOUT1</value>
<value code="51">Pixhawk AUXOUT2</value>
<value code="52">Pixhawk AUXOUT3</value>
<value code="53">Pixhawk AUXOUT4</value>
<value code="54">Pixhawk AUXOUT5</value>
<value code="55">Pixhawk AUXOUT6</value>
<value code="111">PX4 FMU Relay1</value>
<value code="112">PX4 FMU Relay2</value>
<value code="113">PX4IO Relay1</value>
<value code="114">PX4IO Relay2</value>
<value code="115">PX4IO ACC1</value>
<value code="116">PX4IO ACC2</value>
</values>
</param>
<param humanName="Ratiometric" name="RNGFND4_RMETRIC" documentation="This parameter sets whether an analog rangefinder is ratiometric. Most analog rangefinders are ratiometric, meaning that their output voltage is influenced by the supply voltage. Some analog rangefinders (such as the SF/02) have their own internal voltage regulators so they are not ratiometric." user="Standard">
<values>
<value code="0">No</value>
<value code="1">Yes</value>
</values>
</param>
<param humanName="Powersave range" name="RNGFND4_PWRRNG" documentation="This parameter sets the estimated terrain distance in meters above which the sensor will be put into a power saving mode (if available). A value of zero means power saving is not enabled" user="Standard">
<field name="Range">0 32767</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance (in cm) from the range finder to the ground" name="RNGFND4_GNDCLEAR" documentation="This parameter sets the expected range measurement(in cm) that the range finder should return when the vehicle is on the ground." user="Standard">
<field name="Range">5 127</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Bus address of sensor" name="RNGFND4_ADDR" documentation="This sets the bus address of the sensor, where applicable. Used for the I2C and UAVCAN sensors to allow for multiple sensors on different addresses. A value of 0 disables the sensor." user="Standard">
<field name="Range">0 127</field>
<field name="Increment">1</field>
</param>
<param humanName=" X position offset" name="RNGFND4_POS_X" documentation="X position of the first rangefinder in body frame. Positive X is forward of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Y position offset" name="RNGFND4_POS_Y" documentation="Y position of the first rangefinder in body frame. Positive Y is to the right of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Z position offset" name="RNGFND4_POS_Z" documentation="Z position of the first rangefinder in body frame. Positive Z is down from the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Rangefinder orientation" name="RNGFND4_ORIENT" documentation="Orientation of rangefinder" user="Advanced">
<values>
<value code="0">Forward</value>
<value code=" 1">Forward-Right</value>
<value code=" 2">Right</value>
<value code=" 3">Back-Right</value>
<value code=" 4">Back</value>
<value code=" 5">Back-Left</value>
<value code=" 6">Left</value>
<value code=" 7">Forward-Left</value>
<value code=" 24">Up</value>
<value code=" 25">Down</value>
</values>
</param>
</parameters>
<parameters name="RNGFND4_">
<param humanName="Moving Average Range" name="RNGFND4_WSP_MAVG" documentation="Sets the number of historic range results to use for calculating the current range result. When MAVG is greater than 1, the current range result will be the current measured value averaged with the N-1 previous results" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Moving Median Filter" name="RNGFND4_WSP_MEDF" documentation="Sets the window size for the real-time median filter. When MEDF is greater than 0 the median filter is active" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Frequency" name="RNGFND4_WSP_FRQ" documentation="Sets the repetition frequency of the ranging operation in Hertz. Upon entering the desired frequency the system will calculate the nearest frequency that it can handle according to the resolution of internal timers." user="Advanced">
<field name="Range">0 10000</field>
</param>
<param humanName="Multi-pulse averages" name="RNGFND4_WSP_AVG" documentation="Sets the number of pulses to be used in multi-pulse averaging mode. In this mode, a sequence of rapid fire ranges are taken and then averaged to improve the accuracy of the measurement" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Sensitivity threshold" name="RNGFND4_WSP_THR" documentation="Sets the system sensitivity. Larger values of THR represent higher sensitivity. The system may limit the maximum value of THR to prevent excessive false alarm rates based on settings made at the factory. Set to -1 for automatic threshold adjustments" user="Advanced">
<field name="Range">-1 255</field>
</param>
<param humanName="Baud rate" name="RNGFND4_WSP_BAUD" documentation="Desired baud rate" user="Advanced">
<values>
<value code="0">Low Speed</value>
<value code="1">High Speed</value>
</values>
</param>
</parameters>
<parameters name="RNGFND5_">
<param humanName="Rangefinder type" name="RNGFND5_TYPE" documentation="What type of rangefinder device that is connected" user="Standard">
<values>
<value code="0">None</value>
<value code="1">Analog</value>
<value code="2">MaxbotixI2C</value>
<value code="3">LidarLiteV2-I2C</value>
<value code="5">PWM</value>
<value code="6">BBB-PRU</value>
<value code="7">LightWareI2C</value>
<value code="8">LightWareSerial</value>
<value code="9">Bebop</value>
<value code="10">MAVLink</value>
<value code="11">uLanding</value>
<value code="12">LeddarOne</value>
<value code="13">MaxbotixSerial</value>
<value code="14">TeraRangerI2C</value>
<value code="15">LidarLiteV3-I2C</value>
<value code="16">VL53L0X</value>
<value code="17">NMEA</value>
<value code="18">WASP-LRF</value>
<value code="19">BenewakeTF02</value>
<value code="20">BenewakeTFmini</value>
<value code="21">LidarLightV3HP</value>
<value code="22">PWM</value>
<value code="23">BlueRoboticsPing</value>
<value code="24">UAVCAN</value>
<value code="25">BenewakeTFMiniPlus</value>
</values>
</param>
<param humanName="Rangefinder pin" name="RNGFND5_PIN" documentation="Analog pin that rangefinder is connected to. Set to 11 on PX4 for the analog 'airspeed' port. Set to 15 on the Pixhawk for the analog 'airspeed' port." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code=" 11">PX4-airspeed port</value>
<value code=" 15">Pixhawk-airspeed port</value>
</values>
</param>
<param humanName="Rangefinder scaling" name="RNGFND5_SCALING" documentation="Scaling factor between rangefinder reading and distance. For the linear and inverted functions this is in meters per volt. For the hyperbolic function the units are meterVolts." user="Standard">
<field name="Increment">0.001</field>
<field name="Units">m/V</field>
<field name="UnitText">meters per volt</field>
</param>
<param humanName="rangefinder offset" name="RNGFND5_OFFSET" documentation="Offset in volts for zero distance for analog rangefinders. Offset added to distance in centimeters for PWM and I2C Lidars" user="Standard">
<field name="Increment">0.001</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Rangefinder function" name="RNGFND5_FUNCTION" documentation="Control over what function is used to calculate distance. For a linear function, the distance is (voltage-offset)*scaling. For a inverted function the distance is (offset-voltage)*scaling. For a hyperbolic function the distance is scaling/(voltage-offset). The functions return the distance in meters." user="Standard">
<values>
<value code="0">Linear</value>
<value code="1">Inverted</value>
<value code="2">Hyperbolic</value>
</values>
</param>
<param humanName="Rangefinder minimum distance" name="RNGFND5_MIN_CM" documentation="Minimum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder maximum distance" name="RNGFND5_MAX_CM" documentation="Maximum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder stop pin" name="RNGFND5_STOP_PIN" documentation="Digital pin that enables/disables rangefinder measurement for the pwm rangefinder. A value of -1 means no pin. If this is set, then the pin is set to 1 to enable the rangefinder and set to 0 to disable it. This is used to enable powersaving when out of range." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code="50">Pixhawk AUXOUT1</value>
<value code="51">Pixhawk AUXOUT2</value>
<value code="52">Pixhawk AUXOUT3</value>
<value code="53">Pixhawk AUXOUT4</value>
<value code="54">Pixhawk AUXOUT5</value>
<value code="55">Pixhawk AUXOUT6</value>
<value code="111">PX4 FMU Relay1</value>
<value code="112">PX4 FMU Relay2</value>
<value code="113">PX4IO Relay1</value>
<value code="114">PX4IO Relay2</value>
<value code="115">PX4IO ACC1</value>
<value code="116">PX4IO ACC2</value>
</values>
</param>
<param humanName="Ratiometric" name="RNGFND5_RMETRIC" documentation="This parameter sets whether an analog rangefinder is ratiometric. Most analog rangefinders are ratiometric, meaning that their output voltage is influenced by the supply voltage. Some analog rangefinders (such as the SF/02) have their own internal voltage regulators so they are not ratiometric." user="Standard">
<values>
<value code="0">No</value>
<value code="1">Yes</value>
</values>
</param>
<param humanName="Powersave range" name="RNGFND5_PWRRNG" documentation="This parameter sets the estimated terrain distance in meters above which the sensor will be put into a power saving mode (if available). A value of zero means power saving is not enabled" user="Standard">
<field name="Range">0 32767</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance (in cm) from the range finder to the ground" name="RNGFND5_GNDCLEAR" documentation="This parameter sets the expected range measurement(in cm) that the range finder should return when the vehicle is on the ground." user="Standard">
<field name="Range">5 127</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Bus address of sensor" name="RNGFND5_ADDR" documentation="This sets the bus address of the sensor, where applicable. Used for the I2C and UAVCAN sensors to allow for multiple sensors on different addresses. A value of 0 disables the sensor." user="Standard">
<field name="Range">0 127</field>
<field name="Increment">1</field>
</param>
<param humanName=" X position offset" name="RNGFND5_POS_X" documentation="X position of the first rangefinder in body frame. Positive X is forward of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Y position offset" name="RNGFND5_POS_Y" documentation="Y position of the first rangefinder in body frame. Positive Y is to the right of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Z position offset" name="RNGFND5_POS_Z" documentation="Z position of the first rangefinder in body frame. Positive Z is down from the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Rangefinder orientation" name="RNGFND5_ORIENT" documentation="Orientation of rangefinder" user="Advanced">
<values>
<value code="0">Forward</value>
<value code=" 1">Forward-Right</value>
<value code=" 2">Right</value>
<value code=" 3">Back-Right</value>
<value code=" 4">Back</value>
<value code=" 5">Back-Left</value>
<value code=" 6">Left</value>
<value code=" 7">Forward-Left</value>
<value code=" 24">Up</value>
<value code=" 25">Down</value>
</values>
</param>
</parameters>
<parameters name="RNGFND5_">
<param humanName="Moving Average Range" name="RNGFND5_WSP_MAVG" documentation="Sets the number of historic range results to use for calculating the current range result. When MAVG is greater than 1, the current range result will be the current measured value averaged with the N-1 previous results" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Moving Median Filter" name="RNGFND5_WSP_MEDF" documentation="Sets the window size for the real-time median filter. When MEDF is greater than 0 the median filter is active" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Frequency" name="RNGFND5_WSP_FRQ" documentation="Sets the repetition frequency of the ranging operation in Hertz. Upon entering the desired frequency the system will calculate the nearest frequency that it can handle according to the resolution of internal timers." user="Advanced">
<field name="Range">0 10000</field>
</param>
<param humanName="Multi-pulse averages" name="RNGFND5_WSP_AVG" documentation="Sets the number of pulses to be used in multi-pulse averaging mode. In this mode, a sequence of rapid fire ranges are taken and then averaged to improve the accuracy of the measurement" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Sensitivity threshold" name="RNGFND5_WSP_THR" documentation="Sets the system sensitivity. Larger values of THR represent higher sensitivity. The system may limit the maximum value of THR to prevent excessive false alarm rates based on settings made at the factory. Set to -1 for automatic threshold adjustments" user="Advanced">
<field name="Range">-1 255</field>
</param>
<param humanName="Baud rate" name="RNGFND5_WSP_BAUD" documentation="Desired baud rate" user="Advanced">
<values>
<value code="0">Low Speed</value>
<value code="1">High Speed</value>
</values>
</param>
</parameters>
<parameters name="RNGFND6_">
<param humanName="Rangefinder type" name="RNGFND6_TYPE" documentation="What type of rangefinder device that is connected" user="Standard">
<values>
<value code="0">None</value>
<value code="1">Analog</value>
<value code="2">MaxbotixI2C</value>
<value code="3">LidarLiteV2-I2C</value>
<value code="5">PWM</value>
<value code="6">BBB-PRU</value>
<value code="7">LightWareI2C</value>
<value code="8">LightWareSerial</value>
<value code="9">Bebop</value>
<value code="10">MAVLink</value>
<value code="11">uLanding</value>
<value code="12">LeddarOne</value>
<value code="13">MaxbotixSerial</value>
<value code="14">TeraRangerI2C</value>
<value code="15">LidarLiteV3-I2C</value>
<value code="16">VL53L0X</value>
<value code="17">NMEA</value>
<value code="18">WASP-LRF</value>
<value code="19">BenewakeTF02</value>
<value code="20">BenewakeTFmini</value>
<value code="21">LidarLightV3HP</value>
<value code="22">PWM</value>
<value code="23">BlueRoboticsPing</value>
<value code="24">UAVCAN</value>
<value code="25">BenewakeTFMiniPlus</value>
</values>
</param>
<param humanName="Rangefinder pin" name="RNGFND6_PIN" documentation="Analog pin that rangefinder is connected to. Set to 11 on PX4 for the analog 'airspeed' port. Set to 15 on the Pixhawk for the analog 'airspeed' port." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code=" 11">PX4-airspeed port</value>
<value code=" 15">Pixhawk-airspeed port</value>
</values>
</param>
<param humanName="Rangefinder scaling" name="RNGFND6_SCALING" documentation="Scaling factor between rangefinder reading and distance. For the linear and inverted functions this is in meters per volt. For the hyperbolic function the units are meterVolts." user="Standard">
<field name="Increment">0.001</field>
<field name="Units">m/V</field>
<field name="UnitText">meters per volt</field>
</param>
<param humanName="rangefinder offset" name="RNGFND6_OFFSET" documentation="Offset in volts for zero distance for analog rangefinders. Offset added to distance in centimeters for PWM and I2C Lidars" user="Standard">
<field name="Increment">0.001</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Rangefinder function" name="RNGFND6_FUNCTION" documentation="Control over what function is used to calculate distance. For a linear function, the distance is (voltage-offset)*scaling. For a inverted function the distance is (offset-voltage)*scaling. For a hyperbolic function the distance is scaling/(voltage-offset). The functions return the distance in meters." user="Standard">
<values>
<value code="0">Linear</value>
<value code="1">Inverted</value>
<value code="2">Hyperbolic</value>
</values>
</param>
<param humanName="Rangefinder minimum distance" name="RNGFND6_MIN_CM" documentation="Minimum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder maximum distance" name="RNGFND6_MAX_CM" documentation="Maximum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder stop pin" name="RNGFND6_STOP_PIN" documentation="Digital pin that enables/disables rangefinder measurement for the pwm rangefinder. A value of -1 means no pin. If this is set, then the pin is set to 1 to enable the rangefinder and set to 0 to disable it. This is used to enable powersaving when out of range." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code="50">Pixhawk AUXOUT1</value>
<value code="51">Pixhawk AUXOUT2</value>
<value code="52">Pixhawk AUXOUT3</value>
<value code="53">Pixhawk AUXOUT4</value>
<value code="54">Pixhawk AUXOUT5</value>
<value code="55">Pixhawk AUXOUT6</value>
<value code="111">PX4 FMU Relay1</value>
<value code="112">PX4 FMU Relay2</value>
<value code="113">PX4IO Relay1</value>
<value code="114">PX4IO Relay2</value>
<value code="115">PX4IO ACC1</value>
<value code="116">PX4IO ACC2</value>
</values>
</param>
<param humanName="Ratiometric" name="RNGFND6_RMETRIC" documentation="This parameter sets whether an analog rangefinder is ratiometric. Most analog rangefinders are ratiometric, meaning that their output voltage is influenced by the supply voltage. Some analog rangefinders (such as the SF/02) have their own internal voltage regulators so they are not ratiometric." user="Standard">
<values>
<value code="0">No</value>
<value code="1">Yes</value>
</values>
</param>
<param humanName="Powersave range" name="RNGFND6_PWRRNG" documentation="This parameter sets the estimated terrain distance in meters above which the sensor will be put into a power saving mode (if available). A value of zero means power saving is not enabled" user="Standard">
<field name="Range">0 32767</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance (in cm) from the range finder to the ground" name="RNGFND6_GNDCLEAR" documentation="This parameter sets the expected range measurement(in cm) that the range finder should return when the vehicle is on the ground." user="Standard">
<field name="Range">5 127</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Bus address of sensor" name="RNGFND6_ADDR" documentation="This sets the bus address of the sensor, where applicable. Used for the I2C and UAVCAN sensors to allow for multiple sensors on different addresses. A value of 0 disables the sensor." user="Standard">
<field name="Range">0 127</field>
<field name="Increment">1</field>
</param>
<param humanName=" X position offset" name="RNGFND6_POS_X" documentation="X position of the first rangefinder in body frame. Positive X is forward of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Y position offset" name="RNGFND6_POS_Y" documentation="Y position of the first rangefinder in body frame. Positive Y is to the right of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Z position offset" name="RNGFND6_POS_Z" documentation="Z position of the first rangefinder in body frame. Positive Z is down from the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Rangefinder orientation" name="RNGFND6_ORIENT" documentation="Orientation of rangefinder" user="Advanced">
<values>
<value code="0">Forward</value>
<value code=" 1">Forward-Right</value>
<value code=" 2">Right</value>
<value code=" 3">Back-Right</value>
<value code=" 4">Back</value>
<value code=" 5">Back-Left</value>
<value code=" 6">Left</value>
<value code=" 7">Forward-Left</value>
<value code=" 24">Up</value>
<value code=" 25">Down</value>
</values>
</param>
</parameters>
<parameters name="RNGFND6_">
<param humanName="Moving Average Range" name="RNGFND6_WSP_MAVG" documentation="Sets the number of historic range results to use for calculating the current range result. When MAVG is greater than 1, the current range result will be the current measured value averaged with the N-1 previous results" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Moving Median Filter" name="RNGFND6_WSP_MEDF" documentation="Sets the window size for the real-time median filter. When MEDF is greater than 0 the median filter is active" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Frequency" name="RNGFND6_WSP_FRQ" documentation="Sets the repetition frequency of the ranging operation in Hertz. Upon entering the desired frequency the system will calculate the nearest frequency that it can handle according to the resolution of internal timers." user="Advanced">
<field name="Range">0 10000</field>
</param>
<param humanName="Multi-pulse averages" name="RNGFND6_WSP_AVG" documentation="Sets the number of pulses to be used in multi-pulse averaging mode. In this mode, a sequence of rapid fire ranges are taken and then averaged to improve the accuracy of the measurement" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Sensitivity threshold" name="RNGFND6_WSP_THR" documentation="Sets the system sensitivity. Larger values of THR represent higher sensitivity. The system may limit the maximum value of THR to prevent excessive false alarm rates based on settings made at the factory. Set to -1 for automatic threshold adjustments" user="Advanced">
<field name="Range">-1 255</field>
</param>
<param humanName="Baud rate" name="RNGFND6_WSP_BAUD" documentation="Desired baud rate" user="Advanced">
<values>
<value code="0">Low Speed</value>
<value code="1">High Speed</value>
</values>
</param>
</parameters>
<parameters name="RNGFND7_">
<param humanName="Rangefinder type" name="RNGFND7_TYPE" documentation="What type of rangefinder device that is connected" user="Standard">
<values>
<value code="0">None</value>
<value code="1">Analog</value>
<value code="2">MaxbotixI2C</value>
<value code="3">LidarLiteV2-I2C</value>
<value code="5">PWM</value>
<value code="6">BBB-PRU</value>
<value code="7">LightWareI2C</value>
<value code="8">LightWareSerial</value>
<value code="9">Bebop</value>
<value code="10">MAVLink</value>
<value code="11">uLanding</value>
<value code="12">LeddarOne</value>
<value code="13">MaxbotixSerial</value>
<value code="14">TeraRangerI2C</value>
<value code="15">LidarLiteV3-I2C</value>
<value code="16">VL53L0X</value>
<value code="17">NMEA</value>
<value code="18">WASP-LRF</value>
<value code="19">BenewakeTF02</value>
<value code="20">BenewakeTFmini</value>
<value code="21">LidarLightV3HP</value>
<value code="22">PWM</value>
<value code="23">BlueRoboticsPing</value>
<value code="24">UAVCAN</value>
<value code="25">BenewakeTFMiniPlus</value>
</values>
</param>
<param humanName="Rangefinder pin" name="RNGFND7_PIN" documentation="Analog pin that rangefinder is connected to. Set to 11 on PX4 for the analog 'airspeed' port. Set to 15 on the Pixhawk for the analog 'airspeed' port." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code=" 11">PX4-airspeed port</value>
<value code=" 15">Pixhawk-airspeed port</value>
</values>
</param>
<param humanName="Rangefinder scaling" name="RNGFND7_SCALING" documentation="Scaling factor between rangefinder reading and distance. For the linear and inverted functions this is in meters per volt. For the hyperbolic function the units are meterVolts." user="Standard">
<field name="Increment">0.001</field>
<field name="Units">m/V</field>
<field name="UnitText">meters per volt</field>
</param>
<param humanName="rangefinder offset" name="RNGFND7_OFFSET" documentation="Offset in volts for zero distance for analog rangefinders. Offset added to distance in centimeters for PWM and I2C Lidars" user="Standard">
<field name="Increment">0.001</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Rangefinder function" name="RNGFND7_FUNCTION" documentation="Control over what function is used to calculate distance. For a linear function, the distance is (voltage-offset)*scaling. For a inverted function the distance is (offset-voltage)*scaling. For a hyperbolic function the distance is scaling/(voltage-offset). The functions return the distance in meters." user="Standard">
<values>
<value code="0">Linear</value>
<value code="1">Inverted</value>
<value code="2">Hyperbolic</value>
</values>
</param>
<param humanName="Rangefinder minimum distance" name="RNGFND7_MIN_CM" documentation="Minimum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder maximum distance" name="RNGFND7_MAX_CM" documentation="Maximum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder stop pin" name="RNGFND7_STOP_PIN" documentation="Digital pin that enables/disables rangefinder measurement for the pwm rangefinder. A value of -1 means no pin. If this is set, then the pin is set to 1 to enable the rangefinder and set to 0 to disable it. This is used to enable powersaving when out of range." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code="50">Pixhawk AUXOUT1</value>
<value code="51">Pixhawk AUXOUT2</value>
<value code="52">Pixhawk AUXOUT3</value>
<value code="53">Pixhawk AUXOUT4</value>
<value code="54">Pixhawk AUXOUT5</value>
<value code="55">Pixhawk AUXOUT6</value>
<value code="111">PX4 FMU Relay1</value>
<value code="112">PX4 FMU Relay2</value>
<value code="113">PX4IO Relay1</value>
<value code="114">PX4IO Relay2</value>
<value code="115">PX4IO ACC1</value>
<value code="116">PX4IO ACC2</value>
</values>
</param>
<param humanName="Ratiometric" name="RNGFND7_RMETRIC" documentation="This parameter sets whether an analog rangefinder is ratiometric. Most analog rangefinders are ratiometric, meaning that their output voltage is influenced by the supply voltage. Some analog rangefinders (such as the SF/02) have their own internal voltage regulators so they are not ratiometric." user="Standard">
<values>
<value code="0">No</value>
<value code="1">Yes</value>
</values>
</param>
<param humanName="Powersave range" name="RNGFND7_PWRRNG" documentation="This parameter sets the estimated terrain distance in meters above which the sensor will be put into a power saving mode (if available). A value of zero means power saving is not enabled" user="Standard">
<field name="Range">0 32767</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance (in cm) from the range finder to the ground" name="RNGFND7_GNDCLEAR" documentation="This parameter sets the expected range measurement(in cm) that the range finder should return when the vehicle is on the ground." user="Standard">
<field name="Range">5 127</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Bus address of sensor" name="RNGFND7_ADDR" documentation="This sets the bus address of the sensor, where applicable. Used for the I2C and UAVCAN sensors to allow for multiple sensors on different addresses. A value of 0 disables the sensor." user="Standard">
<field name="Range">0 127</field>
<field name="Increment">1</field>
</param>
<param humanName=" X position offset" name="RNGFND7_POS_X" documentation="X position of the first rangefinder in body frame. Positive X is forward of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Y position offset" name="RNGFND7_POS_Y" documentation="Y position of the first rangefinder in body frame. Positive Y is to the right of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Z position offset" name="RNGFND7_POS_Z" documentation="Z position of the first rangefinder in body frame. Positive Z is down from the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Rangefinder orientation" name="RNGFND7_ORIENT" documentation="Orientation of rangefinder" user="Advanced">
<values>
<value code="0">Forward</value>
<value code=" 1">Forward-Right</value>
<value code=" 2">Right</value>
<value code=" 3">Back-Right</value>
<value code=" 4">Back</value>
<value code=" 5">Back-Left</value>
<value code=" 6">Left</value>
<value code=" 7">Forward-Left</value>
<value code=" 24">Up</value>
<value code=" 25">Down</value>
</values>
</param>
</parameters>
<parameters name="RNGFND7_">
<param humanName="Moving Average Range" name="RNGFND7_WSP_MAVG" documentation="Sets the number of historic range results to use for calculating the current range result. When MAVG is greater than 1, the current range result will be the current measured value averaged with the N-1 previous results" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Moving Median Filter" name="RNGFND7_WSP_MEDF" documentation="Sets the window size for the real-time median filter. When MEDF is greater than 0 the median filter is active" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Frequency" name="RNGFND7_WSP_FRQ" documentation="Sets the repetition frequency of the ranging operation in Hertz. Upon entering the desired frequency the system will calculate the nearest frequency that it can handle according to the resolution of internal timers." user="Advanced">
<field name="Range">0 10000</field>
</param>
<param humanName="Multi-pulse averages" name="RNGFND7_WSP_AVG" documentation="Sets the number of pulses to be used in multi-pulse averaging mode. In this mode, a sequence of rapid fire ranges are taken and then averaged to improve the accuracy of the measurement" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Sensitivity threshold" name="RNGFND7_WSP_THR" documentation="Sets the system sensitivity. Larger values of THR represent higher sensitivity. The system may limit the maximum value of THR to prevent excessive false alarm rates based on settings made at the factory. Set to -1 for automatic threshold adjustments" user="Advanced">
<field name="Range">-1 255</field>
</param>
<param humanName="Baud rate" name="RNGFND7_WSP_BAUD" documentation="Desired baud rate" user="Advanced">
<values>
<value code="0">Low Speed</value>
<value code="1">High Speed</value>
</values>
</param>
</parameters>
<parameters name="RNGFND8_">
<param humanName="Rangefinder type" name="RNGFND8_TYPE" documentation="What type of rangefinder device that is connected" user="Standard">
<values>
<value code="0">None</value>
<value code="1">Analog</value>
<value code="2">MaxbotixI2C</value>
<value code="3">LidarLiteV2-I2C</value>
<value code="5">PWM</value>
<value code="6">BBB-PRU</value>
<value code="7">LightWareI2C</value>
<value code="8">LightWareSerial</value>
<value code="9">Bebop</value>
<value code="10">MAVLink</value>
<value code="11">uLanding</value>
<value code="12">LeddarOne</value>
<value code="13">MaxbotixSerial</value>
<value code="14">TeraRangerI2C</value>
<value code="15">LidarLiteV3-I2C</value>
<value code="16">VL53L0X</value>
<value code="17">NMEA</value>
<value code="18">WASP-LRF</value>
<value code="19">BenewakeTF02</value>
<value code="20">BenewakeTFmini</value>
<value code="21">LidarLightV3HP</value>
<value code="22">PWM</value>
<value code="23">BlueRoboticsPing</value>
<value code="24">UAVCAN</value>
<value code="25">BenewakeTFMiniPlus</value>
</values>
</param>
<param humanName="Rangefinder pin" name="RNGFND8_PIN" documentation="Analog pin that rangefinder is connected to. Set to 11 on PX4 for the analog 'airspeed' port. Set to 15 on the Pixhawk for the analog 'airspeed' port." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code=" 11">PX4-airspeed port</value>
<value code=" 15">Pixhawk-airspeed port</value>
</values>
</param>
<param humanName="Rangefinder scaling" name="RNGFND8_SCALING" documentation="Scaling factor between rangefinder reading and distance. For the linear and inverted functions this is in meters per volt. For the hyperbolic function the units are meterVolts." user="Standard">
<field name="Increment">0.001</field>
<field name="Units">m/V</field>
<field name="UnitText">meters per volt</field>
</param>
<param humanName="rangefinder offset" name="RNGFND8_OFFSET" documentation="Offset in volts for zero distance for analog rangefinders. Offset added to distance in centimeters for PWM and I2C Lidars" user="Standard">
<field name="Increment">0.001</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Rangefinder function" name="RNGFND8_FUNCTION" documentation="Control over what function is used to calculate distance. For a linear function, the distance is (voltage-offset)*scaling. For a inverted function the distance is (offset-voltage)*scaling. For a hyperbolic function the distance is scaling/(voltage-offset). The functions return the distance in meters." user="Standard">
<values>
<value code="0">Linear</value>
<value code="1">Inverted</value>
<value code="2">Hyperbolic</value>
</values>
</param>
<param humanName="Rangefinder minimum distance" name="RNGFND8_MIN_CM" documentation="Minimum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder maximum distance" name="RNGFND8_MAX_CM" documentation="Maximum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder stop pin" name="RNGFND8_STOP_PIN" documentation="Digital pin that enables/disables rangefinder measurement for the pwm rangefinder. A value of -1 means no pin. If this is set, then the pin is set to 1 to enable the rangefinder and set to 0 to disable it. This is used to enable powersaving when out of range." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code="50">Pixhawk AUXOUT1</value>
<value code="51">Pixhawk AUXOUT2</value>
<value code="52">Pixhawk AUXOUT3</value>
<value code="53">Pixhawk AUXOUT4</value>
<value code="54">Pixhawk AUXOUT5</value>
<value code="55">Pixhawk AUXOUT6</value>
<value code="111">PX4 FMU Relay1</value>
<value code="112">PX4 FMU Relay2</value>
<value code="113">PX4IO Relay1</value>
<value code="114">PX4IO Relay2</value>
<value code="115">PX4IO ACC1</value>
<value code="116">PX4IO ACC2</value>
</values>
</param>
<param humanName="Ratiometric" name="RNGFND8_RMETRIC" documentation="This parameter sets whether an analog rangefinder is ratiometric. Most analog rangefinders are ratiometric, meaning that their output voltage is influenced by the supply voltage. Some analog rangefinders (such as the SF/02) have their own internal voltage regulators so they are not ratiometric." user="Standard">
<values>
<value code="0">No</value>
<value code="1">Yes</value>
</values>
</param>
<param humanName="Powersave range" name="RNGFND8_PWRRNG" documentation="This parameter sets the estimated terrain distance in meters above which the sensor will be put into a power saving mode (if available). A value of zero means power saving is not enabled" user="Standard">
<field name="Range">0 32767</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance (in cm) from the range finder to the ground" name="RNGFND8_GNDCLEAR" documentation="This parameter sets the expected range measurement(in cm) that the range finder should return when the vehicle is on the ground." user="Standard">
<field name="Range">5 127</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Bus address of sensor" name="RNGFND8_ADDR" documentation="This sets the bus address of the sensor, where applicable. Used for the I2C and UAVCAN sensors to allow for multiple sensors on different addresses. A value of 0 disables the sensor." user="Standard">
<field name="Range">0 127</field>
<field name="Increment">1</field>
</param>
<param humanName=" X position offset" name="RNGFND8_POS_X" documentation="X position of the first rangefinder in body frame. Positive X is forward of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Y position offset" name="RNGFND8_POS_Y" documentation="Y position of the first rangefinder in body frame. Positive Y is to the right of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Z position offset" name="RNGFND8_POS_Z" documentation="Z position of the first rangefinder in body frame. Positive Z is down from the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Rangefinder orientation" name="RNGFND8_ORIENT" documentation="Orientation of rangefinder" user="Advanced">
<values>
<value code="0">Forward</value>
<value code=" 1">Forward-Right</value>
<value code=" 2">Right</value>
<value code=" 3">Back-Right</value>
<value code=" 4">Back</value>
<value code=" 5">Back-Left</value>
<value code=" 6">Left</value>
<value code=" 7">Forward-Left</value>
<value code=" 24">Up</value>
<value code=" 25">Down</value>
</values>
</param>
</parameters>
<parameters name="RNGFND8_">
<param humanName="Moving Average Range" name="RNGFND8_WSP_MAVG" documentation="Sets the number of historic range results to use for calculating the current range result. When MAVG is greater than 1, the current range result will be the current measured value averaged with the N-1 previous results" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Moving Median Filter" name="RNGFND8_WSP_MEDF" documentation="Sets the window size for the real-time median filter. When MEDF is greater than 0 the median filter is active" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Frequency" name="RNGFND8_WSP_FRQ" documentation="Sets the repetition frequency of the ranging operation in Hertz. Upon entering the desired frequency the system will calculate the nearest frequency that it can handle according to the resolution of internal timers." user="Advanced">
<field name="Range">0 10000</field>
</param>
<param humanName="Multi-pulse averages" name="RNGFND8_WSP_AVG" documentation="Sets the number of pulses to be used in multi-pulse averaging mode. In this mode, a sequence of rapid fire ranges are taken and then averaged to improve the accuracy of the measurement" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Sensitivity threshold" name="RNGFND8_WSP_THR" documentation="Sets the system sensitivity. Larger values of THR represent higher sensitivity. The system may limit the maximum value of THR to prevent excessive false alarm rates based on settings made at the factory. Set to -1 for automatic threshold adjustments" user="Advanced">
<field name="Range">-1 255</field>
</param>
<param humanName="Baud rate" name="RNGFND8_WSP_BAUD" documentation="Desired baud rate" user="Advanced">
<values>
<value code="0">Low Speed</value>
<value code="1">High Speed</value>
</values>
</param>
</parameters>
<parameters name="RNGFND9_">
<param humanName="Rangefinder type" name="RNGFND9_TYPE" documentation="What type of rangefinder device that is connected" user="Standard">
<values>
<value code="0">None</value>
<value code="1">Analog</value>
<value code="2">MaxbotixI2C</value>
<value code="3">LidarLiteV2-I2C</value>
<value code="5">PWM</value>
<value code="6">BBB-PRU</value>
<value code="7">LightWareI2C</value>
<value code="8">LightWareSerial</value>
<value code="9">Bebop</value>
<value code="10">MAVLink</value>
<value code="11">uLanding</value>
<value code="12">LeddarOne</value>
<value code="13">MaxbotixSerial</value>
<value code="14">TeraRangerI2C</value>
<value code="15">LidarLiteV3-I2C</value>
<value code="16">VL53L0X</value>
<value code="17">NMEA</value>
<value code="18">WASP-LRF</value>
<value code="19">BenewakeTF02</value>
<value code="20">BenewakeTFmini</value>
<value code="21">LidarLightV3HP</value>
<value code="22">PWM</value>
<value code="23">BlueRoboticsPing</value>
<value code="24">UAVCAN</value>
<value code="25">BenewakeTFMiniPlus</value>
</values>
</param>
<param humanName="Rangefinder pin" name="RNGFND9_PIN" documentation="Analog pin that rangefinder is connected to. Set to 11 on PX4 for the analog 'airspeed' port. Set to 15 on the Pixhawk for the analog 'airspeed' port." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code=" 11">PX4-airspeed port</value>
<value code=" 15">Pixhawk-airspeed port</value>
</values>
</param>
<param humanName="Rangefinder scaling" name="RNGFND9_SCALING" documentation="Scaling factor between rangefinder reading and distance. For the linear and inverted functions this is in meters per volt. For the hyperbolic function the units are meterVolts." user="Standard">
<field name="Increment">0.001</field>
<field name="Units">m/V</field>
<field name="UnitText">meters per volt</field>
</param>
<param humanName="rangefinder offset" name="RNGFND9_OFFSET" documentation="Offset in volts for zero distance for analog rangefinders. Offset added to distance in centimeters for PWM and I2C Lidars" user="Standard">
<field name="Increment">0.001</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Rangefinder function" name="RNGFND9_FUNCTION" documentation="Control over what function is used to calculate distance. For a linear function, the distance is (voltage-offset)*scaling. For a inverted function the distance is (offset-voltage)*scaling. For a hyperbolic function the distance is scaling/(voltage-offset). The functions return the distance in meters." user="Standard">
<values>
<value code="0">Linear</value>
<value code="1">Inverted</value>
<value code="2">Hyperbolic</value>
</values>
</param>
<param humanName="Rangefinder minimum distance" name="RNGFND9_MIN_CM" documentation="Minimum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder maximum distance" name="RNGFND9_MAX_CM" documentation="Maximum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder stop pin" name="RNGFND9_STOP_PIN" documentation="Digital pin that enables/disables rangefinder measurement for the pwm rangefinder. A value of -1 means no pin. If this is set, then the pin is set to 1 to enable the rangefinder and set to 0 to disable it. This is used to enable powersaving when out of range." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code="50">Pixhawk AUXOUT1</value>
<value code="51">Pixhawk AUXOUT2</value>
<value code="52">Pixhawk AUXOUT3</value>
<value code="53">Pixhawk AUXOUT4</value>
<value code="54">Pixhawk AUXOUT5</value>
<value code="55">Pixhawk AUXOUT6</value>
<value code="111">PX4 FMU Relay1</value>
<value code="112">PX4 FMU Relay2</value>
<value code="113">PX4IO Relay1</value>
<value code="114">PX4IO Relay2</value>
<value code="115">PX4IO ACC1</value>
<value code="116">PX4IO ACC2</value>
</values>
</param>
<param humanName="Ratiometric" name="RNGFND9_RMETRIC" documentation="This parameter sets whether an analog rangefinder is ratiometric. Most analog rangefinders are ratiometric, meaning that their output voltage is influenced by the supply voltage. Some analog rangefinders (such as the SF/02) have their own internal voltage regulators so they are not ratiometric." user="Standard">
<values>
<value code="0">No</value>
<value code="1">Yes</value>
</values>
</param>
<param humanName="Powersave range" name="RNGFND9_PWRRNG" documentation="This parameter sets the estimated terrain distance in meters above which the sensor will be put into a power saving mode (if available). A value of zero means power saving is not enabled" user="Standard">
<field name="Range">0 32767</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance (in cm) from the range finder to the ground" name="RNGFND9_GNDCLEAR" documentation="This parameter sets the expected range measurement(in cm) that the range finder should return when the vehicle is on the ground." user="Standard">
<field name="Range">5 127</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Bus address of sensor" name="RNGFND9_ADDR" documentation="This sets the bus address of the sensor, where applicable. Used for the I2C and UAVCAN sensors to allow for multiple sensors on different addresses. A value of 0 disables the sensor." user="Standard">
<field name="Range">0 127</field>
<field name="Increment">1</field>
</param>
<param humanName=" X position offset" name="RNGFND9_POS_X" documentation="X position of the first rangefinder in body frame. Positive X is forward of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Y position offset" name="RNGFND9_POS_Y" documentation="Y position of the first rangefinder in body frame. Positive Y is to the right of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Z position offset" name="RNGFND9_POS_Z" documentation="Z position of the first rangefinder in body frame. Positive Z is down from the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Rangefinder orientation" name="RNGFND9_ORIENT" documentation="Orientation of rangefinder" user="Advanced">
<values>
<value code="0">Forward</value>
<value code=" 1">Forward-Right</value>
<value code=" 2">Right</value>
<value code=" 3">Back-Right</value>
<value code=" 4">Back</value>
<value code=" 5">Back-Left</value>
<value code=" 6">Left</value>
<value code=" 7">Forward-Left</value>
<value code=" 24">Up</value>
<value code=" 25">Down</value>
</values>
</param>
</parameters>
<parameters name="RNGFND9_">
<param humanName="Moving Average Range" name="RNGFND9_WSP_MAVG" documentation="Sets the number of historic range results to use for calculating the current range result. When MAVG is greater than 1, the current range result will be the current measured value averaged with the N-1 previous results" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Moving Median Filter" name="RNGFND9_WSP_MEDF" documentation="Sets the window size for the real-time median filter. When MEDF is greater than 0 the median filter is active" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Frequency" name="RNGFND9_WSP_FRQ" documentation="Sets the repetition frequency of the ranging operation in Hertz. Upon entering the desired frequency the system will calculate the nearest frequency that it can handle according to the resolution of internal timers." user="Advanced">
<field name="Range">0 10000</field>
</param>
<param humanName="Multi-pulse averages" name="RNGFND9_WSP_AVG" documentation="Sets the number of pulses to be used in multi-pulse averaging mode. In this mode, a sequence of rapid fire ranges are taken and then averaged to improve the accuracy of the measurement" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Sensitivity threshold" name="RNGFND9_WSP_THR" documentation="Sets the system sensitivity. Larger values of THR represent higher sensitivity. The system may limit the maximum value of THR to prevent excessive false alarm rates based on settings made at the factory. Set to -1 for automatic threshold adjustments" user="Advanced">
<field name="Range">-1 255</field>
</param>
<param humanName="Baud rate" name="RNGFND9_WSP_BAUD" documentation="Desired baud rate" user="Advanced">
<values>
<value code="0">Low Speed</value>
<value code="1">High Speed</value>
</values>
</param>
</parameters>
<parameters name="RNGFNDA_">
<param humanName="Rangefinder type" name="RNGFNDA_TYPE" documentation="What type of rangefinder device that is connected" user="Standard">
<values>
<value code="0">None</value>
<value code="1">Analog</value>
<value code="2">MaxbotixI2C</value>
<value code="3">LidarLiteV2-I2C</value>
<value code="5">PWM</value>
<value code="6">BBB-PRU</value>
<value code="7">LightWareI2C</value>
<value code="8">LightWareSerial</value>
<value code="9">Bebop</value>
<value code="10">MAVLink</value>
<value code="11">uLanding</value>
<value code="12">LeddarOne</value>
<value code="13">MaxbotixSerial</value>
<value code="14">TeraRangerI2C</value>
<value code="15">LidarLiteV3-I2C</value>
<value code="16">VL53L0X</value>
<value code="17">NMEA</value>
<value code="18">WASP-LRF</value>
<value code="19">BenewakeTF02</value>
<value code="20">BenewakeTFmini</value>
<value code="21">LidarLightV3HP</value>
<value code="22">PWM</value>
<value code="23">BlueRoboticsPing</value>
<value code="24">UAVCAN</value>
<value code="25">BenewakeTFMiniPlus</value>
</values>
</param>
<param humanName="Rangefinder pin" name="RNGFNDA_PIN" documentation="Analog pin that rangefinder is connected to. Set to 11 on PX4 for the analog 'airspeed' port. Set to 15 on the Pixhawk for the analog 'airspeed' port." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code=" 11">PX4-airspeed port</value>
<value code=" 15">Pixhawk-airspeed port</value>
</values>
</param>
<param humanName="Rangefinder scaling" name="RNGFNDA_SCALING" documentation="Scaling factor between rangefinder reading and distance. For the linear and inverted functions this is in meters per volt. For the hyperbolic function the units are meterVolts." user="Standard">
<field name="Increment">0.001</field>
<field name="Units">m/V</field>
<field name="UnitText">meters per volt</field>
</param>
<param humanName="rangefinder offset" name="RNGFNDA_OFFSET" documentation="Offset in volts for zero distance for analog rangefinders. Offset added to distance in centimeters for PWM and I2C Lidars" user="Standard">
<field name="Increment">0.001</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Rangefinder function" name="RNGFNDA_FUNCTION" documentation="Control over what function is used to calculate distance. For a linear function, the distance is (voltage-offset)*scaling. For a inverted function the distance is (offset-voltage)*scaling. For a hyperbolic function the distance is scaling/(voltage-offset). The functions return the distance in meters." user="Standard">
<values>
<value code="0">Linear</value>
<value code="1">Inverted</value>
<value code="2">Hyperbolic</value>
</values>
</param>
<param humanName="Rangefinder minimum distance" name="RNGFNDA_MIN_CM" documentation="Minimum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder maximum distance" name="RNGFNDA_MAX_CM" documentation="Maximum distance in centimeters that rangefinder can reliably read" user="Standard">
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Rangefinder stop pin" name="RNGFNDA_STOP_PIN" documentation="Digital pin that enables/disables rangefinder measurement for the pwm rangefinder. A value of -1 means no pin. If this is set, then the pin is set to 1 to enable the rangefinder and set to 0 to disable it. This is used to enable powersaving when out of range." user="Standard">
<values>
<value code="-1">Not Used</value>
<value code="50">Pixhawk AUXOUT1</value>
<value code="51">Pixhawk AUXOUT2</value>
<value code="52">Pixhawk AUXOUT3</value>
<value code="53">Pixhawk AUXOUT4</value>
<value code="54">Pixhawk AUXOUT5</value>
<value code="55">Pixhawk AUXOUT6</value>
<value code="111">PX4 FMU Relay1</value>
<value code="112">PX4 FMU Relay2</value>
<value code="113">PX4IO Relay1</value>
<value code="114">PX4IO Relay2</value>
<value code="115">PX4IO ACC1</value>
<value code="116">PX4IO ACC2</value>
</values>
</param>
<param humanName="Ratiometric" name="RNGFNDA_RMETRIC" documentation="This parameter sets whether an analog rangefinder is ratiometric. Most analog rangefinders are ratiometric, meaning that their output voltage is influenced by the supply voltage. Some analog rangefinders (such as the SF/02) have their own internal voltage regulators so they are not ratiometric." user="Standard">
<values>
<value code="0">No</value>
<value code="1">Yes</value>
</values>
</param>
<param humanName="Powersave range" name="RNGFNDA_PWRRNG" documentation="This parameter sets the estimated terrain distance in meters above which the sensor will be put into a power saving mode (if available). A value of zero means power saving is not enabled" user="Standard">
<field name="Range">0 32767</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Distance (in cm) from the range finder to the ground" name="RNGFNDA_GNDCLEAR" documentation="This parameter sets the expected range measurement(in cm) that the range finder should return when the vehicle is on the ground." user="Standard">
<field name="Range">5 127</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Bus address of sensor" name="RNGFNDA_ADDR" documentation="This sets the bus address of the sensor, where applicable. Used for the I2C and UAVCAN sensors to allow for multiple sensors on different addresses. A value of 0 disables the sensor." user="Standard">
<field name="Range">0 127</field>
<field name="Increment">1</field>
</param>
<param humanName=" X position offset" name="RNGFNDA_POS_X" documentation="X position of the first rangefinder in body frame. Positive X is forward of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Y position offset" name="RNGFNDA_POS_Y" documentation="Y position of the first rangefinder in body frame. Positive Y is to the right of the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Z position offset" name="RNGFNDA_POS_Z" documentation="Z position of the first rangefinder in body frame. Positive Z is down from the origin. Use the zero range datum point if supplied." user="Advanced">
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Rangefinder orientation" name="RNGFNDA_ORIENT" documentation="Orientation of rangefinder" user="Advanced">
<values>
<value code="0">Forward</value>
<value code=" 1">Forward-Right</value>
<value code=" 2">Right</value>
<value code=" 3">Back-Right</value>
<value code=" 4">Back</value>
<value code=" 5">Back-Left</value>
<value code=" 6">Left</value>
<value code=" 7">Forward-Left</value>
<value code=" 24">Up</value>
<value code=" 25">Down</value>
</values>
</param>
</parameters>
<parameters name="RNGFNDA_">
<param humanName="Moving Average Range" name="RNGFNDA_WSP_MAVG" documentation="Sets the number of historic range results to use for calculating the current range result. When MAVG is greater than 1, the current range result will be the current measured value averaged with the N-1 previous results" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Moving Median Filter" name="RNGFNDA_WSP_MEDF" documentation="Sets the window size for the real-time median filter. When MEDF is greater than 0 the median filter is active" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Frequency" name="RNGFNDA_WSP_FRQ" documentation="Sets the repetition frequency of the ranging operation in Hertz. Upon entering the desired frequency the system will calculate the nearest frequency that it can handle according to the resolution of internal timers." user="Advanced">
<field name="Range">0 10000</field>
</param>
<param humanName="Multi-pulse averages" name="RNGFNDA_WSP_AVG" documentation="Sets the number of pulses to be used in multi-pulse averaging mode. In this mode, a sequence of rapid fire ranges are taken and then averaged to improve the accuracy of the measurement" user="Advanced">
<field name="Range">0 255</field>
</param>
<param humanName="Sensitivity threshold" name="RNGFNDA_WSP_THR" documentation="Sets the system sensitivity. Larger values of THR represent higher sensitivity. The system may limit the maximum value of THR to prevent excessive false alarm rates based on settings made at the factory. Set to -1 for automatic threshold adjustments" user="Advanced">
<field name="Range">-1 255</field>
</param>
<param humanName="Baud rate" name="RNGFNDA_WSP_BAUD" documentation="Desired baud rate" user="Advanced">
<values>
<value code="0">Low Speed</value>
<value code="1">High Speed</value>
</values>
</param>
</parameters>
<parameters name="RPM">
<param humanName="RPM type" name="RPM_TYPE" documentation="What type of RPM sensor is connected" user="Standard">
<values>
<value code="0">None</value>
<value code="1">PX4-PWM</value>
<value code="2">AUXPIN</value>
</values>
</param>
<param humanName="RPM scaling" name="RPM_SCALING" documentation="Scaling factor between sensor reading and RPM." user="Standard">
<field name="Increment">0.001</field>
</param>
<param humanName="Maximum RPM" name="RPM_MAX" documentation="Maximum RPM to report" user="Standard">
<field name="Increment">1</field>
</param>
<param humanName="Minimum RPM" name="RPM_MIN" documentation="Minimum RPM to report" user="Standard">
<field name="Increment">1</field>
</param>
<param humanName="Minimum Quality" name="RPM_MIN_QUAL" documentation="Minimum data quality to be used" user="Advanced">
<field name="Increment">0.1</field>
</param>
<param humanName="Input pin number" name="RPM_PIN" documentation="Which pin to use" user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="50">PixhawkAUX1</value>
<value code="51">PixhawkAUX2</value>
<value code="52">PixhawkAUX3</value>
<value code="53">PixhawkAUX4</value>
<value code="54">PixhawkAUX5</value>
<value code="55">PixhawkAUX6</value>
</values>
</param>
<param humanName="Second RPM type" name="RPM2_TYPE" documentation="What type of RPM sensor is connected" user="Advanced">
<values>
<value code="0">None</value>
<value code="1">PX4-PWM</value>
<value code="2">AUXPIN</value>
</values>
</param>
<param humanName="RPM scaling" name="RPM2_SCALING" documentation="Scaling factor between sensor reading and RPM." user="Advanced">
<field name="Increment">0.001</field>
</param>
<param humanName="RPM2 input pin number" name="RPM2_PIN" documentation="Which pin to use" user="Standard">
<values>
<value code="-1">Disabled</value>
<value code="50">PixhawkAUX1</value>
<value code="51">PixhawkAUX2</value>
<value code="52">PixhawkAUX3</value>
<value code="53">PixhawkAUX4</value>
<value code="54">PixhawkAUX5</value>
<value code="55">PixhawkAUX6</value>
</values>
</param>
</parameters>
<parameters name="RSSI_">
<param humanName="RSSI Type" name="RSSI_TYPE" documentation="Radio Receiver RSSI type. If your radio receiver supports RSSI of some kind, set it here, then set its associated RSSI_XXXXX parameters, if any." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">AnalogPin</value>
<value code="2">RCChannelPwmValue</value>
<value code="3">ReceiverProtocol</value>
<value code="4">PWMInputPin</value>
</values>
</param>
<param humanName="Receiver RSSI sensing pin" name="RSSI_ANA_PIN" documentation="Pin used to read the RSSI voltage or PWM value" user="Standard">
<values>
<value code="8">V5 Nano</value>
<value code="11">Pixracer</value>
<value code="13">Pixhawk ADC4</value>
<value code="14">Pixhawk ADC3</value>
<value code="15">Pixhawk ADC6</value>
<value code="15">Pixhawk2 ADC</value>
<value code="50">PixhawkAUX1</value>
<value code="51">PixhawkAUX2</value>
<value code="52">PixhawkAUX3</value>
<value code="53">PixhawkAUX4</value>
<value code="54">PixhawkAUX5</value>
<value code="55">PixhawkAUX6</value>
<value code="103">Pixhawk SBUS</value>
</values>
</param>
<param humanName="RSSI pin's lowest voltage" name="RSSI_PIN_LOW" documentation="RSSI pin's voltage received on the RSSI_ANA_PIN when the signal strength is the weakest. Some radio receivers put out inverted values so this value may be higher than RSSI_PIN_HIGH" user="Standard">
<field name="Range">0 5.0</field>
<field name="Increment">0.01</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="RSSI pin's highest voltage" name="RSSI_PIN_HIGH" documentation="RSSI pin's voltage received on the RSSI_ANA_PIN when the signal strength is the strongest. Some radio receivers put out inverted values so this value may be lower than RSSI_PIN_LOW" user="Standard">
<field name="Range">0 5.0</field>
<field name="Increment">0.01</field>
<field name="Units">V</field>
<field name="UnitText">volt</field>
</param>
<param humanName="Receiver RSSI channel number" name="RSSI_CHANNEL" documentation="The channel number where RSSI will be output by the radio receiver (5 and above)." user="Standard">
<field name="Range">0 16</field>
</param>
<param humanName="RSSI PWM low value" name="RSSI_CHAN_LOW" documentation="PWM value that the radio receiver will put on the RSSI_CHANNEL or RSSI_ANA_PIN when the signal strength is the weakest. Some radio receivers output inverted values so this value may be lower than RSSI_CHAN_HIGH" user="Standard">
<field name="Range">0 2000</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Receiver RSSI PWM high value" name="RSSI_CHAN_HIGH" documentation="PWM value that the radio receiver will put on the RSSI_CHANNEL or RSSI_ANA_PIN when the signal strength is the strongest. Some radio receivers output inverted values so this value may be higher than RSSI_CHAN_LOW" user="Standard">
<field name="Range">0 2000</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
</parameters>
<parameters name="SCHED_">
<param humanName="Scheduler debug level" name="SCHED_DEBUG" documentation='Set to non-zero to enable scheduler debug messages. When set to show "Slips" the scheduler will display a message whenever a scheduled task is delayed due to too much CPU load. When set to ShowOverruns the scheduled will display a message whenever a task takes longer than the limit promised in the task table.' user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="2">ShowSlips</value>
<value code="3">ShowOverruns</value>
</values>
</param>
<param humanName="Scheduling main loop rate" name="SCHED_LOOP_RATE" documentation="This controls the rate of the main control loop in Hz. This should only be changed by developers. This only takes effect on restart. Values over 400 are considered highly experimental." user="Advanced">
<values>
<value code="50">50Hz</value>
<value code="100">100Hz</value>
<value code="200">200Hz</value>
<value code="250">250Hz</value>
<value code="300">300Hz</value>
<value code="400">400Hz</value>
</values>
<field name="RebootRequired">True</field>
</param>
</parameters>
<parameters name="SCR_">
<param humanName="Enable Scripting" name="SCR_ENABLE" documentation="Controls if scripting is enabled" user="Advanced">
<values>
<value code="0">None</value>
<value code="1">Lua Scripts</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Scripting Virtual Machine Instruction Count" name="SCR_VM_I_COUNT" documentation="The number virtual machine instructions that can be run before considering a script to have taken an excessive amount of time" user="Advanced">
<field name="Range">1000 1000000</field>
<field name="Increment">10000</field>
</param>
<param humanName="Scripting Heap Size" name="SCR_HEAP_SIZE" documentation="Amount of memory available for scripting" user="Advanced">
<field name="Range">1024 1048576</field>
<field name="Increment">1024</field>
<field name="RebootRequired">True</field>
</param>
</parameters>
<parameters name="SERIAL">
<param humanName="Serial0 baud rate" name="SERIAL0_BAUD" documentation="The baud rate used on the USB console. Most stm32-based boards can support rates of up to 1500. If you setup a rate you cannot support and then can't connect to your board you should load a firmware from a different vehicle type. That will reset all your parameters to defaults." user="Standard">
<values>
<value code="1">1200</value>
<value code="2">2400</value>
<value code="4">4800</value>
<value code="9">9600</value>
<value code="19">19200</value>
<value code="38">38400</value>
<value code="57">57600</value>
<value code="111">111100</value>
<value code="115">115200</value>
<value code="256">256000</value>
<value code="460">460800</value>
<value code="500">500000</value>
<value code="921">921600</value>
<value code="1500">1500000</value>
</values>
</param>
<param humanName="Console protocol selection" name="SERIAL0_PROTOCOL" documentation="Control what protocol to use on the console. " user="Standard">
<values>
<value code="1">MAVlink1</value>
<value code=" 2">MAVLink2</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Telem1 protocol selection" name="SERIAL1_PROTOCOL" documentation="Control what protocol to use on the Telem1 port. Note that the Frsky options require external converter hardware. See the wiki for details." user="Standard">
<values>
<value code="-1">None</value>
<value code=" 1">MAVLink1</value>
<value code=" 2">MAVLink2</value>
<value code=" 3">Frsky D</value>
<value code=" 4">Frsky SPort</value>
<value code=" 5">GPS</value>
<value code=" 7">Alexmos Gimbal Serial</value>
<value code=" 8">SToRM32 Gimbal Serial</value>
<value code=" 9">Rangefinder</value>
<value code=" 10">FrSky SPort Passthrough (OpenTX)</value>
<value code=" 11">Lidar360</value>
<value code=" 13">Beacon</value>
<value code=" 14">Volz servo out</value>
<value code=" 15">SBus servo out</value>
<value code=" 16">ESC Telemetry</value>
<value code=" 17">Devo Telemetry</value>
<value code=" 18">OpticalFlow</value>
<value code=" 19">RobotisServo</value>
<value code=" 20">NMEA Output</value>
<value code=" 21">WindVane</value>
<value code=" 22">SLCAN</value>
<value code=" 23">RCIN</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Telem1 Baud Rate" name="SERIAL1_BAUD" documentation="The baud rate used on the Telem1 port. Most stm32-based boards can support rates of up to 1500. If you setup a rate you cannot support and then can't connect to your board you should load a firmware from a different vehicle type. That will reset all your parameters to defaults." user="Standard">
<values>
<value code="1">1200</value>
<value code="2">2400</value>
<value code="4">4800</value>
<value code="9">9600</value>
<value code="19">19200</value>
<value code="38">38400</value>
<value code="57">57600</value>
<value code="111">111100</value>
<value code="115">115200</value>
<value code="256">256000</value>
<value code="500">500000</value>
<value code="921">921600</value>
<value code="1500">1500000</value>
</values>
</param>
<param humanName="Telemetry 2 protocol selection" name="SERIAL2_PROTOCOL" documentation="Control what protocol to use on the Telem2 port. Note that the Frsky options require external converter hardware. See the wiki for details." user="Standard">
<values>
<value code="-1">None</value>
<value code=" 1">MAVLink1</value>
<value code=" 2">MAVLink2</value>
<value code=" 3">Frsky D</value>
<value code=" 4">Frsky SPort</value>
<value code=" 5">GPS</value>
<value code=" 7">Alexmos Gimbal Serial</value>
<value code=" 8">SToRM32 Gimbal Serial</value>
<value code=" 9">Rangefinder</value>
<value code=" 10">FrSky SPort Passthrough (OpenTX)</value>
<value code=" 11">Lidar360</value>
<value code=" 13">Beacon</value>
<value code=" 14">Volz servo out</value>
<value code=" 15">SBus servo out</value>
<value code=" 16">ESC Telemetry</value>
<value code=" 17">Devo Telemetry</value>
<value code=" 18">OpticalFlow</value>
<value code=" 19">RobotisServo</value>
<value code=" 20">NMEA Output</value>
<value code=" 21">WindVane</value>
<value code=" 22">SLCAN</value>
<value code=" 23">RCIN</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Telemetry 2 Baud Rate" name="SERIAL2_BAUD" documentation="The baud rate of the Telem2 port. Most stm32-based boards can support rates of up to 1500. If you setup a rate you cannot support and then can't connect to your board you should load a firmware from a different vehicle type. That will reset all your parameters to defaults." user="Standard">
<values>
<value code="1">1200</value>
<value code="2">2400</value>
<value code="4">4800</value>
<value code="9">9600</value>
<value code="19">19200</value>
<value code="38">38400</value>
<value code="57">57600</value>
<value code="111">111100</value>
<value code="115">115200</value>
<value code="256">256000</value>
<value code="500">500000</value>
<value code="921">921600</value>
<value code="1500">1500000</value>
</values>
</param>
<param humanName="Serial 3 (GPS) protocol selection" name="SERIAL3_PROTOCOL" documentation="Control what protocol Serial 3 (GPS) should be used for. Note that the Frsky options require external converter hardware. See the wiki for details." user="Standard">
<values>
<value code="-1">None</value>
<value code=" 1">MAVLink1</value>
<value code=" 2">MAVLink2</value>
<value code=" 3">Frsky D</value>
<value code=" 4">Frsky SPort</value>
<value code=" 5">GPS</value>
<value code=" 7">Alexmos Gimbal Serial</value>
<value code=" 8">SToRM32 Gimbal Serial</value>
<value code=" 9">Rangefinder</value>
<value code=" 10">FrSky SPort Passthrough (OpenTX)</value>
<value code=" 11">Lidar360</value>
<value code=" 13">Beacon</value>
<value code=" 14">Volz servo out</value>
<value code=" 15">SBus servo out</value>
<value code=" 16">ESC Telemetry</value>
<value code=" 17">Devo Telemetry</value>
<value code=" 18">OpticalFlow</value>
<value code=" 19">RobotisServo</value>
<value code=" 20">NMEA Output</value>
<value code=" 21">WindVane</value>
<value code=" 22">SLCAN</value>
<value code=" 23">RCIN</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial 3 (GPS) Baud Rate" name="SERIAL3_BAUD" documentation="The baud rate used for the Serial 3 (GPS). Most stm32-based boards can support rates of up to 1500. If you setup a rate you cannot support and then can't connect to your board you should load a firmware from a different vehicle type. That will reset all your parameters to defaults." user="Standard">
<values>
<value code="1">1200</value>
<value code="2">2400</value>
<value code="4">4800</value>
<value code="9">9600</value>
<value code="19">19200</value>
<value code="38">38400</value>
<value code="57">57600</value>
<value code="111">111100</value>
<value code="115">115200</value>
<value code="256">256000</value>
<value code="500">500000</value>
<value code="921">921600</value>
<value code="1500">1500000</value>
</values>
</param>
<param humanName="Serial4 protocol selection" name="SERIAL4_PROTOCOL" documentation="Control what protocol Serial4 port should be used for. Note that the Frsky options require external converter hardware. See the wiki for details." user="Standard">
<values>
<value code="-1">None</value>
<value code=" 1">MAVLink1</value>
<value code=" 2">MAVLink2</value>
<value code=" 3">Frsky D</value>
<value code=" 4">Frsky SPort</value>
<value code=" 5">GPS</value>
<value code=" 7">Alexmos Gimbal Serial</value>
<value code=" 8">SToRM32 Gimbal Serial</value>
<value code=" 9">Rangefinder</value>
<value code=" 10">FrSky SPort Passthrough (OpenTX)</value>
<value code=" 11">Lidar360</value>
<value code=" 13">Beacon</value>
<value code=" 14">Volz servo out</value>
<value code=" 15">SBus servo out</value>
<value code=" 16">ESC Telemetry</value>
<value code=" 17">Devo Telemetry</value>
<value code=" 18">OpticalFlow</value>
<value code=" 19">RobotisServo</value>
<value code=" 20">NMEA Output</value>
<value code=" 21">WindVane</value>
<value code=" 22">SLCAN</value>
<value code=" 23">RCIN</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial 4 Baud Rate" name="SERIAL4_BAUD" documentation="The baud rate used for Serial4. Most stm32-based boards can support rates of up to 1500. If you setup a rate you cannot support and then can't connect to your board you should load a firmware from a different vehicle type. That will reset all your parameters to defaults." user="Standard">
<values>
<value code="1">1200</value>
<value code="2">2400</value>
<value code="4">4800</value>
<value code="9">9600</value>
<value code="19">19200</value>
<value code="38">38400</value>
<value code="57">57600</value>
<value code="111">111100</value>
<value code="115">115200</value>
<value code="256">256000</value>
<value code="500">500000</value>
<value code="921">921600</value>
<value code="1500">1500000</value>
</values>
</param>
<param humanName="Serial5 protocol selection" name="SERIAL5_PROTOCOL" documentation="Control what protocol Serial5 port should be used for. Note that the Frsky options require external converter hardware. See the wiki for details." user="Standard">
<values>
<value code="-1">None</value>
<value code=" 1">MAVLink1</value>
<value code=" 2">MAVLink2</value>
<value code=" 3">Frsky D</value>
<value code=" 4">Frsky SPort</value>
<value code=" 5">GPS</value>
<value code=" 7">Alexmos Gimbal Serial</value>
<value code=" 8">SToRM32 Gimbal Serial</value>
<value code=" 9">Rangefinder</value>
<value code=" 10">FrSky SPort Passthrough (OpenTX)</value>
<value code=" 11">Lidar360</value>
<value code=" 13">Beacon</value>
<value code=" 14">Volz servo out</value>
<value code=" 15">SBus servo out</value>
<value code=" 16">ESC Telemetry</value>
<value code=" 17">Devo Telemetry</value>
<value code=" 18">OpticalFlow</value>
<value code=" 19">RobotisServo</value>
<value code=" 20">NMEA Output</value>
<value code=" 21">WindVane</value>
<value code=" 22">SLCAN</value>
<value code=" 23">RCIN</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial 5 Baud Rate" name="SERIAL5_BAUD" documentation="The baud rate used for Serial5. Most stm32-based boards can support rates of up to 1500. If you setup a rate you cannot support and then can't connect to your board you should load a firmware from a different vehicle type. That will reset all your parameters to defaults." user="Standard">
<values>
<value code="1">1200</value>
<value code="2">2400</value>
<value code="4">4800</value>
<value code="9">9600</value>
<value code="19">19200</value>
<value code="38">38400</value>
<value code="57">57600</value>
<value code="111">111100</value>
<value code="115">115200</value>
<value code="256">256000</value>
<value code="500">500000</value>
<value code="921">921600</value>
<value code="1500">1500000</value>
</values>
</param>
<param humanName="Serial6 protocol selection" name="SERIAL6_PROTOCOL" documentation="Control what protocol Serial6 port should be used for. Note that the Frsky options require external converter hardware. See the wiki for details." user="Standard">
<values>
<value code="-1">None</value>
<value code=" 1">MAVLink1</value>
<value code=" 2">MAVLink2</value>
<value code=" 3">Frsky D</value>
<value code=" 4">Frsky SPort</value>
<value code=" 5">GPS</value>
<value code=" 7">Alexmos Gimbal Serial</value>
<value code=" 8">SToRM32 Gimbal Serial</value>
<value code=" 9">Rangefinder</value>
<value code=" 10">FrSky SPort Passthrough (OpenTX)</value>
<value code=" 11">Lidar360</value>
<value code=" 13">Beacon</value>
<value code=" 14">Volz servo out</value>
<value code=" 15">SBus servo out</value>
<value code=" 16">ESC Telemetry</value>
<value code=" 17">Devo Telemetry</value>
<value code=" 18">OpticalFlow</value>
<value code=" 19">RobotisServo</value>
<value code=" 20">NMEA Output</value>
<value code=" 21">WindVane</value>
<value code=" 22">SLCAN</value>
<value code=" 23">RCIN</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial 6 Baud Rate" name="SERIAL6_BAUD" documentation="The baud rate used for Serial6. Most stm32-based boards can support rates of up to 1500. If you setup a rate you cannot support and then can't connect to your board you should load a firmware from a different vehicle type. That will reset all your parameters to defaults." user="Standard">
<values>
<value code="1">1200</value>
<value code="2">2400</value>
<value code="4">4800</value>
<value code="9">9600</value>
<value code="19">19200</value>
<value code="38">38400</value>
<value code="57">57600</value>
<value code="111">111100</value>
<value code="115">115200</value>
<value code="256">256000</value>
<value code="500">500000</value>
<value code="921">921600</value>
<value code="1500">1500000</value>
</values>
</param>
<param humanName="Telem1 options" name="SERIAL1_OPTIONS" documentation="Control over UART options. The InvertRX option controls invert of the receive pin. The InvertTX option controls invert of the transmit pin. The HalfDuplex option controls half-duplex (onewire) mode, where both transmit and receive is done on the transmit wire. The Swap option allows the RX and TX pins to be swapped on STM32F7 based boards." user="Advanced">
<field name="Bitmask">0:InvertRX, 1:InvertTX, 2:HalfDuplex, 4:Swap</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Telem2 options" name="SERIAL2_OPTIONS" documentation="Control over UART options. The InvertRX option controls invert of the receive pin. The InvertTX option controls invert of the transmit pin. The HalfDuplex option controls half-duplex (onewire) mode, where both transmit and receive is done on the transmit wire." user="Advanced">
<field name="Bitmask">0:InvertRX, 1:InvertTX, 2:HalfDuplex, 4:Swap</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial3 options" name="SERIAL3_OPTIONS" documentation="Control over UART options. The InvertRX option controls invert of the receive pin. The InvertTX option controls invert of the transmit pin. The HalfDuplex option controls half-duplex (onewire) mode, where both transmit and receive is done on the transmit wire." user="Advanced">
<field name="Bitmask">0:InvertRX, 1:InvertTX, 2:HalfDuplex, 4:Swap</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial4 options" name="SERIAL4_OPTIONS" documentation="Control over UART options. The InvertRX option controls invert of the receive pin. The InvertTX option controls invert of the transmit pin. The HalfDuplex option controls half-duplex (onewire) mode, where both transmit and receive is done on the transmit wire." user="Advanced">
<field name="Bitmask">0:InvertRX, 1:InvertTX, 2:HalfDuplex, 4:Swap</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial5 options" name="SERIAL5_OPTIONS" documentation="Control over UART options. The InvertRX option controls invert of the receive pin. The InvertTX option controls invert of the transmit pin. The HalfDuplex option controls half-duplex (onewire) mode, where both transmit and receive is done on the transmit wire." user="Advanced">
<field name="Bitmask">0:InvertRX, 1:InvertTX, 2:HalfDuplex, 4:Swap</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial6 options" name="SERIAL6_OPTIONS" documentation="Control over UART options. The InvertRX option controls invert of the receive pin. The InvertTX option controls invert of the transmit pin. The HalfDuplex option controls half-duplex (onewire) mode, where both transmit and receive is done on the transmit wire." user="Advanced">
<field name="Bitmask">0:InvertRX, 1:InvertTX, 2:HalfDuplex, 4:Swap</field>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial passthru first port" name="SERIAL_PASS1" documentation="This sets one side of pass-through between two serial ports. Once both sides are set then all data received on either port will be passed to the other port" user="Advanced">
<values>
<value code="-1">Disabled</value>
<value code="0">Serial0</value>
<value code="1">Serial1</value>
<value code="2">Serial2</value>
<value code="3">Serial3</value>
<value code="4">Serial4</value>
<value code="5">Serial5</value>
<value code="6">Serial6</value>
</values>
</param>
<param humanName="Serial passthru second port" name="SERIAL_PASS2" documentation="This sets one side of pass-through between two serial ports. Once both sides are set then all data received on either port will be passed to the other port" user="Advanced">
<values>
<value code="-1">Disabled</value>
<value code="0">Serial0</value>
<value code="1">Serial1</value>
<value code="2">Serial2</value>
<value code="3">Serial3</value>
<value code="4">Serial4</value>
<value code="5">Serial5</value>
<value code="6">Serial6</value>
</values>
</param>
<param humanName="Serial passthru timeout" name="SERIAL_PASSTIMO" documentation="This sets a timeout for serial pass-through in seconds. When the pass-through is enabled by setting the SERIAL_PASS1 and SERIAL_PASS2 parameters then it remains in effect until no data comes from the first port for SERIAL_PASSTIMO seconds. This allows the port to revent to its normal usage (such as MAVLink connection to a GCS) when it is no longer needed. A value of 0 means no timeout." user="Advanced">
<field name="Range">0 120</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Serial7 protocol selection" name="SERIAL7_PROTOCOL" documentation="Control what protocol Serial7 port should be used for. Note that the Frsky options require external converter hardware. See the wiki for details." user="Standard">
<values>
<value code="-1">None</value>
<value code=" 1">MAVLink1</value>
<value code=" 2">MAVLink2</value>
<value code=" 3">Frsky D</value>
<value code=" 4">Frsky SPort</value>
<value code=" 5">GPS</value>
<value code=" 7">Alexmos Gimbal Serial</value>
<value code=" 8">SToRM32 Gimbal Serial</value>
<value code=" 9">Rangefinder</value>
<value code=" 10">FrSky SPort Passthrough (OpenTX)</value>
<value code=" 11">Lidar360</value>
<value code=" 13">Beacon</value>
<value code=" 14">Volz servo out</value>
<value code=" 15">SBus servo out</value>
<value code=" 16">ESC Telemetry</value>
<value code=" 17">Devo Telemetry</value>
<value code=" 18">OpticalFlow</value>
<value code=" 19">RobotisServo</value>
<value code=" 20">NMEA Output</value>
<value code=" 21">WindVane</value>
<value code=" 22">SLCAN</value>
<value code=" 23">RCIN</value>
</values>
<field name="RebootRequired">True</field>
</param>
<param humanName="Serial 7 Baud Rate" name="SERIAL7_BAUD" documentation="The baud rate used for Serial7. Most stm32-based boards can support rates of up to 1500. If you setup a rate you cannot support and then can't connect to your board you should load a firmware from a different vehicle type. That will reset all your parameters to defaults." user="Standard">
<values>
<value code="1">1200</value>
<value code="2">2400</value>
<value code="4">4800</value>
<value code="9">9600</value>
<value code="19">19200</value>
<value code="38">38400</value>
<value code="57">57600</value>
<value code="111">111100</value>
<value code="115">115200</value>
<value code="256">256000</value>
<value code="500">500000</value>
<value code="921">921600</value>
<value code="1500">1500000</value>
</values>
</param>
<param humanName="Serial7 options" name="SERIAL7_OPTIONS" documentation="Control over UART options. The InvertRX option controls invert of the receive pin. The InvertTX option controls invert of the transmit pin. The HalfDuplex option controls half-duplex (onewire) mode, where both transmit and receive is done on the transmit wire." user="Advanced">
<field name="Bitmask">0:InvertRX, 1:InvertTX, 2:HalfDuplex, 4:Swap</field>
<field name="RebootRequired">True</field>
</param>
</parameters>
<parameters name="SERVO">
<param humanName="Automatic servo trim" name="SERVO_AUTO_TRIM" documentation="This enables automatic servo trim in flight. Servos will be trimed in stabilized flight modes when the aircraft is close to level. Changes to servo trim will be saved every 10 seconds and will persist between flights." user="Advanced">
<values>
<value code="0">Disable</value>
<value code="1">Enable</value>
</values>
</param>
<param humanName="Servo default output rate" name="SERVO_RATE" documentation="This sets the default output rate in Hz for all outputs." user="Advanced">
<field name="Range">25 400</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
</parameters>
<parameters name="SERVO10_">
<param humanName="Minimum PWM" name="SERVO10_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO10_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO10_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO10_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO10_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO11_">
<param humanName="Minimum PWM" name="SERVO11_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO11_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO11_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO11_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO11_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO12_">
<param humanName="Minimum PWM" name="SERVO12_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO12_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO12_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO12_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO12_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO13_">
<param humanName="Minimum PWM" name="SERVO13_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO13_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO13_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO13_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO13_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO14_">
<param humanName="Minimum PWM" name="SERVO14_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO14_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO14_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO14_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO14_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO15_">
<param humanName="Minimum PWM" name="SERVO15_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO15_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO15_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO15_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO15_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO16_">
<param humanName="Minimum PWM" name="SERVO16_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO16_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO16_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO16_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO16_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO1_">
<param humanName="Minimum PWM" name="SERVO1_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO1_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO1_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO1_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO1_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO2_">
<param humanName="Minimum PWM" name="SERVO2_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO2_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO2_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO2_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO2_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO3_">
<param humanName="Minimum PWM" name="SERVO3_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO3_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO3_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO3_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO3_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO4_">
<param humanName="Minimum PWM" name="SERVO4_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO4_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO4_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO4_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO4_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO5_">
<param humanName="Minimum PWM" name="SERVO5_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO5_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO5_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO5_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO5_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO6_">
<param humanName="Minimum PWM" name="SERVO6_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO6_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO6_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO6_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO6_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO7_">
<param humanName="Minimum PWM" name="SERVO7_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO7_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO7_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO7_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO7_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO8_">
<param humanName="Minimum PWM" name="SERVO8_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO8_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO8_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO8_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO8_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO9_">
<param humanName="Minimum PWM" name="SERVO9_MIN" documentation="minimum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">500 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Maximum PWM" name="SERVO9_MAX" documentation="maximum PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Trim PWM" name="SERVO9_TRIM" documentation="Trim PWM pulse width in microseconds. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit." user="Standard">
<field name="Range">800 2200</field>
<field name="Increment">1</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Servo reverse" name="SERVO9_REVERSED" documentation="Reverse servo operation. Set to 0 for normal operation. Set to 1 to reverse this output channel." user="Standard">
<values>
<value code="0">Normal</value>
<value code="1">Reversed</value>
</values>
</param>
<param humanName="Servo output function" name="SERVO9_FUNCTION" documentation="Function assigned to this servo. Seeing this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">RCPassThru</value>
<value code="2">Flap</value>
<value code="3">Flap_auto</value>
<value code="4">Aileron</value>
<value code="6">mount_pan</value>
<value code="7">mount_tilt</value>
<value code="8">mount_roll</value>
<value code="9">mount_open</value>
<value code="10">camera_trigger</value>
<value code="11">release</value>
<value code="12">mount2_pan</value>
<value code="13">mount2_tilt</value>
<value code="14">mount2_roll</value>
<value code="15">mount2_open</value>
<value code="16">DifferentialSpoilerLeft1</value>
<value code="17">DifferentialSpoilerRight1</value>
<value code="19">Elevator</value>
<value code="21">Rudder</value>
<value code="24">FlaperonLeft</value>
<value code="25">FlaperonRight</value>
<value code="26">GroundSteering</value>
<value code="27">Parachute</value>
<value code="28">EPM</value>
<value code="29">LandingGear</value>
<value code="30">EngineRunEnable</value>
<value code="31">HeliRSC</value>
<value code="32">HeliTailRSC</value>
<value code="33">Motor1</value>
<value code="34">Motor2</value>
<value code="35">Motor3</value>
<value code="36">Motor4</value>
<value code="37">Motor5</value>
<value code="38">Motor6</value>
<value code="39">Motor7</value>
<value code="40">Motor8</value>
<value code="41">MotorTilt</value>
<value code="51">RCIN1</value>
<value code="52">RCIN2</value>
<value code="53">RCIN3</value>
<value code="54">RCIN4</value>
<value code="55">RCIN5</value>
<value code="56">RCIN6</value>
<value code="57">RCIN7</value>
<value code="58">RCIN8</value>
<value code="59">RCIN9</value>
<value code="60">RCIN10</value>
<value code="61">RCIN11</value>
<value code="62">RCIN12</value>
<value code="63">RCIN13</value>
<value code="64">RCIN14</value>
<value code="65">RCIN15</value>
<value code="66">RCIN16</value>
<value code="67">Ignition</value>
<value code="68">Choke</value>
<value code="69">Starter</value>
<value code="70">Throttle</value>
<value code="71">TrackerYaw</value>
<value code="72">TrackerPitch</value>
<value code="73">ThrottleLeft</value>
<value code="74">ThrottleRight</value>
<value code="75">tiltMotorLeft</value>
<value code="76">tiltMotorRight</value>
<value code="77">ElevonLeft</value>
<value code="78">ElevonRight</value>
<value code="79">VTailLeft</value>
<value code="80">VTailRight</value>
<value code="81">BoostThrottle</value>
<value code="82">Motor9</value>
<value code="83">Motor10</value>
<value code="84">Motor11</value>
<value code="85">Motor12</value>
<value code="86">DifferentialSpoilerLeft2</value>
<value code="87">DifferentialSpoilerRight2</value>
<value code="88">Winch</value>
<value code="89">Main Sail</value>
<value code="90">Camera ISO</value>
<value code="91">Camera Focus</value>
<value code="92">Camera Shutter Speed</value>
<value code="94">Script 1</value>
<value code="95">Script 2</value>
<value code="96">Script 3</value>
<value code="97">Script 4</value>
<value code="98">Script 5</value>
<value code="99">Script 6</value>
<value code="100">Script 7</value>
<value code="101">Script 8</value>
<value code="102">Script 9</value>
<value code="103">Script 10</value>
<value code="104">Script 11</value>
<value code="105">Script 12</value>
<value code="106">Script 13</value>
<value code="107">Script 14</value>
<value code="108">Script 15</value>
<value code="109">Script 16</value>
</values>
</param>
</parameters>
<parameters name="SERVO_BLH_">
<param humanName="BLHeli Channel Bitmask" name="SERVO_BLH_MASK" documentation="Enable of BLHeli pass-thru servo protocol support to specific channels. This mask is in addition to motors enabled using SERVO_BLH_AUTO (if any)" user="Advanced">
<field name="Bitmask">0:Channel1,1:Channel2,2:Channel3,3:Channel4,4:Channel5,5:Channel6,6:Channel7,7:Channel8,8:Channel9,9:Channel10,10:Channel11,11:Channel12,12:Channel13,13:Channel14,14:Channel15,15:Channel16</field>
</param>
<param humanName="BLHeli auto-enable for multicopter motors" name="SERVO_BLH_AUTO" documentation="If set to 1 this auto-enables BLHeli pass-thru support for all multicopter motors" user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHeli internal interface test" name="SERVO_BLH_TEST" documentation="Setting SERVO_BLH_TEST to a motor number enables an internal test of the BLHeli ESC protocol to the corresponding ESC. The debug output is displayed on the USB console." user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">TestMotor1</value>
<value code="2">TestMotor2</value>
<value code="3">TestMotor3</value>
<value code="4">TestMotor4</value>
<value code="5">TestMotor5</value>
<value code="6">TestMotor6</value>
<value code="7">TestMotor7</value>
<value code="8">TestMotor8</value>
</values>
</param>
<param humanName="BLHeli protocol timeout" name="SERVO_BLH_TMOUT" documentation="This sets the inactivity timeout for the BLHeli protocol in seconds. If no packets are received in this time normal MAVLink operations are resumed. A value of 0 means no timeout" user="Standard">
<field name="Range">0 300</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="BLHeli telemetry rate" name="SERVO_BLH_TRATE" documentation="This sets the rate in Hz for requesting telemetry from ESCs. It is the rate per ESC. Setting to zero disables telemetry requests" user="Standard">
<field name="Range">0 500</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="BLHeli debug level" name="SERVO_BLH_DEBUG" documentation="When set to 1 this enabled verbose debugging output over MAVLink when the blheli protocol is active. This can be used to diagnose failures." user="Standard">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="BLHeli output type override" name="SERVO_BLH_OTYPE" documentation="When set to a non-zero value this overrides the output type for the output channels given by SERVO_BLH_MASK. This can be used to enable DShot on outputs that are not part of the multicopter motors group." user="Advanced">
<values>
<value code="0">None</value>
<value code="1">OneShot</value>
<value code="2">OneShot125</value>
<value code="3">Brushed</value>
<value code="4">DShot150</value>
<value code="5">DShot300</value>
<value code="6">DShot600</value>
<value code="7">DShot1200</value>
</values>
</param>
<param humanName="Control port" name="SERVO_BLH_PORT" documentation="This sets the telemetry port to use for blheli pass-thru" user="Advanced">
<values>
<value code="0">Console</value>
<value code="1">Telem1</value>
<value code="2">Telem2</value>
<value code="3">Telem3</value>
<value code="4">Telem4</value>
<value code="5">Telem5</value>
</values>
</param>
<param humanName="BLHeli Motor Poles" name="SERVO_BLH_POLES" documentation="This allows calculation of true RPM from ESC's eRPM. The default is 14." user="Advanced">
<field name="Range">1 127</field>
</param>
<param humanName="BLHeli bitmask of reversible channels" name="SERVO_BLH_REMASK" documentation="Mask of channels which are reversible. This is used for ESCs which have been configured in '3D' mode, allowing for the motor to spin in either direction" user="Advanced">
<field name="Bitmask">0:Channel1,1:Channel2,2:Channel3,3:Channel4,4:Channel5,5:Channel6,6:Channel7,7:Channel8,8:Channel9,9:Channel10,10:Channel11,11:Channel12,12:Channel13,13:Channel14,14:Channel15,15:Channel16</field>
</param>
</parameters>
<parameters name="SERVO_ROB_">
<param humanName="Robotis servo position min" name="SERVO_ROB_POSMIN" documentation="Position minimum at servo min value. This should be within the position control range of the servos, normally 0 to 4095" user="Standard">
<field name="Range">0 4095</field>
</param>
<param humanName="Robotis servo position max" name="SERVO_ROB_POSMAX" documentation="Position maximum at servo max value. This should be within the position control range of the servos, normally 0 to 4095" user="Standard">
<field name="Range">0 4095</field>
</param>
</parameters>
<parameters name="SERVO_SBUS_">
<param humanName="SBUS default output rate" name="SERVO_SBUS_RATE" documentation="This sets the SBUS output frame rate in Hz." user="Advanced">
<field name="Range">25 250</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
</parameters>
<parameters name="SERVO_VOLZ_">
<param humanName="Channel Bitmask" name="SERVO_VOLZ_MASK" documentation="Enable of volz servo protocol to specific channels" user="Standard">
<field name="Bitmask">0:Channel1,1:Channel2,2:Channel3,3:Channel4,4:Channel5,5:Channel6,6:Channel7,7:Channel8,8:Channel9,9:Channel10,10:Channel11,11:Channel12,12:Channel13,13:Channel14,14:Channel15,15:Channel16</field>
</param>
</parameters>
<parameters name="SIM_GRPE_">
<param humanName="Gripper servo Sim enable/disable" name="SIM_GRPE_ENABLE" documentation="Allows you to enable (1) or disable (0) the gripper servo simulation" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Gripper emp pin" name="SIM_GRPE_PIN" documentation="The pin number that the gripper emp is connected to. (start at 1)" user="Advanced">
<field name="Range">0 15</field>
</param>
</parameters>
<parameters name="SIM_GRPS_">
<param humanName="Gripper servo Sim enable/disable" name="SIM_GRPS_ENABLE" documentation="Allows you to enable (1) or disable (0) the gripper servo simulation" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Gripper servo pin" name="SIM_GRPS_PIN" documentation="The pin number that the gripper servo is connected to. (start at 1)" user="Advanced">
<field name="Range">0 15</field>
</param>
<param humanName="Gripper Grab PWM" name="SIM_GRPS_GRAB" documentation="PWM value in microseconds sent to Gripper to initiate grabbing the cargo" user="Advanced">
<field name="Range">1000 2000</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Gripper Release PWM" name="SIM_GRPS_RELEASE" documentation="PWM value in microseconds sent to Gripper to release the cargo" user="Advanced">
<field name="Range">1000 2000</field>
<field name="Units">PWM</field>
<field name="UnitText">PWM in microseconds</field>
</param>
<param humanName="Gripper close direction" name="SIM_GRPS_REVERSE" documentation="Reverse the closing direction." user="Advanced">
<values>
<value code="0">Normal</value>
<value code="1">Reverse</value>
</values>
</param>
</parameters>
<parameters name="SIM_PLD_">
<param humanName="Preland device Sim enable/disable" name="SIM_PLD_ENABLE" documentation="Allows you to enable (1) or disable (0) the Preland simulation" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Precland device origin's latitude" name="SIM_PLD_LAT" documentation="Precland device origin's latitude" user="Advanced">
<field name="Range">-90 90</field>
<field name="Increment">0.000001</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Precland device origin's longitude" name="SIM_PLD_LON" documentation="Precland device origin's longitude" user="Advanced">
<field name="Range">-180 180</field>
<field name="Increment">0.000001</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Precland device origin's height above sealevel" name="SIM_PLD_HEIGHT" documentation="Precland device origin's height above sealevel" user="Advanced">
<field name="Range">0 10000</field>
<field name="Increment">1</field>
<field name="Units">cm</field>
<field name="UnitText">centimeters</field>
</param>
<param humanName="Precland device systems rotation from north" name="SIM_PLD_YAW" documentation="Precland device systems rotation from north" user="Advanced">
<field name="Range">-180 +180</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Precland device update rate" name="SIM_PLD_RATE" documentation="Precland device rate. e.g led patter refresh rate, RF message rate, etc." user="Advanced">
<field name="Range">0 200</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Precland device radiance type" name="SIM_PLD_TYPE" documentation="Precland device radiance type: it can be a cylinder, a cone, or a sphere." user="Advanced">
<values>
<value code="0">cylinder</value>
<value code="1">cone</value>
<value code="2">sphere</value>
</values>
</param>
<param humanName="Precland device alt range" name="SIM_PLD_ALT_LIMIT" documentation="Precland device maximum range altitude" user="Advanced">
<field name="Range">0 100</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Precland device lateral range" name="SIM_PLD_DIST_LIMIT" documentation="Precland device maximum lateral range" user="Advanced">
<field name="Range">5 100</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
</parameters>
<parameters name="SIM_SPR_">
<param humanName="Gripper servo Sim enable/disable" name="SIM_SPR_ENABLE" documentation="Allows you to enable (1) or disable (0) the gripper servo simulation" user="Advanced">
<values>
<value code="0">Disabled</value>
<value code="1">Enabled</value>
</values>
</param>
<param humanName="Sprayer pump pin" name="SIM_SPR_PUMP" documentation="The pin number that the Sprayer pump is connected to. (start at 1)" user="Advanced">
<field name="Range">0 15</field>
</param>
<param humanName="Sprayer spinner servo pin" name="SIM_SPR_SPIN" documentation="The pin number that the Sprayer spinner servo is connected to. (start at 1)" user="Advanced">
<field name="Range">0 15</field>
</param>
</parameters>
<parameters name="SOAR_">
<param humanName="Is the soaring mode enabled or not" name="SOAR_ENABLE" documentation="Toggles the soaring mode on and off" user="Advanced">
<values>
<value code="0">Disable</value>
<value code="1">Enable</value>
</values>
</param>
<param humanName="Vertical v-speed" name="SOAR_VSPEED" documentation="Rate of climb to trigger themalling speed" user="Advanced">
<field name="Range">0 10</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Distance to thermal center" name="SOAR_DIST_AHEAD" documentation="Initial guess of the distance to the thermal center" user="Advanced">
<field name="Range">0 100</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Minimum thermalling time" name="SOAR_MIN_THML_S" documentation="Minimum number of seconds to spend thermalling" user="Advanced">
<field name="Range">0 32768</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Minimum cruising time" name="SOAR_MIN_CRSE_S" documentation="Minimum number of seconds to spend cruising" user="Advanced">
<field name="Range">0 32768</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Cl factor" name="SOAR_POLAR_K" documentation="Cl factor 2*m*g/(rho*S)" user="Advanced">
<field name="Range">0 0.5</field>
<field name="Units">m.m/s/s</field>
<field name="UnitText">square meter per square second</field>
</param>
<param humanName="Maximum soaring altitude, relative to the home location" name="SOAR_ALT_MAX" documentation="Don't thermal any higher than this." user="Advanced">
<field name="Range">0 1000.0</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Minimum soaring altitude, relative to the home location" name="SOAR_ALT_MIN" documentation="Don't get any lower than this." user="Advanced">
<field name="Range">0 1000.0</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Maximum power altitude, relative to the home location" name="SOAR_ALT_CUTOFF" documentation="Cut off throttle at this alt." user="Advanced">
<field name="Range">0 1000.0</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="(Optional) RC channel that toggles the soaring controller on and off" name="SOAR_ENABLE_CH" documentation="Toggles the soaring controller on and off. This parameter has any effect only if SOAR_ENABLE is set to 1 and this parameter is set to a valid non-zero channel number. When set, soaring will be activated when RC input to the specified channel is greater than or equal to 1700." user="Advanced">
<field name="Range">0 16</field>
</param>
</parameters>
<parameters name="SR0_">
<param humanName="Raw sensor stream rate" name="SR0_RAW_SENS" documentation="Raw sensor stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extended status stream rate to ground station" name="SR0_EXT_STAT" documentation="Extended status stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="RC Channel stream rate to ground station" name="SR0_RC_CHAN" documentation="RC Channel stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Raw Control stream rate to ground station" name="SR0_RAW_CTRL" documentation="Raw Control stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Position stream rate to ground station" name="SR0_POSITION" documentation="Position stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 1 stream rate to ground station" name="SR0_EXTRA1" documentation="Extra data type 1 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 2 stream rate to ground station" name="SR0_EXTRA2" documentation="Extra data type 2 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 3 stream rate to ground station" name="SR0_EXTRA3" documentation="Extra data type 3 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Parameter stream rate to ground station" name="SR0_PARAMS" documentation="Parameter stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="ADSB stream rate to ground station" name="SR0_ADSB" documentation="ADSB stream rate to ground station" user="Advanced">
<field name="Range">0 50</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
</parameters>
<parameters name="SR1_">
<param humanName="Raw sensor stream rate" name="SR1_RAW_SENS" documentation="Raw sensor stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extended status stream rate to ground station" name="SR1_EXT_STAT" documentation="Extended status stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="RC Channel stream rate to ground station" name="SR1_RC_CHAN" documentation="RC Channel stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Raw Control stream rate to ground station" name="SR1_RAW_CTRL" documentation="Raw Control stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Position stream rate to ground station" name="SR1_POSITION" documentation="Position stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 1 stream rate to ground station" name="SR1_EXTRA1" documentation="Extra data type 1 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 2 stream rate to ground station" name="SR1_EXTRA2" documentation="Extra data type 2 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 3 stream rate to ground station" name="SR1_EXTRA3" documentation="Extra data type 3 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Parameter stream rate to ground station" name="SR1_PARAMS" documentation="Parameter stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="ADSB stream rate to ground station" name="SR1_ADSB" documentation="ADSB stream rate to ground station" user="Advanced">
<field name="Range">0 50</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
</parameters>
<parameters name="SR2_">
<param humanName="Raw sensor stream rate" name="SR2_RAW_SENS" documentation="Raw sensor stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extended status stream rate to ground station" name="SR2_EXT_STAT" documentation="Extended status stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="RC Channel stream rate to ground station" name="SR2_RC_CHAN" documentation="RC Channel stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Raw Control stream rate to ground station" name="SR2_RAW_CTRL" documentation="Raw Control stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Position stream rate to ground station" name="SR2_POSITION" documentation="Position stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 1 stream rate to ground station" name="SR2_EXTRA1" documentation="Extra data type 1 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 2 stream rate to ground station" name="SR2_EXTRA2" documentation="Extra data type 2 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 3 stream rate to ground station" name="SR2_EXTRA3" documentation="Extra data type 3 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Parameter stream rate to ground station" name="SR2_PARAMS" documentation="Parameter stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="ADSB stream rate to ground station" name="SR2_ADSB" documentation="ADSB stream rate to ground station" user="Advanced">
<field name="Range">0 50</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
</parameters>
<parameters name="SR3_">
<param humanName="Raw sensor stream rate" name="SR3_RAW_SENS" documentation="Raw sensor stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extended status stream rate to ground station" name="SR3_EXT_STAT" documentation="Extended status stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="RC Channel stream rate to ground station" name="SR3_RC_CHAN" documentation="RC Channel stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Raw Control stream rate to ground station" name="SR3_RAW_CTRL" documentation="Raw Control stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Position stream rate to ground station" name="SR3_POSITION" documentation="Position stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 1 stream rate to ground station" name="SR3_EXTRA1" documentation="Extra data type 1 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 2 stream rate to ground station" name="SR3_EXTRA2" documentation="Extra data type 2 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Extra data type 3 stream rate to ground station" name="SR3_EXTRA3" documentation="Extra data type 3 stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="Parameter stream rate to ground station" name="SR3_PARAMS" documentation="Parameter stream rate to ground station" user="Advanced">
<field name="Range">0 10</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
<param humanName="ADSB stream rate to ground station" name="SR3_ADSB" documentation="ADSB stream rate to ground station" user="Advanced">
<field name="Range">0 50</field>
<field name="Increment">1</field>
<field name="Units">Hz</field>
<field name="UnitText">hertz</field>
</param>
</parameters>
<parameters name="STAT">
<param humanName="Boot Count" name="STAT_BOOTCNT" documentation="Number of times board has been booted" user="Standard">
<field name="ReadOnly">True</field>
</param>
<param humanName="Total FlightTime" name="STAT_FLTTIME" documentation="Total FlightTime (seconds)" user="Standard">
<field name="ReadOnly">True</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Total RunTime" name="STAT_RUNTIME" documentation="Total time autopilot has run" user="Standard">
<field name="ReadOnly">True</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Statistics Reset Time" name="STAT_RESET" documentation="Seconds since January 1st 2016 (Unix epoch+1451606400) since statistics reset (set to 0 to reset statistics)" user="Standard">
<field name="ReadOnly">True</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
</parameters>
<parameters name="STEER2SRV_">
<param humanName="Steering Time Constant" name="STEER2SRV_TCONST" documentation="This controls the time constant in seconds from demanded to achieved steering angle. A value of 0.75 is a good default and will work with nearly all rovers. Ground steering in aircraft needs a bit smaller time constant, and a value of 0.5 is recommended for best ground handling in fixed wing aircraft. A value of 0.75 means that the controller will try to correct any deviation between the desired and actual steering angle in 0.75 seconds. Advanced users may want to reduce this time to obtain a faster response but there is no point setting a time less than the vehicle can achieve." user="Advanced">
<field name="Range">0.4 1.0</field>
<field name="Increment">0.1</field>
<field name="Units">s</field>
<field name="UnitText">seconds</field>
</param>
<param humanName="Steering turning gain" name="STEER2SRV_P" documentation="The proportional gain for steering. This should be approximately equal to the diameter of the turning circle of the vehicle at low speed and maximum steering angle" user="User">
<field name="Range">0.1 10.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Integrator Gain" name="STEER2SRV_I" documentation="This is the gain from the integral of steering angle. Increasing this gain causes the controller to trim out steady offsets due to an out of trim vehicle." user="User">
<field name="Range">0 1.0</field>
<field name="Increment">0.05</field>
</param>
<param humanName="Damping Gain" name="STEER2SRV_D" documentation="This adjusts the damping of the steering control loop. This gain helps to reduce steering jitter with vibration. It should be increased in 0.01 increments as too high a value can lead to a high frequency steering oscillation that could overstress the vehicle." user="User">
<field name="Range">0 0.1</field>
<field name="Increment">0.01</field>
</param>
<param humanName="Integrator limit" name="STEER2SRV_IMAX" documentation="This limits the number of degrees of steering in centi-degrees over which the integrator will operate. At the default setting of 1500 centi-degrees, the integrator will be limited to +- 15 degrees of servo travel. The maximum servo deflection is +- 45 centi-degrees, so the default value represents a 1/3rd of the total control throw which is adequate unless the vehicle is severely out of trim." user="Advanced">
<field name="Range">0 4500</field>
<field name="Increment">1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
<param humanName="Minimum speed" name="STEER2SRV_MINSPD" documentation="This is the minimum assumed ground speed in meters/second for steering. Having a minimum speed prevents oscillations when the vehicle first starts moving. The vehicle can still drive slower than this limit, but the steering calculations will be done based on this minimum speed." user="User">
<field name="Range">0 5</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Steering feed forward" name="STEER2SRV_FF" documentation="The feed forward gain for steering this is the ratio of the achieved turn rate to applied steering. A value of 1 means that the vehicle would yaw at a rate of 45 degrees per second with full steering deflection at 1m/s ground speed." user="User">
<field name="Range">0.0 10.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Derating speed" name="STEER2SRV_DRTSPD" documentation="Speed after that the maximum degree of steering will start to derate. Set this speed to a maximum speed that a plane can do controlled turn at maximum angle of steering wheel without rolling to wing. If 0 then no derating is used." user="Advanced">
<field name="Range">0.0 30.0</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Derating factor" name="STEER2SRV_DRTFCT" documentation='Degrees of steering wheel to derate at each additional m/s of speed above "Derating speed". Should be set so that at higher speeds the plane does not roll to the wing in turns.' user="Advanced">
<field name="Range">0.0 50.0</field>
<field name="Increment">0.1</field>
<field name="Units">deg/m/s</field>
<field name="UnitText">degrees per meter per second</field>
</param>
<param humanName="Minimum angle of wheel" name="STEER2SRV_DRTMIN" documentation="The angle that limits smallest angle of steering wheel at maximum speed. Even if it should derate below, it will stop derating at this angle." user="Advanced">
<field name="Range">0.0 4500.0</field>
<field name="Increment">0.1</field>
<field name="Units">cdeg</field>
<field name="UnitText">centidegrees</field>
</param>
</parameters>
<parameters name="TECS_">
<param humanName="Maximum Climb Rate (metres/sec)" name="TECS_CLMB_MAX" documentation="Maximum demanded climb rate. Do not set higher than the climb speed at THR_MAX at TRIM_ARSPD_CM when the battery is at low voltage. Reduce value if airspeed cannot be maintained on ascent. Increase value if throttle does not increase significantly to ascend." user="Standard">
<field name="Range">0.1 20.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Minimum Sink Rate (metres/sec)" name="TECS_SINK_MIN" documentation="Minimum sink rate when at THR_MIN and TRIM_ARSPD_CM." user="Standard">
<field name="Range">0.1 10.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Controller time constant (sec)" name="TECS_TIME_CONST" documentation="Time constant of the TECS control algorithm. Small values make faster altitude corrections but can cause overshoot and aggressive behavior." user="Advanced">
<field name="Range">3.0 10.0</field>
<field name="Increment">0.2</field>
</param>
<param humanName="Controller throttle damping" name="TECS_THR_DAMP" documentation="Damping gain for throttle demand loop. Slows the throttle response to correct for speed and height oscillations." user="Advanced">
<field name="Range">0.1 1.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Controller integrator" name="TECS_INTEG_GAIN" documentation="Integrator gain to trim out long-term speed and height errors." user="Advanced">
<field name="Range">0.0 0.5</field>
<field name="Increment">0.02</field>
</param>
<param humanName="Vertical Acceleration Limit (metres/sec^2)" name="TECS_VERT_ACC" documentation="Maximum vertical acceleration used to correct speed or height errors." user="Advanced">
<field name="Range">1.0 10.0</field>
<field name="Increment">0.5</field>
</param>
<param humanName="Height complementary filter frequency (radians/sec)" name="TECS_HGT_OMEGA" documentation="This is the cross-over frequency of the complementary filter used to fuse vertical acceleration and baro alt to obtain an estimate of height rate and height." user="Advanced">
<field name="Range">1.0 5.0</field>
<field name="Increment">0.05</field>
</param>
<param humanName="Speed complementary filter frequency (radians/sec)" name="TECS_SPD_OMEGA" documentation="This is the cross-over frequency of the complementary filter used to fuse longitudinal acceleration and airspeed to obtain a lower noise and lag estimate of airspeed." user="Advanced">
<field name="Range">0.5 2.0</field>
<field name="Increment">0.05</field>
</param>
<param humanName="Bank angle compensation gain" name="TECS_RLL2THR" documentation="Gain from bank angle to throttle to compensate for loss of airspeed from drag in turns. Set to approximately 10x the sink rate in m/s caused by a 45-degree turn. High efficiency models may need less while less efficient aircraft may need more. Should be tuned in an automatic mission with waypoints and turns greater than 90 degrees. Tune with PTCH2SV_RLL and KFF_RDDRMIX to achieve constant airspeed, constant altitude turns." user="Advanced">
<field name="Range">5.0 30.0</field>
<field name="Increment">1.0</field>
</param>
<param humanName="Weighting applied to speed control" name="TECS_SPDWEIGHT" documentation="Mixing of pitch and throttle correction for height and airspeed errors. Pitch controls altitude and throttle controls airspeed if set to 0. Pitch controls airspeed and throttle controls altitude if set to 2 (good for gliders). Blended if set to 1." user="Advanced">
<field name="Range">0.0 2.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Controller pitch damping" name="TECS_PTCH_DAMP" documentation="Damping gain for pitch control from TECS control.  Increasing may correct for oscillations in speed and height, but too much may cause additional oscillation and degraded control." user="Advanced">
<field name="Range">0.1 1.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Maximum Descent Rate (metres/sec)" name="TECS_SINK_MAX" documentation="Maximum demanded descent rate. Do not set higher than the vertical speed the aircraft can maintain at THR_MIN, TECS_PITCH_MIN, and ARSPD_FBW_MAX." user="User">
<field name="Range">0.0 20.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Airspeed during landing approach (m/s)" name="TECS_LAND_ARSPD" documentation="When performing an autonomus landing, this value is used as the goal airspeed during approach.  Note that this parameter is not useful if your platform does not have an airspeed sensor (use TECS_LAND_THR instead).  If negative then this value is not used during landing." user="User">
<field name="Range">-1 127</field>
<field name="Increment">1</field>
</param>
<param humanName="Cruise throttle during landing approach (percentage)" name="TECS_LAND_THR" documentation="Use this parameter instead of LAND_ARSPD if your platform does not have an airspeed sensor.  It is the cruise throttle during landing approach.  If this value is negative then it is disabled and TECS_LAND_ARSPD is used instead." user="User">
<field name="Range">-1 100</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Weighting applied to speed control during landing." name="TECS_LAND_SPDWGT" documentation="Same as SPDWEIGHT parameter, with the exception that this parameter is applied during landing flight stages.  A value closer to 2 will result in the plane ignoring height error during landing and our experience has been that the plane will therefore keep the nose up -- sometimes good for a glider landing (with the side effect that you will likely glide a ways past the landing point).  A value closer to 0 results in the plane ignoring speed error -- use caution when lowering the value below 1 -- ignoring speed could result in a stall. Values between 0 and 2 are valid values for a fixed landing weight. When using -1 the weight will be scaled during the landing. At the start of the landing approach it starts with TECS_SPDWEIGHT and scales down to 0 by the time you reach the land point. Example: Halfway down the landing approach you'll effectively have a weight of TECS_SPDWEIGHT/2." user="Advanced">
<field name="Range">-1.0 2.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Maximum pitch in auto flight" name="TECS_PITCH_MAX" documentation="Overrides LIM_PITCH_MAX in automatic throttle modes to reduce climb rates. Uses LIM_PITCH_MAX if set to 0. For proper TECS tuning, set to the angle that the aircraft can climb at TRIM_ARSPD_CM and THR_MAX." user="Advanced">
<field name="Range">0 45</field>
<field name="Increment">1</field>
</param>
<param humanName="Minimum pitch in auto flight" name="TECS_PITCH_MIN" documentation="Overrides LIM_PITCH_MIN in automatic throttle modes to reduce descent rates. Uses LIM_PITCH_MIN if set to 0. For proper TECS tuning, set to the angle that the aircraft can descend at without overspeeding." user="Advanced">
<field name="Range">-45 0</field>
<field name="Increment">1</field>
</param>
<param humanName="Sink rate for final landing stage" name="TECS_LAND_SINK" documentation="The sink rate in meters/second for the final stage of landing." user="Advanced">
<field name="Range">0.0 2.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Land controller time constant (sec)" name="TECS_LAND_TCONST" documentation="This is the time constant of the TECS control algorithm when in final landing stage of flight. It should be smaller than TECS_TIME_CONST to allow for faster flare" user="Advanced">
<field name="Range">1.0 5.0</field>
<field name="Increment">0.2</field>
</param>
<param humanName="Controller sink rate to pitch gain during flare" name="TECS_LAND_DAMP" documentation="This is the sink rate gain for the pitch demand loop when in final landing stage of flight. It should be larger than TECS_PTCH_DAMP to allow for better sink rate control during flare." user="Advanced">
<field name="Range">0.1 1.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Maximum pitch during final stage of landing" name="TECS_LAND_PMAX" documentation="This limits the pitch used during the final stage of automatic landing. During the final landing stage most planes need to keep their pitch small to avoid stalling. A maximum of 10 degrees is usually good. A value of zero means to use the normal pitch limits." user="Advanced">
<field name="Range">-5 40</field>
<field name="Increment">1</field>
</param>
<param humanName="Sink rate max for landing approach stage" name="TECS_APPR_SMAX" documentation="The sink rate max for the landing approach stage of landing. This will need to be large for steep landing approaches especially when using reverse thrust. If 0, then use TECS_SINK_MAX." user="Advanced">
<field name="Range">0.0 20.0</field>
<field name="Increment">0.1</field>
<field name="Units">m/s</field>
<field name="UnitText">meters per second</field>
</param>
<param humanName="Land sink rate change" name="TECS_LAND_SRC" documentation="When zero, the flare sink rate (TECS_LAND_SINK) is a fixed sink demand. With this enabled the flare sinkrate will increase/decrease the flare sink demand as you get further beyond the LAND waypoint. Has no effect before the waypoint. This value is added to TECS_LAND_SINK proportional to distance traveled after wp. With an increasing sink rate you can still land in a given distance if you're traveling too fast and cruise passed the land point. A positive value will force the plane to land sooner proportional to distance passed land point. A negative number will tell the plane to slowly climb allowing for a pitched-up stall landing. Recommend 0.2 as initial value." user="Advanced">
<field name="Range">-2.0 2.0</field>
<field name="Increment">0.1</field>
<field name="Units">m/s/m</field>
<field name="UnitText">meters per second per meter</field>
</param>
<param humanName="Controller throttle damping when landing" name="TECS_LAND_TDAMP" documentation="This is the damping gain for the throttle demand loop during and auto-landing. Same as TECS_THR_DAMP but only in effect during an auto-land. Increase to add damping to correct for oscillations in speed and height. When set to 0 landing throttle damp is controlled by TECS_THR_DAMP." user="Advanced">
<field name="Range">0.1 1.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Controller integrator during landing" name="TECS_LAND_IGAIN" documentation="This is the integrator gain on the control loop during landing. When set to 0 then TECS_INTEG_GAIN is used. Increase to increase the rate at which speed and height offsets are trimmed out. Typically values lower than TECS_INTEG_GAIN work best" user="Advanced">
<field name="Range">0.0 0.5</field>
<field name="Increment">0.02</field>
</param>
<param humanName="Controller integrator during takeoff" name="TECS_TKOFF_IGAIN" documentation="This is the integrator gain on the control loop during takeoff. When set to 0 then TECS_INTEG_GAIN is used. Increase to increase the rate at which speed and height offsets are trimmed out. Typically values higher than TECS_INTEG_GAIN work best" user="Advanced">
<field name="Range">0.0 0.5</field>
<field name="Increment">0.02</field>
</param>
<param humanName="Pitch damping gain when landing" name="TECS_LAND_PDAMP" documentation="This is the damping gain for the pitch demand loop during landing. Increase to add damping  to correct for oscillations in speed and height. If set to 0 then TECS_PTCH_DAMP will be used instead." user="Advanced">
<field name="Range">0.1 1.0</field>
<field name="Increment">0.1</field>
</param>
<param humanName="Enable the use of synthetic airspeed" name="TECS_SYNAIRSPEED" documentation="This enable the use of synthetic airspeed for aircraft that don't have a real airspeed sensor. This is useful for development testing where the user is aware of the considerable limitations of the synthetic airspeed system, such as very poor estimates when a wind estimate is not accurate. Do not enable this option unless you fully understand the limitations of a synthetic airspeed estimate." user="Advanced">
<values>
<value code="0">Disable</value>
<value code="1">Enable</value>
</values>
</param>
<param humanName="Extra TECS options" name="TECS_OPTIONS" documentation="This allows the enabling of special features in the speed/height controller" user="Advanced">
<field name="Bitmask">0:GliderOnly</field>
</param>
</parameters>
<parameters name="TERRAIN_">
<param humanName="Terrain data enable" name="TERRAIN_ENABLE" documentation="enable terrain data. This enables the vehicle storing a database of terrain data on the SD card. The terrain data is requested from the ground station as needed, and stored for later use on the SD card. To be useful the ground station must support TERRAIN_REQUEST messages and have access to a terrain database, such as the SRTM database." user="Advanced">
<values>
<value code="0">Disable</value>
<value code="1">Enable</value>
</values>
</param>
<param humanName="Terrain grid spacing" name="TERRAIN_SPACING" documentation="Distance between terrain grid points in meters. This controls the horizontal resolution of the terrain data that is stored on te SD card and requested from the ground station. If your GCS is using the worldwide SRTM database then a resolution of 100 meters is appropriate. Some parts of the world may have higher resolution data available, such as 30 meter data available in the SRTM database in the USA. The grid spacing also controls how much data is kept in memory during flight. A larger grid spacing will allow for a larger amount of data in memory. A grid spacing of 100 meters results in the vehicle keeping 12 grid squares in memory with each grid square having a size of 2.7 kilometers by 3.2 kilometers. Any additional grid squares are stored on the SD once they are fetched from the GCS and will be demand loaded as needed." user="Advanced">
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
</parameters>
<parameters name="TKOFF_">
<param humanName="Takeoff mode altitude" name="TKOFF_ALT" documentation="This is the target altitude for TAKEOFF mode" user="User">
<field name="Range">0 200</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Takeoff mode altitude level altitude" name="TKOFF_LVL_ALT" documentation="This is the altitude below which wings are held level for TAKEOFF mode" user="User">
<field name="Range">0 50</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
<param humanName="Takeoff mode altitude initial pitch" name="TKOFF_LVL_PITCH" documentation="This is the target pitch for the initial climb to TKOFF_LVL_ALT" user="User">
<field name="Range">0 30</field>
<field name="Increment">1</field>
<field name="Units">deg</field>
<field name="UnitText">degrees</field>
</param>
<param humanName="Takeoff mode distance" name="TKOFF_DIST" documentation="This is the distance from the takeoff location where the plane will loiter. The loiter point will be in the direction of takeoff (the direction the plane is facing when the motor starts)" user="User">
<field name="Range">0 500</field>
<field name="Increment">1</field>
<field name="Units">m</field>
<field name="UnitText">meters</field>
</param>
</parameters>
<parameters name="TUNE_">
<param humanName="Transmitter tuning parameter or set of parameters" name="TUNE_PARAM" documentation="This sets which parameter or set of parameters will be tuned. Values greater than 100 indicate a set of parameters rather than a single parameter. Parameters less than 50 are for QuadPlane vertical lift motors only." user="Standard">
<values>
<value code="0">None</value>
<value code="1">RateRollPI</value>
<value code="2">RateRollP</value>
<value code="3">RateRollI</value>
<value code="4">RateRollD</value>
<value code="5">RatePitchPI</value>
<value code="6">RatePitchP</value>
<value code="7">RatePitchI</value>
<value code="8">RatePitchD</value>
<value code="9">RateYawPI</value>
<value code="10">RateYawP</value>
<value code="11">RateYawI</value>
<value code="12">RateYawD</value>
<value code="13">AngleRollP</value>
<value code="14">AnglePitchP</value>
<value code="15">AngleYawP</value>
<value code="16">PosXYP</value>
<value code="17">PosZP</value>
<value code="18">VelXYP</value>
<value code="19">VelXYI</value>
<value code="20">VelZP</value>
<value code="21">AccelZP</value>
<value code="22">AccelZI</value>
<value code="23">AccelZD</value>
<value code="50">FixedWingRollP</value>
<value code="51">FixedWingRollI</value>
<value code="52">FixedWingRollD</value>
<value code="53">FixedWingRollFF</value>
<value code="54">FixedWingPitchP</value>
<value code="55">FixedWingPitchI</value>
<value code="56">FixedWingPitchD</value>
<value code="57">FixedWingPitchFF</value>
<value code="101">Set_RateRollPitch</value>
<value code="102">Set_RateRoll</value>
<value code="103">Set_RatePitch</value>
<value code="104">Set_RateYaw</value>
<value code="105">Set_AngleRollPitch</value>
<value code="106">Set_VelXY</value>
<value code="107">Set_AccelZ</value>
</values>
</param>
<param humanName="Transmitter tuning channel" name="TUNE_CHAN" documentation="This sets the channel for transmitter tuning. This should be connected to a knob or slider on your transmitter. It needs to be setup to use the PWM range given by TUNE_CHAN_MIN to TUNE_CHAN_MAX" user="Standard">
<values>
<value code="0">Disable</value>
<value code="5">Chan5</value>
<value code="6">Chan6</value>
<value code="7">Chan7</value>
<value code="8">Chan8</value>
<value code="9">Chan9</value>
<value code="10">Chan10</value>
<value code="11">Chan11</value>
<value code="12">Chan12</value>
<value code="13">Chan13</value>
<value code="14">Chan14</value>
<value code="15">Chan15</value>
<value code="16">Chan16</value>
</values>
</param>
<param humanName="Transmitter tuning channel minimum pwm" name="TUNE_CHAN_MIN" documentation="This sets the PWM lower limit for the tuning channel" user="Standard">
<field name="Range">900 2100</field>
</param>
<param humanName="Transmitter tuning channel maximum pwm" name="TUNE_CHAN_MAX" documentation="This sets the PWM upper limit for the tuning channel" user="Standard">
<field name="Range">900 2100</field>
</param>
<param humanName="Transmitter tuning selector channel" name="TUNE_SELECTOR" documentation="This sets the channel for the transmitter tuning selector switch. This should be a 2 position switch, preferably spring loaded. A PWM above 1700 means high, below 1300 means low. If no selector is set then you won't be able to switch between parameters during flight or re-center the tuning knob" user="Standard">
<values>
<value code="0">Disable</value>
<value code="1">Chan1</value>
<value code="2">Chan3</value>
<value code="3">Chan3</value>
<value code="4">Chan4</value>
<value code="5">Chan5</value>
<value code="6">Chan6</value>
<value code="7">Chan7</value>
<value code="8">Chan8</value>
<value code="9">Chan9</value>
<value code="10">Chan10</value>
<value code="11">Chan11</value>
<value code="12">Chan12</value>
<value code="13">Chan13</value>
<value code="14">Chan14</value>
<value code="15">Chan15</value>
<value code="16">Chan16</value>
</values>
</param>
<param humanName="Transmitter tuning range" name="TUNE_RANGE" documentation="This sets the range over which tuning will change a parameter. A value of 2 means the tuning parameter will go from 0.5 times the start value to 2x the start value over the range of the tuning channel" user="Standard">
</param>
<param humanName="Revert on mode change" name="TUNE_MODE_REVERT" documentation="This controls whether tuning values will revert on a flight mode change." user="Standard">
<values>
<value code="0">Disable</value>
<value code="1">Enable</value>
</values>
</param>
<param humanName="Controller error threshold" name="TUNE_ERR_THRESH" documentation="This sets the controller error threshold above which an alarm will sound and a message will be sent to the GCS to warn of controller instability" user="Standard">
<field name="Range">0 1</field>
</param>
</parameters>
<parameters name="YAW2SRV_">
<param humanName="Sideslip control gain" name="YAW2SRV_SLIP" documentation="Gain from lateral acceleration to demanded yaw rate for aircraft with enough fuselage area to detect lateral acceleration and sideslips. Do not enable for flying wings and gliders. Actively coordinates flight more than just yaw damping. Set after YAW2SRV_DAMP and YAW2SRV_INT are tuned." user="Advanced">
<field name="Range">0 4</field>
<field name="Increment">0.25</field>
</param>
<param humanName="Sideslip control integrator" name="YAW2SRV_INT" documentation="Integral gain from lateral acceleration error. Effectively trims rudder to eliminate long-term sideslip." user="Advanced">
<field name="Range">0 2</field>
<field name="Increment">0.25</field>
</param>
<param humanName="Yaw damping" name="YAW2SRV_DAMP" documentation="Gain from yaw rate to rudder. Most effective at yaw damping and should be tuned after KFF_RDDRMIX. Also disables YAW2SRV_INT if set to 0." user="Advanced">
<field name="Range">0 2</field>
<field name="Increment">0.25</field>
</param>
<param humanName="Yaw coordination gain" name="YAW2SRV_RLL" documentation="Gain to the yaw rate required to keep it consistent with the turn rate in a coordinated turn. Corrects for yaw tendencies after the turn is established. Increase yaw into the turn by raising. Increase yaw out of the turn by decreasing. Values outside of 0.9-1.1 range indicate airspeed calibration problems." user="Advanced">
<field name="Range">0.8 1.2</field>
<field name="Increment">0.05</field>
</param>
<param humanName="Integrator limit" name="YAW2SRV_IMAX" documentation="Limit of yaw integrator gain in centi-degrees of servo travel. Servos are assumed to have +/- 4500 centi-degrees of travel, so a value of 1500 allows trim of up to 1/3 of servo travel range." user="Advanced">
<field name="Range">0 4500</field>
<field name="Increment">1</field>
</param>
</parameters>
</libraries></paramfile>