diff --git a/src/Vehicle/CompInfoParam.cc b/src/Vehicle/CompInfoParam.cc index 7604cc52833bf076927d58b3a100396a94968d3c..c78dd631edd68c28bbc58b6e93c37da8d90b88ec 100644 --- a/src/Vehicle/CompInfoParam.cc +++ b/src/Vehicle/CompInfoParam.cc @@ -22,7 +22,8 @@ QGC_LOGGING_CATEGORY(CompInfoParamLog, "CompInfoParamLog") const char* CompInfoParam::_jsonScopeKey = "scope"; const char* CompInfoParam::_jsonParametersKey = "parameters"; -const char* CompInfoParam::_cachedMetaDataFilePrefix = "ParameterFactMetaData"; +const char* CompInfoParam::_cachedMetaDataFilePrefix = "ParameterFactMetaData"; +const char* CompInfoParam::_parameterIndexTag = "<#>"; CompInfoParam::CompInfoParam(uint8_t compId, Vehicle* vehicle, QObject* parent) : CompInfo(COMP_METADATA_TYPE_PARAMETER, compId, vehicle, parent) @@ -84,10 +85,20 @@ FactMetaData* CompInfoParam::factMetaDataForName(const QString& name, FactMetaDa if (_opaqueParameterMetaData) { return vehicle->firmwarePlugin()->_getMetaDataForFact(_opaqueParameterMetaData, name, type, vehicle->vehicleType()); } else { + QString indexTagName = name; if (!_nameToMetaDataMap.contains(name)) { + // Checked for indexed parameter names: "FOO<#>_BAR" will match "FOO1_BAR" + QRegularExpression regex("\\d+"); + indexTagName = indexTagName.replace(regex, _parameterIndexTag); + if (!_nameToMetaDataMap.contains(indexTagName)) { + indexTagName.clear(); + } + } + if (indexTagName.isEmpty()) { + indexTagName = name; _nameToMetaDataMap[name] = new FactMetaData(type, this); } - return _nameToMetaDataMap[name]; + return _nameToMetaDataMap[indexTagName]; } } diff --git a/src/Vehicle/CompInfoParam.h b/src/Vehicle/CompInfoParam.h index c25eecab0b1f78cd6744246a16c6e49f02fe616c..6d223d229ddc55aab49b77ad5d01cc4060ec3e70 100644 --- a/src/Vehicle/CompInfoParam.h +++ b/src/Vehicle/CompInfoParam.h @@ -49,7 +49,7 @@ private: QObject* _opaqueParameterMetaData = nullptr; static const char* _cachedMetaDataFilePrefix; - static const char* _jsonScopeKey; static const char* _jsonParametersKey; + static const char* _parameterIndexTag; }; diff --git a/src/comm/MockLink.Parameter.MetaData.json b/src/comm/MockLink.Parameter.MetaData.json index 1e465ceaf32d42db3bad6f7aa3b078960ad14918..b5dc4e227a9b91b0dc4af6fc0e0e8ebe9ad5ca48 100644 --- a/src/comm/MockLink.Parameter.MetaData.json +++ b/src/comm/MockLink.Parameter.MetaData.json @@ -357,7 +357,7 @@ "maxValue": 1 }, { - "name": "BAT1_A_PER_V", + "name": "BAT<#>_A_PER_V", "type": "Float", "group": "Battery Calibration", "category": "Standard", @@ -370,7 +370,7 @@ "maxValue": 3.40282e+38 }, { - "name": "BAT1_CAPACITY", + "name": "BAT<#>_CAPACITY", "type": "Float", "group": "Battery Calibration", "category": "Standard", @@ -385,7 +385,7 @@ "maxValue": 100000 }, { - "name": "BAT1_I_CHANNEL", + "name": "BAT<#>_I_CHANNEL", "type": "Int32", "group": "Battery Calibration", "category": "Standard", @@ -398,7 +398,7 @@ "maxValue": 2.14748e+09 }, { - "name": "BAT1_N_CELLS", + "name": "BAT<#>_N_CELLS", "type": "Int32", "group": "Battery Calibration", "category": "Standard", @@ -473,12 +473,12 @@ "maxValue": 2.14748e+09 }, { - "name": "BAT1_R_INTERNAL", + "name": "BAT<#>_R_INTERNAL", "type": "Float", "group": "Battery Calibration", "category": "Standard", "shortDesc": "Explicitly defines the per cell internal resistance for battery 1", - "longDesc": "If non-negative, then this will be used in place of BAT1_V_LOAD_DROP for all calculations.", + "longDesc": "If non-negative, then this will be used in place of BAT<#>_V_LOAD_DROP for all calculations.", "units": "Ohm", "default": -1, "increment": 0.01, @@ -488,7 +488,7 @@ "maxValue": 0.2 }, { - "name": "BAT1_SOURCE", + "name": "BAT<#>_SOURCE", "type": "Int32", "group": "Battery Calibration", "category": "Standard", @@ -515,7 +515,7 @@ "maxValue": 2.14748e+09 }, { - "name": "BAT1_V_CHANNEL", + "name": "BAT<#>_V_CHANNEL", "type": "Int32", "group": "Battery Calibration", "category": "Standard", @@ -528,7 +528,7 @@ "maxValue": 2.14748e+09 }, { - "name": "BAT1_V_CHARGED", + "name": "BAT<#>_V_CHARGED", "type": "Float", "group": "Battery Calibration", "category": "Standard", @@ -543,7 +543,7 @@ "maxValue": 3.40282e+38 }, { - "name": "BAT1_V_DIV", + "name": "BAT<#>_V_DIV", "type": "Float", "group": "Battery Calibration", "category": "Standard", @@ -556,7 +556,7 @@ "maxValue": 3.40282e+38 }, { - "name": "BAT1_V_EMPTY", + "name": "BAT<#>_V_EMPTY", "type": "Float", "group": "Battery Calibration", "category": "Standard", @@ -571,241 +571,12 @@ "maxValue": 3.40282e+38 }, { - "name": "BAT1_V_LOAD_DROP", + "name": "BAT<#>_V_LOAD_DROP", "type": "Float", "group": "Battery Calibration", "category": "Standard", "shortDesc": "Voltage drop per cell on full throttle", - "longDesc": "This implicitely defines the internal resistance to maximum current ratio for battery 1 and assumes linearity. A good value to use is the difference between the 5C and 20-25C load. Not used if BAT1_R_INTERNAL is set.", - "units": "V", - "default": 0.3, - "increment": 0.01, - "rebootRequired": true, - "decimalPlaces": 2, - "minValue": 0.07, - "maxValue": 0.5 - }, - { - "name": "BAT2_A_PER_V", - "type": "Float", - "group": "Battery Calibration", - "category": "Standard", - "shortDesc": "Battery 2 current per volt (A/V)", - "longDesc": "The voltage seen by the ADC multiplied by this factor will determine the battery current. A value of -1 means to use the board default.", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 8, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "BAT2_CAPACITY", - "type": "Float", - "group": "Battery Calibration", - "category": "Standard", - "shortDesc": "Battery 2 capacity", - "longDesc": "Defines the capacity of battery 2 in mAh.", - "units": "mAh", - "default": -1, - "increment": 50, - "rebootRequired": true, - "decimalPlaces": 0, - "minValue": -1, - "maxValue": 100000 - }, - { - "name": "BAT2_I_CHANNEL", - "type": "Int32", - "group": "Battery Calibration", - "category": "Standard", - "shortDesc": "Battery 2 Current ADC Channel", - "longDesc": "This parameter specifies the ADC channel used to monitor current of main power battery. A value of -1 means to use the board default.", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "BAT2_N_CELLS", - "type": "Int32", - "group": "Battery Calibration", - "category": "Standard", - "shortDesc": "Number of cells for battery 2", - "longDesc": "Defines the number of cells the attached battery consists of.", - "default": 0, - "values": [ - { - "value": 2, - "description": "2S Battery" - }, - { - "value": 3, - "description": "3S Battery" - }, - { - "value": 4, - "description": "4S Battery" - }, - { - "value": 5, - "description": "5S Battery" - }, - { - "value": 6, - "description": "6S Battery" - }, - { - "value": 7, - "description": "7S Battery" - }, - { - "value": 8, - "description": "8S Battery" - }, - { - "value": 9, - "description": "9S Battery" - }, - { - "value": 10, - "description": "10S Battery" - }, - { - "value": 11, - "description": "11S Battery" - }, - { - "value": 12, - "description": "12S Battery" - }, - { - "value": 13, - "description": "13S Battery" - }, - { - "value": 14, - "description": "14S Battery" - }, - { - "value": 15, - "description": "15S Battery" - }, - { - "value": 16, - "description": "16S Battery" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "BAT2_R_INTERNAL", - "type": "Float", - "group": "Battery Calibration", - "category": "Standard", - "shortDesc": "Explicitly defines the per cell internal resistance for battery 2", - "longDesc": "If non-negative, then this will be used in place of BAT2_V_LOAD_DROP for all calculations.", - "units": "Ohm", - "default": -1, - "increment": 0.01, - "rebootRequired": true, - "decimalPlaces": 2, - "minValue": -1, - "maxValue": 0.2 - }, - { - "name": "BAT2_SOURCE", - "type": "Int32", - "group": "Battery Calibration", - "category": "Standard", - "shortDesc": "Battery 2 monitoring source", - "longDesc": "This parameter controls the source of battery data. The value 'Power Module' means that measurements are expected to come from a power module. If the value is set to 'External' then the system expects to receive mavlink battery status messages. If the value is set to 'ESCs', the battery information are taken from the esc_status message. This requires the ESC to provide both voltage as well as current.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Power Module" - }, - { - "value": 1, - "description": "External" - }, - { - "value": 2, - "description": "ESCs" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "BAT2_V_CHANNEL", - "type": "Int32", - "group": "Battery Calibration", - "category": "Standard", - "shortDesc": "Battery 2 Voltage ADC Channel", - "longDesc": "This parameter specifies the ADC channel used to monitor voltage of main power battery. A value of -1 means to use the board default.", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "BAT2_V_CHARGED", - "type": "Float", - "group": "Battery Calibration", - "category": "Standard", - "shortDesc": "Full cell voltage (5C load)", - "longDesc": "Defines the voltage where a single cell of battery 1 is considered full under a mild load. This will never be the nominal voltage of 4.2V", - "units": "V", - "default": 4.05, - "increment": 0.01, - "rebootRequired": true, - "decimalPlaces": 2, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "BAT2_V_DIV", - "type": "Float", - "group": "Battery Calibration", - "category": "Standard", - "shortDesc": "Battery 2 voltage divider (V divider)", - "longDesc": "This is the divider from battery 2 voltage to ADC voltage. If using e.g. Mauch power modules the value from the datasheet can be applied straight here. A value of -1 means to use the board default.", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 8, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "BAT2_V_EMPTY", - "type": "Float", - "group": "Battery Calibration", - "category": "Standard", - "shortDesc": "Empty cell voltage (5C load)", - "longDesc": "Defines the voltage where a single cell of battery 1 is considered empty. The voltage should be chosen before the steep dropoff to 2.8V. A typical lithium battery can only be discharged down to 10% before it drops off to a voltage level damaging the cells.", - "units": "V", - "default": 3.5, - "increment": 0.01, - "rebootRequired": true, - "decimalPlaces": 2, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "BAT2_V_LOAD_DROP", - "type": "Float", - "group": "Battery Calibration", - "category": "Standard", - "shortDesc": "Voltage drop per cell on full throttle", - "longDesc": "This implicitely defines the internal resistance to maximum current ratio for battery 1 and assumes linearity. A good value to use is the difference between the 5C and 20-25C load. Not used if BAT2_R_INTERNAL is set.", + "longDesc": "This implicitely defines the internal resistance to maximum current ratio for battery 1 and assumes linearity. A good value to use is the difference between the 5C and 20-25C load. Not used if BAT<#>_R_INTERNAL is set.", "units": "V", "default": 0.3, "increment": 0.01, @@ -819,7 +590,7 @@ "type": "Int32", "group": "Battery Calibration", "category": "Standard", - "shortDesc": "This parameter is deprecated. Please use BAT1_ADC_CHANNEL", + "shortDesc": "This parameter is deprecated. Please use BAT<#>_ADC_CHANNEL", "default": -1, "decimalPlaces": 3, "minValue": -2.14748e+09, @@ -830,7 +601,7 @@ "type": "Float", "group": "Battery Calibration", "category": "Standard", - "shortDesc": "This parameter is deprecated. Please use BAT1_A_PER_V", + "shortDesc": "This parameter is deprecated. Please use BAT<#>_A_PER_V", "default": -1, "decimalPlaces": 8, "minValue": -3.40282e+38, @@ -841,7 +612,7 @@ "type": "Float", "group": "Battery Calibration", "category": "Standard", - "shortDesc": "This parameter is deprecated. Please use BAT1_CAPACITY instead", + "shortDesc": "This parameter is deprecated. Please use BAT<#>_CAPACITY instead", "longDesc": "Defines the capacity of battery 1.", "units": "mAh", "default": -1, @@ -913,7 +684,7 @@ "type": "Int32", "group": "Battery Calibration", "category": "Standard", - "shortDesc": "This parameter is deprecated. Please use BAT1_N_CELLS instead", + "shortDesc": "This parameter is deprecated. Please use BAT<#>_N_CELLS instead", "longDesc": "Defines the number of cells the attached battery consists of.", "units": "S", "default": 0, @@ -993,7 +764,7 @@ "type": "Float", "group": "Battery Calibration", "category": "Standard", - "shortDesc": "This parameter is deprecated. Please use BAT1_R_INTERNAL instead", + "shortDesc": "This parameter is deprecated. Please use BAT<#>_R_INTERNAL instead", "longDesc": "If non-negative, then this will be used in place of BAT_V_LOAD_DROP for all calculations.", "units": "Ohms", "default": -1, @@ -1007,7 +778,7 @@ "type": "Int32", "group": "Battery Calibration", "category": "Standard", - "shortDesc": "This parameter is deprecated. Please use BAT1_SOURCE instead", + "shortDesc": "This parameter is deprecated. Please use BAT<#>_SOURCE instead", "longDesc": "Battery monitoring source. This parameter controls the source of battery data. The value 'Power Module' means that measurements are expected to come from a power module. If the value is set to 'External' then the system expects to receive mavlink battery status messages.", "default": 0, "values": [ @@ -1029,7 +800,7 @@ "type": "Float", "group": "Battery Calibration", "category": "Standard", - "shortDesc": "This parameter is deprecated. Please use BAT1_V_CHARGED instead", + "shortDesc": "This parameter is deprecated. Please use BAT<#>_V_CHARGED instead", "longDesc": "Defines the voltage where a single cell of battery 1 is considered full under a mild load. This will never be the nominal voltage of 4.2V", "units": "V", "default": 4.05, @@ -1044,7 +815,7 @@ "type": "Float", "group": "Battery Calibration", "category": "Standard", - "shortDesc": "This parameter is deprecated. Please use BAT1_V_DIV", + "shortDesc": "This parameter is deprecated. Please use BAT<#>_V_DIV", "default": -1, "decimalPlaces": 8, "minValue": -3.40282e+38, @@ -1055,7 +826,7 @@ "type": "Float", "group": "Battery Calibration", "category": "Standard", - "shortDesc": "This parameter is deprecated. Please use BAT1_V_EMPTY instead", + "shortDesc": "This parameter is deprecated. Please use BAT<#>_V_EMPTY instead", "longDesc": "Defines the voltage where a single cell of battery 1 is considered empty. The voltage should be chosen before the steep dropoff to 2.8V. A typical lithium battery can only be discharged down to 10% before it drops off to a voltage level damaging the cells.", "units": "V", "default": 3.5, @@ -1070,7 +841,7 @@ "type": "Float", "group": "Battery Calibration", "category": "Standard", - "shortDesc": "This parameter is deprecated. Please use BAT1_V_LOAD_DROP instead", + "shortDesc": "This parameter is deprecated. Please use BAT<#>_V_LOAD_DROP instead", "longDesc": "This implicitely defines the internal resistance to maximum current ratio for battery 1 and assumes linearity. A good value to use is the difference between the 5C and 20-25C load. Not used if BAT_R_INTERNAL is set.", "units": "V", "default": 0.3, @@ -1093,7 +864,7 @@ "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC0_EN", + "name": "CAL_ACC<#>_EN", "type": "Int32", "group": "Sensor Calibration", "category": "System", @@ -1104,7 +875,7 @@ "maxValue": 2.14748e+09 }, { - "name": "CAL_ACC0_ID", + "name": "CAL_ACC<#>_ID", "type": "Int32", "group": "Sensor Calibration", "category": "System", @@ -1115,7 +886,7 @@ "maxValue": 2.14748e+09 }, { - "name": "CAL_ACC0_XOFF", + "name": "CAL_ACC<#>_XOFF", "type": "Float", "group": "Sensor Calibration", "category": "System", @@ -1126,7 +897,7 @@ "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC0_XSCALE", + "name": "CAL_ACC<#>_XSCALE", "type": "Float", "group": "Sensor Calibration", "category": "System", @@ -1137,7 +908,7 @@ "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC0_YOFF", + "name": "CAL_ACC<#>_YOFF", "type": "Float", "group": "Sensor Calibration", "category": "System", @@ -1148,7 +919,7 @@ "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC0_YSCALE", + "name": "CAL_ACC<#>_YSCALE", "type": "Float", "group": "Sensor Calibration", "category": "System", @@ -1159,7 +930,7 @@ "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC0_ZOFF", + "name": "CAL_ACC<#>_ZOFF", "type": "Float", "group": "Sensor Calibration", "category": "System", @@ -1170,7 +941,7 @@ "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC0_ZSCALE", + "name": "CAL_ACC<#>_ZSCALE", "type": "Float", "group": "Sensor Calibration", "category": "System", @@ -1181,212 +952,400 @@ "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC1_EN", + "name": "CAL_ACC_PRIME", "type": "Int32", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer 1 enabled", - "default": 1, + "shortDesc": "Primary accel ID", + "default": 0, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_ACC1_ID", + "name": "CAL_AIR_CMODEL", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "ID of the Accelerometer that the calibration is for", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Airspeed sensor compensation model for the SDP3x", + "longDesc": "Model with Pitot CAL_AIR_TUBED_MM: Not used, 1.5 mm tubes assumed. CAL_AIR_TUBELEN: Length of the tubes connecting the pitot to the sensor. Model without Pitot (1.5 mm tubes) CAL_AIR_TUBED_MM: Not used, 1.5 mm tubes assumed. CAL_AIR_TUBELEN: Length of the tubes connecting the pitot to the sensor. Tube Pressure Drop CAL_AIR_TUBED_MM: Diameter in mm of the pitot and tubes, must have the same diameter. CAL_AIR_TUBELEN: Length of the tubes connecting the pitot to the sensor and the static + dynamic port length of the pitot.", "default": 0, + "values": [ + { + "value": 0, + "description": "Model with Pitot" + }, + { + "value": 1, + "description": "Model without Pitot (1.5 mm tubes)" + }, + { + "value": 2, + "description": "Tube Pressure Drop" + } + ], "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_ACC1_XOFF", + "name": "CAL_AIR_TUBED_MM", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Accelerometer X-axis offset", - "default": 0, + "group": "Sensors", + "category": "Standard", + "shortDesc": "Airspeed sensor tube diameter. Only used for the Tube Pressure Drop Compensation", + "units": "millimeter", + "default": 1.5, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 0.1, + "maxValue": 100 }, { - "name": "CAL_ACC1_XSCALE", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Accelerometer X-axis scaling factor", - "default": 1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_ACC1_YOFF", + "name": "CAL_AIR_TUBELEN", "type": "Float", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Airspeed sensor tube length", + "longDesc": "See the CAL_AIR_CMODEL explanation on how this parameter should be set.", + "units": "meter", + "default": 0.2, + "decimalPlaces": 3, + "minValue": 0.01, + "maxValue": 2 + }, + { + "name": "CAL_GYRO<#>_EN", + "type": "Int32", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer Y-axis offset", + "shortDesc": "Gyro 0 enabled", + "default": 1, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "CAL_GYRO<#>_ID", + "type": "Int32", + "group": "Sensor Calibration", + "category": "System", + "shortDesc": "ID of the Gyro that the calibration is for", "default": 0, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "CAL_ACC1_YSCALE", + "name": "CAL_GYRO<#>_XOFF", "type": "Float", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer Y-axis scaling factor", - "default": 1, + "shortDesc": "Gyro X-axis offset", + "default": 0, "decimalPlaces": 3, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC1_ZOFF", + "name": "CAL_GYRO<#>_YOFF", "type": "Float", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer Z-axis offset", + "shortDesc": "Gyro Y-axis offset", "default": 0, "decimalPlaces": 3, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC1_ZSCALE", + "name": "CAL_GYRO<#>_ZOFF", "type": "Float", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer Z-axis scaling factor", - "default": 1, + "shortDesc": "Gyro Z-axis offset", + "default": 0, "decimalPlaces": 3, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC2_EN", + "name": "CAL_GYRO_PRIME", + "type": "Int32", + "group": "Sensor Calibration", + "category": "System", + "shortDesc": "Primary gyro ID", + "default": 0, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "CAL_MAG<#>_EN", "type": "Int32", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer 2 enabled", + "shortDesc": "Mag 0 enabled", "default": 1, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_ACC2_ID", + "name": "CAL_MAG<#>_ID", "type": "Int32", "group": "Sensor Calibration", "category": "System", - "shortDesc": "ID of the Accelerometer that the calibration is for", + "shortDesc": "ID of Magnetometer the calibration is for", "default": 0, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_ACC2_XOFF", + "name": "CAL_MAG<#>_ROT", + "type": "Int32", + "group": "Sensor Calibration", + "category": "System", + "shortDesc": "Rotation of magnetometer 0 relative to airframe", + "longDesc": "An internal magnetometer will force a value of -1, so a GCS should only attempt to configure the rotation if the value is greater than or equal to zero.", + "default": -1, + "values": [ + { + "value": -1, + "description": "Internal mag" + }, + { + "value": 0, + "description": "No rotation" + }, + { + "value": 1, + "description": "Yaw 45°" + }, + { + "value": 2, + "description": "Yaw 90°" + }, + { + "value": 3, + "description": "Yaw 135°" + }, + { + "value": 4, + "description": "Yaw 180°" + }, + { + "value": 5, + "description": "Yaw 225°" + }, + { + "value": 6, + "description": "Yaw 270°" + }, + { + "value": 7, + "description": "Yaw 315°" + }, + { + "value": 8, + "description": "Roll 180°" + }, + { + "value": 9, + "description": "Roll 180°, Yaw 45°" + }, + { + "value": 10, + "description": "Roll 180°, Yaw 90°" + }, + { + "value": 11, + "description": "Roll 180°, Yaw 135°" + }, + { + "value": 12, + "description": "Pitch 180°" + }, + { + "value": 13, + "description": "Roll 180°, Yaw 225°" + }, + { + "value": 14, + "description": "Roll 180°, Yaw 270°" + }, + { + "value": 15, + "description": "Roll 180°, Yaw 315°" + }, + { + "value": 16, + "description": "Roll 90°" + }, + { + "value": 17, + "description": "Roll 90°, Yaw 45°" + }, + { + "value": 18, + "description": "Roll 90°, Yaw 90°" + }, + { + "value": 19, + "description": "Roll 90°, Yaw 135°" + }, + { + "value": 20, + "description": "Roll 270°" + }, + { + "value": 21, + "description": "Roll 270°, Yaw 45°" + }, + { + "value": 22, + "description": "Roll 270°, Yaw 90°" + }, + { + "value": 23, + "description": "Roll 270°, Yaw 135°" + }, + { + "value": 24, + "description": "Pitch 90°" + }, + { + "value": 25, + "description": "Pitch 270°" + } + ], + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -1, + "maxValue": 30 + }, + { + "name": "CAL_MAG<#>_XCOMP", "type": "Float", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer X-axis offset", + "shortDesc": "Coefficient describing linear relationship between X component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", "default": 0, "decimalPlaces": 3, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC2_XSCALE", + "name": "CAL_MAG<#>_XOFF", "type": "Float", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer X-axis scaling factor", + "shortDesc": "Magnetometer X-axis offset", + "default": 0, + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 + }, + { + "name": "CAL_MAG<#>_XSCALE", + "type": "Float", + "group": "Sensor Calibration", + "category": "System", + "shortDesc": "Magnetometer X-axis scaling factor", "default": 1, "decimalPlaces": 3, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC2_YOFF", + "name": "CAL_MAG<#>_YCOMP", "type": "Float", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer Y-axis offset", + "shortDesc": "Coefficient describing linear relationship between Y component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", "default": 0, "decimalPlaces": 3, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC2_YSCALE", + "name": "CAL_MAG<#>_YOFF", "type": "Float", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer Y-axis scaling factor", + "shortDesc": "Magnetometer Y-axis offset", + "default": 0, + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 + }, + { + "name": "CAL_MAG<#>_YSCALE", + "type": "Float", + "group": "Sensor Calibration", + "category": "System", + "shortDesc": "Magnetometer Y-axis scaling factor", "default": 1, "decimalPlaces": 3, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC2_ZOFF", + "name": "CAL_MAG<#>_ZCOMP", "type": "Float", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer Z-axis offset", + "shortDesc": "Coefficient describing linear relationship between Z component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", "default": 0, "decimalPlaces": 3, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC2_ZSCALE", + "name": "CAL_MAG<#>_ZOFF", "type": "Float", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Accelerometer Z-axis scaling factor", - "default": 1, + "shortDesc": "Magnetometer Z-axis offset", + "default": 0, "decimalPlaces": 3, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "CAL_ACC_PRIME", - "type": "Int32", + "name": "CAL_MAG<#>_ZSCALE", + "type": "Float", "group": "Sensor Calibration", "category": "System", - "shortDesc": "Primary accel ID", - "default": 0, + "shortDesc": "Magnetometer Z-axis scaling factor", + "default": 1, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "CAL_AIR_CMODEL", + "name": "CAL_MAG_COMP_TYP", "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "Airspeed sensor compensation model for the SDP3x", - "longDesc": "Model with Pitot CAL_AIR_TUBED_MM: Not used, 1.5 mm tubes assumed. CAL_AIR_TUBELEN: Length of the tubes connecting the pitot to the sensor. Model without Pitot (1.5 mm tubes) CAL_AIR_TUBED_MM: Not used, 1.5 mm tubes assumed. CAL_AIR_TUBELEN: Length of the tubes connecting the pitot to the sensor. Tube Pressure Drop CAL_AIR_TUBED_MM: Diameter in mm of the pitot and tubes, must have the same diameter. CAL_AIR_TUBELEN: Length of the tubes connecting the pitot to the sensor and the static + dynamic port length of the pitot.", + "group": "Sensor Calibration", + "category": "System", + "shortDesc": "Type of magnetometer compensation", "default": 0, "values": [ { "value": 0, - "description": "Model with Pitot" + "description": "Disabled" }, { "value": 1, - "description": "Model without Pitot (1.5 mm tubes)" + "description": "Throttle-based compensation" }, { "value": 2, - "description": "Tube Pressure Drop" + "description": "Current-based compensation (battery_status instance 0)" + }, + { + "value": 3, + "description": "Current-based compensation (battery_status instance 1)" } ], "decimalPlaces": 3, @@ -1394,6226 +1353,2330 @@ "maxValue": 2.14748e+09 }, { - "name": "CAL_AIR_TUBED_MM", - "type": "Float", - "group": "Sensors", - "category": "Standard", - "shortDesc": "Airspeed sensor tube diameter. Only used for the Tube Pressure Drop Compensation", - "units": "millimeter", - "default": 1.5, + "name": "CAL_MAG_PRIME", + "type": "Int32", + "group": "Sensor Calibration", + "category": "System", + "shortDesc": "Primary mag ID", + "default": 0, "decimalPlaces": 3, - "minValue": 0.1, - "maxValue": 100 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "CAL_AIR_TUBELEN", - "type": "Float", + "name": "CAL_MAG_SIDES", + "type": "Int32", "group": "Sensors", "category": "Standard", - "shortDesc": "Airspeed sensor tube length", - "longDesc": "See the CAL_AIR_CMODEL explanation on how this parameter should be set.", - "units": "meter", - "default": 0.2, + "shortDesc": "Bitfield selecting mag sides for calibration", + "longDesc": "If set to two side calibration, only the offsets are estimated, the scale calibration is left unchanged. Thus an initial six side calibration is recommended. Bits: DETECT_ORIENTATION_TAIL_DOWN = 1 DETECT_ORIENTATION_NOSE_DOWN = 2 DETECT_ORIENTATION_LEFT = 4 DETECT_ORIENTATION_RIGHT = 8 DETECT_ORIENTATION_UPSIDE_DOWN = 16 DETECT_ORIENTATION_RIGHTSIDE_UP = 32", + "default": 63, + "values": [ + { + "value": 34, + "description": "Two side calibration" + }, + { + "value": 38, + "description": "Three side calibration" + }, + { + "value": 63, + "description": "Six side calibration" + } + ], "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 2 + "minValue": 34, + "maxValue": 63 + }, + { + "name": "CAM_CAP_DELAY", + "type": "Float", + "group": "Camera Capture", + "category": "Standard", + "shortDesc": "Camera strobe delay", + "longDesc": "This parameter sets the delay between image integration start and strobe firing", + "units": "ms", + "default": 0, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 100 }, { - "name": "CAL_GYRO0_EN", + "name": "CAM_CAP_EDGE", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro 0 enabled", - "default": 1, + "group": "Camera Control", + "category": "Standard", + "shortDesc": "Camera capture edge", + "default": 0, + "values": [ + { + "value": 0, + "description": "Falling edge" + }, + { + "value": 1, + "description": "Rising edge" + } + ], + "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_GYRO0_ID", + "name": "CAM_CAP_FBACK", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "ID of the Gyro that the calibration is for", + "group": "Camera Control", + "category": "Standard", + "shortDesc": "Camera capture feedback", + "longDesc": "Enables camera capture feedback", "default": 0, + "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_GYRO0_XOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro X-axis offset", + "name": "CAM_CAP_MODE", + "type": "Int32", + "group": "Camera Control", + "category": "Standard", + "shortDesc": "Camera capture timestamping mode", + "longDesc": "Change time measurement", "default": 0, + "values": [ + { + "value": 0, + "description": "Get absolute timestamp" + }, + { + "value": 1, + "description": "Get timestamp of mid exposure (active high)" + }, + { + "value": 2, + "description": "Get timestamp of mid exposure (active low)" + } + ], + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "CAL_GYRO0_YOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro Y-axis offset", - "default": 0, + "name": "CANNODE_BITRATE", + "type": "Int32", + "group": "UAVCAN", + "category": "Standard", + "shortDesc": "UAVCAN CAN bus bitrate", + "default": 1e+06, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 20000, + "maxValue": 1e+06 }, { - "name": "CAL_GYRO0_ZOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro Z-axis offset", - "default": 0, + "name": "CANNODE_NODE_ID", + "type": "Int32", + "group": "UAVCAN", + "category": "Standard", + "shortDesc": "UAVCAN Node ID", + "longDesc": "Read the specs at http://uavcan.org to learn more about Node ID.", + "default": 120, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 1, + "maxValue": 125 }, { - "name": "CAL_GYRO1_EN", + "name": "CBRK_AIRSPD_CHK", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro 1 enabled", - "default": 1, + "group": "Circuit Breaker", + "category": "Developer", + "shortDesc": "Circuit breaker for airspeed sensor", + "longDesc": "Setting this parameter to 162128 will disable the check for an airspeed sensor. The sensor driver will not be started and it cannot be calibrated. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", + "default": 0, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 162128 }, { - "name": "CAL_GYRO1_ID", + "name": "CBRK_BUZZER", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "ID of the Gyro that the calibration is for", + "group": "Circuit Breaker", + "category": "Developer", + "shortDesc": "Circuit breaker for disabling buzzer", + "longDesc": "Setting this parameter to 782097 will disable the buzzer audio notification. Setting this parameter to 782090 will disable the startup tune, while keeping all others enabled.", "default": 0, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 782097 }, { - "name": "CAL_GYRO1_XOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro X-axis offset", - "default": 0, + "name": "CBRK_ENGINEFAIL", + "type": "Int32", + "group": "Circuit Breaker", + "category": "Developer", + "shortDesc": "Circuit breaker for engine failure detection", + "longDesc": "Setting this parameter to 284953 will disable the engine failure detection. If the aircraft is in engine failure mode the engine failure flag will be set to healthy WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", + "default": 284953, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 0, + "maxValue": 284953 }, { - "name": "CAL_GYRO1_YOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro Y-axis offset", - "default": 0, + "name": "CBRK_FLIGHTTERM", + "type": "Int32", + "group": "Circuit Breaker", + "category": "Developer", + "shortDesc": "Circuit breaker for flight termination", + "longDesc": "Setting this parameter to 121212 will disable the flight termination action if triggered by the FailureDetector logic or if FMU is lost. This circuit breaker does not affect the RC loss, data link loss, geofence, and takeoff failure detection safety logic.", + "default": 121212, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 0, + "maxValue": 121212 }, { - "name": "CAL_GYRO1_ZOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro Z-axis offset", + "name": "CBRK_IO_SAFETY", + "type": "Int32", + "group": "Circuit Breaker", + "category": "Developer", + "shortDesc": "Circuit breaker for IO safety", + "longDesc": "Setting this parameter to 22027 will disable IO safety. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", "default": 0, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 0, + "maxValue": 22027 }, { - "name": "CAL_GYRO2_EN", + "name": "CBRK_RATE_CTRL", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro 2 enabled", - "default": 1, + "group": "Circuit Breaker", + "category": "Developer", + "shortDesc": "Circuit breaker for rate controller output", + "longDesc": "Setting this parameter to 140253 will disable the rate controller uORB publication. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", + "default": 0, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 140253 }, { - "name": "CAL_GYRO2_ID", + "name": "CBRK_SUPPLY_CHK", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "ID of the Gyro that the calibration is for", + "group": "Circuit Breaker", + "category": "Developer", + "shortDesc": "Circuit breaker for power supply check", + "longDesc": "Setting this parameter to 894281 will disable the power valid checks in the commander. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", "default": 0, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 894281 }, { - "name": "CAL_GYRO2_XOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro X-axis offset", + "name": "CBRK_USB_CHK", + "type": "Int32", + "group": "Circuit Breaker", + "category": "Developer", + "shortDesc": "Circuit breaker for USB link check", + "longDesc": "Setting this parameter to 197848 will disable the USB connected checks in the commander. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", "default": 0, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 0, + "maxValue": 197848 }, { - "name": "CAL_GYRO2_YOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro Y-axis offset", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_GYRO2_ZOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Gyro Z-axis offset", + "name": "CBRK_VELPOSERR", + "type": "Int32", + "group": "Circuit Breaker", + "category": "Developer", + "shortDesc": "Circuit breaker for position error check", + "longDesc": "Setting this parameter to 201607 will disable the position and velocity accuracy checks in the commander. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", "default": 0, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 0, + "maxValue": 201607 }, { - "name": "CAL_GYRO_PRIME", + "name": "CBRK_VTOLARMING", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Primary gyro ID", + "group": "Circuit Breaker", + "category": "Developer", + "shortDesc": "Circuit breaker for arming in fixed-wing mode check", + "longDesc": "Setting this parameter to 159753 will enable arming in fixed-wing mode for VTOLs. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", "default": 0, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 159753 }, { - "name": "CAL_MAG0_EN", + "name": "COM_ARM_AUTH", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Mag 0 enabled", - "default": 1, + "group": "Commander", + "category": "Standard", + "shortDesc": "Arm authorization parameters, this uint32_t will be split between starting from the LSB: - 8bits to authorizer system id - 16bits to authentication method parameter, this will be used to store a timeout for the first 2 methods but can be used to another parameter for other new authentication methods. - 7bits to authentication method - one arm = 0 - two step arm = 1 * the MSB bit is not used to avoid problems in the conversion between int and uint", + "longDesc": "Default value: (10 << 0 | 1000 << 8 | 0 << 24) = 256010 - authorizer system id = 10 - authentication method parameter = 10000msec of timeout - authentication method = during arm", + "default": 256010, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG0_ID", + "name": "COM_ARM_AUTH_REQ", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "ID of Magnetometer the calibration is for", + "group": "Commander", + "category": "Standard", + "shortDesc": "Require arm authorization to arm", + "longDesc": "The default allows to arm the vehicle without a arm authorization.", "default": 0, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG0_ROT", + "name": "COM_ARM_CHK_ESCS", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Rotation of magnetometer 0 relative to airframe", - "longDesc": "An internal magnetometer will force a value of -1, so a GCS should only attempt to configure the rotation if the value is greater than or equal to zero.", - "default": -1, - "values": [ - { - "value": -1, - "description": "Internal mag" - }, - { - "value": 0, - "description": "No rotation" - }, - { - "value": 1, - "description": "Yaw 45°" - }, - { - "value": 2, - "description": "Yaw 90°" - }, - { - "value": 3, - "description": "Yaw 135°" - }, - { - "value": 4, - "description": "Yaw 180°" - }, - { - "value": 5, - "description": "Yaw 225°" - }, - { - "value": 6, - "description": "Yaw 270°" - }, - { - "value": 7, - "description": "Yaw 315°" - }, - { - "value": 8, - "description": "Roll 180°" - }, - { - "value": 9, - "description": "Roll 180°, Yaw 45°" - }, - { - "value": 10, - "description": "Roll 180°, Yaw 90°" - }, - { - "value": 11, - "description": "Roll 180°, Yaw 135°" - }, - { - "value": 12, - "description": "Pitch 180°" - }, - { - "value": 13, - "description": "Roll 180°, Yaw 225°" - }, - { - "value": 14, - "description": "Roll 180°, Yaw 270°" - }, - { - "value": 15, - "description": "Roll 180°, Yaw 315°" - }, - { - "value": 16, - "description": "Roll 90°" - }, - { - "value": 17, - "description": "Roll 90°, Yaw 45°" - }, - { - "value": 18, - "description": "Roll 90°, Yaw 90°" - }, - { - "value": 19, - "description": "Roll 90°, Yaw 135°" - }, - { - "value": 20, - "description": "Roll 270°" - }, - { - "value": 21, - "description": "Roll 270°, Yaw 45°" - }, - { - "value": 22, - "description": "Roll 270°, Yaw 90°" - }, - { - "value": 23, - "description": "Roll 270°, Yaw 135°" - }, - { - "value": 24, - "description": "Pitch 90°" - }, - { - "value": 25, - "description": "Pitch 270°" - } - ], - "rebootRequired": true, + "group": "Commander", + "category": "Standard", + "shortDesc": "Require all the ESCs to be detected to arm", + "longDesc": "This param is specific for ESCs reporting status. Normal ESCs configurations are not affected by the change of this param.", + "default": 1, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 30 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG0_XCOMP", + "name": "COM_ARM_EKF_AB", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between X component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "group": "Commander", + "category": "Standard", + "shortDesc": "Maximum value of EKF accelerometer delta velocity bias estimate that will allow arming. Note: ekf2 will limit the delta velocity bias estimate magnitude to be less than EKF2_ABL_LIM * FILTER_UPDATE_PERIOD_MS * 0.001 so this parameter must be less than that to be useful", + "units": "m/s", + "default": 0.0022, + "increment": 0.0001, + "decimalPlaces": 4, + "minValue": 0.001, + "maxValue": 0.01 }, { - "name": "CAL_MAG0_XOFF", + "name": "COM_ARM_EKF_GB", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer X-axis offset", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "group": "Commander", + "category": "Standard", + "shortDesc": "Maximum value of EKF gyro delta angle bias estimate that will allow arming", + "units": "rad", + "default": 0.0011, + "increment": 0.0001, + "decimalPlaces": 4, + "minValue": 0.0001, + "maxValue": 0.0017 }, { - "name": "CAL_MAG0_XSCALE", + "name": "COM_ARM_EKF_HGT", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer X-axis scaling factor", + "group": "Commander", + "category": "Standard", + "shortDesc": "Maximum EKF height innovation test ratio that will allow arming", "default": 1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0.1, + "maxValue": 1 }, { - "name": "CAL_MAG0_YCOMP", + "name": "COM_ARM_EKF_POS", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between Y component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "group": "Commander", + "category": "Standard", + "shortDesc": "Maximum EKF position innovation test ratio that will allow arming", + "default": 0.5, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0.1, + "maxValue": 1 }, { - "name": "CAL_MAG0_YOFF", + "name": "COM_ARM_EKF_VEL", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Y-axis offset", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "group": "Commander", + "category": "Standard", + "shortDesc": "Maximum EKF velocity innovation test ratio that will allow arming", + "default": 0.5, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0.1, + "maxValue": 1 }, { - "name": "CAL_MAG0_YSCALE", + "name": "COM_ARM_EKF_YAW", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Y-axis scaling factor", + "group": "Commander", + "category": "Standard", + "shortDesc": "Maximum EKF yaw innovation test ratio that will allow arming", + "default": 0.5, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0.1, + "maxValue": 1 + }, + { + "name": "COM_ARM_IMU_ACC", + "type": "Float", + "group": "Commander", + "category": "Standard", + "shortDesc": "Maximum accelerometer inconsistency between IMU units that will allow arming", + "units": "m/s/s", + "default": 0.7, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0.1, + "maxValue": 1 + }, + { + "name": "COM_ARM_IMU_GYR", + "type": "Float", + "group": "Commander", + "category": "Standard", + "shortDesc": "Maximum rate gyro inconsistency between IMU units that will allow arming", + "units": "rad/s", + "default": 0.25, + "increment": 0.01, + "decimalPlaces": 3, + "minValue": 0.02, + "maxValue": 0.3 + }, + { + "name": "COM_ARM_MAG_ANG", + "type": "Int32", + "group": "Commander", + "category": "Standard", + "shortDesc": "Maximum magnetic field inconsistency between units that will allow arming Set -1 to disable the check", + "units": "deg", + "default": 30, + "decimalPlaces": 3, + "minValue": 3, + "maxValue": 180 + }, + { + "name": "COM_ARM_MAG_STR", + "type": "Int32", + "group": "Commander", + "category": "Standard", + "shortDesc": "Enable mag strength preflight check", + "longDesc": "Deny arming if the estimator detects a strong magnetic disturbance (check enabled by EKF2_MAG_CHECK)", "default": 1, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG0_ZCOMP", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between Z component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", + "name": "COM_ARM_MIS_REQ", + "type": "Int32", + "group": "Commander", + "category": "Standard", + "shortDesc": "Require valid mission to arm", + "longDesc": "The default allows to arm the vehicle without a valid mission.", "default": 0, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG0_ZOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Z-axis offset", + "name": "COM_ARM_SWISBTN", + "type": "Int32", + "group": "Commander", + "category": "Standard", + "shortDesc": "Arm switch is only a button", + "longDesc": "The default uses the arm switch as real switch. If parameter set button gets handled like stick arming.", "default": 0, "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "COM_ARM_WO_GPS", + "type": "Int32", + "group": "Commander", + "category": "Standard", + "shortDesc": "Allow arming without GPS", + "longDesc": "The default allows to arm the vehicle without GPS signal.", + "default": 1, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "COM_CPU_MAX", + "type": "Float", + "group": "Commander", + "category": "Standard", + "shortDesc": "Maximum allowed CPU load to still arm", + "longDesc": "A negative value disables the check.", + "units": "%", + "default": 90, + "increment": 1, + "decimalPlaces": 0, + "minValue": -1, + "maxValue": 100 + }, + { + "name": "COM_DISARM_LAND", + "type": "Float", + "group": "Commander", + "category": "Standard", + "shortDesc": "Time-out for auto disarm after landing", + "longDesc": "A non-zero, positive value specifies the time-out period in seconds after which the vehicle will be automatically disarmed in case a landing situation has been detected during this period. A zero or negative value means that automatic disarming triggered by landing detection is disabled.", + "units": "s", + "default": 2, + "decimalPlaces": 2, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "CAL_MAG0_ZSCALE", + "name": "COM_DISARM_PRFLT", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Z-axis scaling factor", - "default": 1, - "decimalPlaces": 3, + "group": "Commander", + "category": "Standard", + "shortDesc": "Time-out for auto disarm if too slow to takeoff", + "longDesc": "A non-zero, positive value specifies the time after arming, in seconds, within which the vehicle must take off (after which it will automatically disarm). A zero or negative value means that automatic disarming triggered by a pre-takeoff timeout is disabled.", + "units": "s", + "default": 10, + "decimalPlaces": 2, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "CAL_MAG1_EN", + "name": "COM_DL_LOSS_T", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Mag 1 enabled", - "default": 1, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "group": "Commander", + "category": "Standard", + "shortDesc": "Datalink loss time threshold", + "longDesc": "After this amount of seconds without datalink the data link lost mode triggers", + "units": "s", + "default": 10, + "increment": 1, + "decimalPlaces": 1, + "minValue": 5, + "maxValue": 300 + }, + { + "name": "COM_EF_C2T", + "type": "Float", + "group": "Commander", + "category": "Standard", + "shortDesc": "Engine Failure Current/Throttle Threshold", + "longDesc": "Engine failure triggers only below this current value", + "units": "A/%", + "default": 5, + "increment": 1, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 50 + }, + { + "name": "COM_EF_THROT", + "type": "Float", + "group": "Commander", + "category": "Standard", + "shortDesc": "Engine Failure Throttle Threshold", + "longDesc": "Engine failure triggers only above this throttle value", + "units": "norm", + "default": 0.5, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 + }, + { + "name": "COM_EF_TIME", + "type": "Float", + "group": "Commander", + "category": "Standard", + "shortDesc": "Engine Failure Time Threshold", + "longDesc": "Engine failure triggers only if the throttle threshold and the current to throttle threshold are violated for this time", + "units": "s", + "default": 10, + "increment": 1, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 60 }, { - "name": "CAL_MAG1_ID", + "name": "COM_FLIGHT_UUID", "type": "Int32", - "group": "Sensor Calibration", + "group": "Commander", "category": "System", - "shortDesc": "ID of Magnetometer the calibration is for", + "shortDesc": "Next flight UUID", + "longDesc": "This number is incremented automatically after every flight on disarming in order to remember the next flight UUID. The first flight is 0.", "default": 0, + "volatile": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, + "minValue": 0, "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG1_ROT", + "name": "COM_FLTMODE1", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Rotation of magnetometer 1 relative to airframe", - "longDesc": "An internal magnetometer will force a value of -1, so a GCS should only attempt to configure the rotation if the value is greater than or equal to zero.", + "group": "Commander", + "category": "Standard", + "shortDesc": "First flightmode slot (1000-1160)", + "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", "default": -1, "values": [ { "value": -1, - "description": "Internal mag" + "description": "Unassigned" }, { "value": 0, - "description": "No rotation" + "description": "Manual" }, { "value": 1, - "description": "Yaw 45°" + "description": "Altitude" }, { "value": 2, - "description": "Yaw 90°" + "description": "Position" }, { "value": 3, - "description": "Yaw 135°" + "description": "Mission" }, { "value": 4, - "description": "Yaw 180°" + "description": "Hold" }, { "value": 5, - "description": "Yaw 225°" + "description": "Return" }, { "value": 6, - "description": "Yaw 270°" + "description": "Acro" }, { "value": 7, - "description": "Yaw 315°" + "description": "Offboard" }, { "value": 8, - "description": "Roll 180°" + "description": "Stabilized" }, { "value": 9, - "description": "Roll 180°, Yaw 45°" + "description": "Rattitude" }, { "value": 10, - "description": "Roll 180°, Yaw 90°" + "description": "Takeoff" }, { "value": 11, - "description": "Roll 180°, Yaw 135°" + "description": "Land" }, { "value": 12, - "description": "Pitch 180°" - }, - { - "value": 13, - "description": "Roll 180°, Yaw 225°" - }, - { - "value": 14, - "description": "Roll 180°, Yaw 270°" - }, - { - "value": 15, - "description": "Roll 180°, Yaw 315°" - }, - { - "value": 16, - "description": "Roll 90°" + "description": "Follow Me" + } + ], + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "COM_FLTMODE2", + "type": "Int32", + "group": "Commander", + "category": "Standard", + "shortDesc": "Second flightmode slot (1160-1320)", + "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", + "default": -1, + "values": [ + { + "value": -1, + "description": "Unassigned" }, { - "value": 17, - "description": "Roll 90°, Yaw 45°" + "value": 0, + "description": "Manual" }, { - "value": 18, - "description": "Roll 90°, Yaw 90°" + "value": 1, + "description": "Altitude" }, { - "value": 19, - "description": "Roll 90°, Yaw 135°" + "value": 2, + "description": "Position" }, { - "value": 20, - "description": "Roll 270°" + "value": 3, + "description": "Mission" }, { - "value": 21, - "description": "Roll 270°, Yaw 45°" + "value": 4, + "description": "Hold" }, { - "value": 22, - "description": "Roll 270°, Yaw 90°" + "value": 5, + "description": "Return" }, { - "value": 23, - "description": "Roll 270°, Yaw 135°" + "value": 6, + "description": "Acro" }, { - "value": 24, - "description": "Pitch 90°" + "value": 7, + "description": "Offboard" }, { - "value": 25, - "description": "Pitch 270°" + "value": 8, + "description": "Stabilized" + }, + { + "value": 9, + "description": "Rattitude" + }, + { + "value": 10, + "description": "Takeoff" + }, + { + "value": 11, + "description": "Land" + }, + { + "value": 12, + "description": "Follow Me" } ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 30 - }, - { - "name": "CAL_MAG1_XCOMP", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between X component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG1_XOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer X-axis offset", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG1_XSCALE", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer X-axis scaling factor", - "default": 1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG1_YCOMP", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between Y component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG1_YOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Y-axis offset", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG1_YSCALE", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Y-axis scaling factor", - "default": 1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG1_ZCOMP", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between Z component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG1_ZOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Z-axis offset", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG1_ZSCALE", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Z-axis scaling factor", - "default": 1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG2_EN", - "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Mag 2 enabled", - "default": 1, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "CAL_MAG2_ID", - "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "ID of Magnetometer the calibration is for", - "default": 0, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG2_ROT", + "name": "COM_FLTMODE3", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Rotation of magnetometer 2 relative to airframe", - "longDesc": "An internal magnetometer will force a value of -1, so a GCS should only attempt to configure the rotation if the value is greater than or equal to zero.", + "group": "Commander", + "category": "Standard", + "shortDesc": "Third flightmode slot (1320-1480)", + "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", "default": -1, "values": [ { "value": -1, - "description": "Internal mag" + "description": "Unassigned" }, { "value": 0, - "description": "No rotation" + "description": "Manual" }, { "value": 1, - "description": "Yaw 45°" + "description": "Altitude" }, { "value": 2, - "description": "Yaw 90°" + "description": "Position" }, { "value": 3, - "description": "Yaw 135°" + "description": "Mission" }, { "value": 4, - "description": "Yaw 180°" + "description": "Hold" }, { "value": 5, - "description": "Yaw 225°" + "description": "Return" }, { "value": 6, - "description": "Yaw 270°" + "description": "Acro" }, { "value": 7, - "description": "Yaw 315°" + "description": "Offboard" }, { "value": 8, - "description": "Roll 180°" + "description": "Stabilized" }, { "value": 9, - "description": "Roll 180°, Yaw 45°" + "description": "Rattitude" }, { "value": 10, - "description": "Roll 180°, Yaw 90°" + "description": "Takeoff" }, { "value": 11, - "description": "Roll 180°, Yaw 135°" + "description": "Land" }, { "value": 12, - "description": "Pitch 180°" + "description": "Follow Me" + } + ], + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "COM_FLTMODE4", + "type": "Int32", + "group": "Commander", + "category": "Standard", + "shortDesc": "Fourth flightmode slot (1480-1640)", + "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", + "default": -1, + "values": [ + { + "value": -1, + "description": "Unassigned" }, { - "value": 13, - "description": "Roll 180°, Yaw 225°" + "value": 0, + "description": "Manual" }, { - "value": 14, - "description": "Roll 180°, Yaw 270°" + "value": 1, + "description": "Altitude" }, { - "value": 15, - "description": "Roll 180°, Yaw 315°" + "value": 2, + "description": "Position" }, { - "value": 16, - "description": "Roll 90°" + "value": 3, + "description": "Mission" }, { - "value": 17, - "description": "Roll 90°, Yaw 45°" + "value": 4, + "description": "Hold" }, { - "value": 18, - "description": "Roll 90°, Yaw 90°" + "value": 5, + "description": "Return" }, { - "value": 19, - "description": "Roll 90°, Yaw 135°" + "value": 6, + "description": "Acro" }, { - "value": 20, - "description": "Roll 270°" + "value": 7, + "description": "Offboard" }, { - "value": 21, - "description": "Roll 270°, Yaw 45°" + "value": 8, + "description": "Stabilized" }, { - "value": 22, - "description": "Roll 270°, Yaw 90°" + "value": 9, + "description": "Rattitude" }, { - "value": 23, - "description": "Roll 270°, Yaw 135°" + "value": 10, + "description": "Takeoff" }, { - "value": 24, - "description": "Pitch 90°" + "value": 11, + "description": "Land" }, { - "value": 25, - "description": "Pitch 270°" + "value": 12, + "description": "Follow Me" } ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 30 - }, - { - "name": "CAL_MAG2_XCOMP", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between X component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG2_XOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer X-axis offset", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG2_XSCALE", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer X-axis scaling factor", - "default": 1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG2_YCOMP", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between Y component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG2_YOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Y-axis offset", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG2_YSCALE", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Y-axis scaling factor", - "default": 1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG2_ZCOMP", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between Z component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG2_ZOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Z-axis offset", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG2_ZSCALE", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Z-axis scaling factor", - "default": 1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG3_EN", - "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Mag 3 enabled", - "default": 1, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "CAL_MAG3_ID", - "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "ID of Magnetometer the calibration is for", - "default": 0, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG3_ROT", + "name": "COM_FLTMODE5", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Rotation of magnetometer 2 relative to airframe", - "longDesc": "An internal magnetometer will force a value of -1, so a GCS should only attempt to configure the rotation if the value is greater than or equal to zero.", + "group": "Commander", + "category": "Standard", + "shortDesc": "Fifth flightmode slot (1640-1800)", + "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", "default": -1, "values": [ { "value": -1, - "description": "Internal mag" + "description": "Unassigned" }, { "value": 0, - "description": "No rotation" + "description": "Manual" }, { "value": 1, - "description": "Yaw 45°" + "description": "Altitude" }, { "value": 2, - "description": "Yaw 90°" + "description": "Position" }, { "value": 3, - "description": "Yaw 135°" + "description": "Mission" }, { "value": 4, - "description": "Yaw 180°" + "description": "Hold" }, { "value": 5, - "description": "Yaw 225°" + "description": "Return" }, { "value": 6, - "description": "Yaw 270°" + "description": "Acro" }, { "value": 7, - "description": "Yaw 315°" + "description": "Offboard" }, { "value": 8, - "description": "Roll 180°" + "description": "Stabilized" }, { "value": 9, - "description": "Roll 180°, Yaw 45°" + "description": "Rattitude" }, { "value": 10, - "description": "Roll 180°, Yaw 90°" + "description": "Takeoff" }, { "value": 11, - "description": "Roll 180°, Yaw 135°" + "description": "Land" }, { "value": 12, - "description": "Pitch 180°" + "description": "Follow Me" + } + ], + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "COM_FLTMODE6", + "type": "Int32", + "group": "Commander", + "category": "Standard", + "shortDesc": "Sixth flightmode slot (1800-2000)", + "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", + "default": -1, + "values": [ + { + "value": -1, + "description": "Unassigned" }, { - "value": 13, - "description": "Roll 180°, Yaw 225°" + "value": 0, + "description": "Manual" }, { - "value": 14, - "description": "Roll 180°, Yaw 270°" + "value": 1, + "description": "Altitude" }, { - "value": 15, - "description": "Roll 180°, Yaw 315°" + "value": 2, + "description": "Position" }, { - "value": 16, - "description": "Roll 90°" + "value": 3, + "description": "Mission" }, { - "value": 17, - "description": "Roll 90°, Yaw 45°" + "value": 4, + "description": "Hold" }, { - "value": 18, - "description": "Roll 90°, Yaw 90°" + "value": 5, + "description": "Return" }, { - "value": 19, - "description": "Roll 90°, Yaw 135°" + "value": 6, + "description": "Acro" }, { - "value": 20, - "description": "Roll 270°" + "value": 7, + "description": "Offboard" }, { - "value": 21, - "description": "Roll 270°, Yaw 45°" + "value": 8, + "description": "Stabilized" }, { - "value": 22, - "description": "Roll 270°, Yaw 90°" + "value": 9, + "description": "Rattitude" }, { - "value": 23, - "description": "Roll 270°, Yaw 135°" + "value": 10, + "description": "Takeoff" }, { - "value": 24, - "description": "Pitch 90°" + "value": 11, + "description": "Land" }, { - "value": 25, - "description": "Pitch 270°" + "value": 12, + "description": "Follow Me" } ], - "rebootRequired": true, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 30 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG3_XCOMP", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between X component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG3_XOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer X-axis offset", + "name": "COM_FLT_PROFILE", + "type": "Int32", + "group": "Commander", + "category": "Standard", + "shortDesc": "User Flight Profile", + "longDesc": "Describes the intended use of the vehicle. Can be used by ground control software or log post processing. This param does not influence the behavior within the firmware. This means for example the control logic is independent of the setting of this param (but depends on other params).", "default": 0, + "values": [ + { + "value": 0, + "description": "Default" + }, + { + "value": 100, + "description": "Pro User" + }, + { + "value": 200, + "description": "Flight Tester" + }, + { + "value": 300, + "description": "Developer" + } + ], "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CAL_MAG3_XSCALE", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer X-axis scaling factor", - "default": 1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG3_YCOMP", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between Y component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", - "default": 0, + "name": "COM_HLDL_LOSS_T", + "type": "Int32", + "group": "Commander", + "category": "Standard", + "shortDesc": "High Latency Datalink loss time threshold", + "longDesc": "After this amount of seconds without datalink the data link lost mode triggers", + "units": "s", + "default": 120, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 60, + "maxValue": 3600 }, { - "name": "CAL_MAG3_YOFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Y-axis offset", + "name": "COM_HLDL_REG_T", + "type": "Int32", + "group": "Commander", + "category": "Standard", + "shortDesc": "High Latency Datalink regain time threshold", + "longDesc": "After a data link loss: after this this amount of seconds with a healthy datalink the 'datalink loss' flag is set back to false", + "units": "s", "default": 0, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 0, + "maxValue": 60 }, { - "name": "CAL_MAG3_YSCALE", + "name": "COM_HOME_H_T", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Y-axis scaling factor", - "default": 1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "group": "Commander", + "category": "Standard", + "shortDesc": "Home set horizontal threshold", + "longDesc": "The home position will be set if the estimated positioning accuracy is below the threshold.", + "units": "m", + "default": 5, + "increment": 0.5, + "decimalPlaces": 2, + "minValue": 2, + "maxValue": 15 }, { - "name": "CAL_MAG3_ZCOMP", + "name": "COM_HOME_V_T", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Coefficient describing linear relationship between Z component of magnetometer in body frame axis and either current or throttle depending on value of CAL_MAG_COMP_TYP Unit for throttle-based compensation is [G] and for current-based compensation [G/kA]", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "group": "Commander", + "category": "Standard", + "shortDesc": "Home set vertical threshold", + "longDesc": "The home position will be set if the estimated positioning accuracy is below the threshold.", + "units": "m", + "default": 10, + "increment": 0.5, + "decimalPlaces": 2, + "minValue": 5, + "maxValue": 25 }, { - "name": "CAL_MAG3_ZOFF", + "name": "COM_KILL_DISARM", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Z-axis offset", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "group": "Commander", + "category": "Standard", + "shortDesc": "Timeout value for disarming when kill switch is engaged", + "units": "s", + "default": 5, + "increment": 0.1, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 30 }, { - "name": "CAL_MAG3_ZSCALE", + "name": "COM_LKDOWN_TKO", "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Magnetometer Z-axis scaling factor", - "default": 1, + "group": "Commander", + "category": "Standard", + "shortDesc": "Timeout for detecting a failure after takeoff", + "longDesc": "A non-zero, positive value specifies the timeframe in seconds within failure detector is allowed to put the vehicle into a lockdown state if attitude exceeds the limits defined in FD_FAIL_P and FD_FAIL_R. The check is not executed for flight modes that do support acrobatic maneuvers, e.g: Acro (MC/FW), Rattitude and Manual (FW). A zero or negative value means that the check is disabled.", + "units": "s", + "default": 3, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": -1, + "maxValue": 5 }, { - "name": "CAL_MAG_COMP_TYP", + "name": "COM_LOW_BAT_ACT", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Type of magnetometer compensation", + "group": "Commander", + "category": "Standard", + "shortDesc": "Battery failsafe mode", + "longDesc": "Action the system takes at critical battery. See also BAT_CRIT_THR and BAT_EMERGEN_THR for definition of battery states.", "default": 0, + "increment": 1, "values": [ { "value": 0, - "description": "Disabled" - }, - { - "value": 1, - "description": "Throttle-based compensation" + "description": "Warning" }, { "value": 2, - "description": "Current-based compensation (battery_status instance 0)" + "description": "Land mode" }, { "value": 3, - "description": "Current-based compensation (battery_status instance 1)" + "description": "Return at critical level, land at emergency level" } ], - "decimalPlaces": 3, + "decimalPlaces": 0, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG_PRIME", + "name": "COM_MOT_TEST_EN", "type": "Int32", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Primary mag ID", - "default": 0, + "group": "Commander", + "category": "Standard", + "shortDesc": "Enable Motor Testing", + "longDesc": "If set, enables the motor test interface via MAVLink (DO_MOTOR_TEST), that allows spinning the motors for testing purposes.", + "default": 1, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAL_MAG_SIDES", + "name": "COM_OBL_ACT", "type": "Int32", - "group": "Sensors", + "group": "Commander", "category": "Standard", - "shortDesc": "Bitfield selecting mag sides for calibration", - "longDesc": "If set to two side calibration, only the offsets are estimated, the scale calibration is left unchanged. Thus an initial six side calibration is recommended. Bits: DETECT_ORIENTATION_TAIL_DOWN = 1 DETECT_ORIENTATION_NOSE_DOWN = 2 DETECT_ORIENTATION_LEFT = 4 DETECT_ORIENTATION_RIGHT = 8 DETECT_ORIENTATION_UPSIDE_DOWN = 16 DETECT_ORIENTATION_RIGHTSIDE_UP = 32", - "default": 63, + "shortDesc": "Set offboard loss failsafe mode", + "longDesc": "The offboard loss failsafe will only be entered after a timeout, set by COM_OF_LOSS_T in seconds.", + "default": 0, "values": [ { - "value": 34, - "description": "Two side calibration" + "value": -1, + "description": "Disabled" }, { - "value": 38, - "description": "Three side calibration" + "value": 0, + "description": "Land mode" }, { - "value": 63, - "description": "Six side calibration" + "value": 1, + "description": "Hold mode" + }, + { + "value": 2, + "description": "Return mode" + }, + { + "value": 3, + "description": "Terminate" + }, + { + "value": 4, + "description": "Lockdown" } ], "decimalPlaces": 3, - "minValue": 34, - "maxValue": 63 - }, - { - "name": "CAM_CAP_DELAY", - "type": "Float", - "group": "Camera Capture", - "category": "Standard", - "shortDesc": "Camera strobe delay", - "longDesc": "This parameter sets the delay between image integration start and strobe firing", - "units": "ms", - "default": 0, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 100 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "CAM_CAP_EDGE", + "name": "COM_OBL_RC_ACT", "type": "Int32", - "group": "Camera Control", + "group": "Commander", "category": "Standard", - "shortDesc": "Camera capture edge", + "shortDesc": "Set offboard loss failsafe mode when RC is available", + "longDesc": "The offboard loss failsafe will only be entered after a timeout, set by COM_OF_LOSS_T in seconds.", "default": 0, "values": [ + { + "value": -1, + "description": "Disabled" + }, { "value": 0, - "description": "Falling edge" + "description": "Position mode" }, { "value": 1, - "description": "Rising edge" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "CAM_CAP_FBACK", + "description": "Altitude mode" + }, + { + "value": 2, + "description": "Manual" + }, + { + "value": 3, + "description": "Return mode" + }, + { + "value": 4, + "description": "Land mode" + }, + { + "value": 5, + "description": "Hold mode" + }, + { + "value": 6, + "description": "Terminate" + }, + { + "value": 7, + "description": "Lockdown" + } + ], + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "COM_OBS_AVOID", "type": "Int32", - "group": "Camera Control", + "group": "Mission", "category": "Standard", - "shortDesc": "Camera capture feedback", - "longDesc": "Enables camera capture feedback", + "shortDesc": "Flag to enable obstacle avoidance", "default": 0, - "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CAM_CAP_MODE", + "name": "COM_OF_LOSS_T", + "type": "Float", + "group": "Commander", + "category": "Standard", + "shortDesc": "Time-out to wait when offboard connection is lost before triggering offboard lost action. See COM_OBL_ACT and COM_OBL_RC_ACT to configure action", + "units": "s", + "default": 0.5, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 60 + }, + { + "name": "COM_POSCTL_NAVL", "type": "Int32", - "group": "Camera Control", + "group": "Commander", "category": "Standard", - "shortDesc": "Camera capture timestamping mode", - "longDesc": "Change time measurement", + "shortDesc": "Position control navigation loss response", + "longDesc": "This sets the flight mode that will be used if navigation accuracy is no longer adequate for position control. Navigation accuracy checks can be disabled using the CBRK_VELPOSERR parameter, but doing so will remove protection for all flight modes.", "default": 0, "values": [ { "value": 0, - "description": "Get absolute timestamp" + "description": "Altitude/Manual. Assume use of remote control after fallback. Switch to Altitude mode if a height estimate is available, else switch to MANUAL." }, { "value": 1, - "description": "Get timestamp of mid exposure (active high)" - }, - { - "value": 2, - "description": "Get timestamp of mid exposure (active low)" + "description": "Land/Terminate. Assume no use of remote control after fallback. Switch to Land mode if a height estimate is available, else switch to TERMINATION." } ], - "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "CANNODE_BITRATE", + "name": "COM_POS_FS_DELAY", "type": "Int32", - "group": "UAVCAN", + "group": "Commander", "category": "Standard", - "shortDesc": "UAVCAN CAN bus bitrate", - "default": 1e+06, + "shortDesc": "Loss of position failsafe activation delay", + "longDesc": "This sets number of seconds that the position checks need to be failed before the failsafe will activate. The default value has been optimised for rotary wing applications. For fixed wing applications, a larger value between 5 and 10 should be used.", + "units": "sec", + "default": 1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 20000, - "maxValue": 1e+06 + "minValue": 1, + "maxValue": 100 }, { - "name": "CANNODE_NODE_ID", - "type": "Int32", - "group": "UAVCAN", + "name": "COM_POS_FS_EPH", + "type": "Float", + "group": "Commander", "category": "Standard", - "shortDesc": "UAVCAN Node ID", - "longDesc": "Read the specs at http://uavcan.org to learn more about Node ID.", - "default": 120, + "shortDesc": "Horizontal position error threshold", + "longDesc": "This is the horizontal position error (EPH) threshold that will trigger a failsafe. The default is appropriate for a multicopter. Can be increased for a fixed-wing.", + "units": "m", + "default": 5, "decimalPlaces": 3, - "minValue": 1, - "maxValue": 125 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "CBRK_AIRSPD_CHK", - "type": "Int32", - "group": "Circuit Breaker", - "category": "Developer", - "shortDesc": "Circuit breaker for airspeed sensor", - "longDesc": "Setting this parameter to 162128 will disable the check for an airspeed sensor. The sensor driver will not be started and it cannot be calibrated. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", - "default": 0, - "rebootRequired": true, + "name": "COM_POS_FS_EPV", + "type": "Float", + "group": "Commander", + "category": "Standard", + "shortDesc": "Vertical position error threshold", + "longDesc": "This is the vertical position error (EPV) threshold that will trigger a failsafe. The default is appropriate for a multicopter. Can be increased for a fixed-wing.", + "units": "m", + "default": 10, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 162128 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "CBRK_BUZZER", + "name": "COM_POS_FS_GAIN", "type": "Int32", - "group": "Circuit Breaker", - "category": "Developer", - "shortDesc": "Circuit breaker for disabling buzzer", - "longDesc": "Setting this parameter to 782097 will disable the buzzer audio notification. Setting this parameter to 782090 will disable the startup tune, while keeping all others enabled.", - "default": 0, + "group": "Commander", + "category": "Standard", + "shortDesc": "Loss of position probation gain factor", + "longDesc": "This sets the rate that the loss of position probation time grows when position checks are failing. The default value has been optimised for rotary wing applications. For fixed wing applications a value of 0 should be used.", + "default": 10, "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 782097 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "CBRK_ENGINEFAIL", + "name": "COM_POS_FS_PROB", "type": "Int32", - "group": "Circuit Breaker", - "category": "Developer", - "shortDesc": "Circuit breaker for engine failure detection", - "longDesc": "Setting this parameter to 284953 will disable the engine failure detection. If the aircraft is in engine failure mode the engine failure flag will be set to healthy WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", - "default": 284953, + "group": "Commander", + "category": "Standard", + "shortDesc": "Loss of position probation delay at takeoff", + "longDesc": "The probation delay is the number of seconds that the EKF innovation checks need to pass for the position to be declared good after it has been declared bad. The probation delay will be reset to this parameter value when takeoff is detected. After takeoff, if position checks are passing, the probation delay will reduce by one second for every lapsed second of valid position down to a minimum of 1 second. If position checks are failing, the probation delay will increase by COM_POS_FS_GAIN seconds for every lapsed second up to a maximum of 100 seconds. The default value has been optimised for rotary wing applications. For fixed wing applications, a value of 1 should be used.", + "units": "sec", + "default": 30, "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 284953 + "minValue": 1, + "maxValue": 100 }, { - "name": "CBRK_FLIGHTTERM", + "name": "COM_POWER_COUNT", "type": "Int32", - "group": "Circuit Breaker", - "category": "Developer", - "shortDesc": "Circuit breaker for flight termination", - "longDesc": "Setting this parameter to 121212 will disable the flight termination action if triggered by the FailureDetector logic or if FMU is lost. This circuit breaker does not affect the RC loss, data link loss, geofence, and takeoff failure detection safety logic.", - "default": 121212, - "rebootRequired": true, + "group": "Commander", + "category": "Standard", + "shortDesc": "Required number of redundant power modules", + "longDesc": "This configures a check to verify the expected number of 5V rail power supplies are present. By default only one is expected. Note: CBRK_SUPPLY_CHK disables all power checks including this one.", + "default": 1, "decimalPlaces": 3, "minValue": 0, - "maxValue": 121212 + "maxValue": 4 }, { - "name": "CBRK_IO_SAFETY", + "name": "COM_PREARM_MODE", "type": "Int32", - "group": "Circuit Breaker", - "category": "Developer", - "shortDesc": "Circuit breaker for IO safety", - "longDesc": "Setting this parameter to 22027 will disable IO safety. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", - "default": 0, - "rebootRequired": true, + "group": "Commander", + "category": "Standard", + "shortDesc": "Condition to enter prearmed mode", + "longDesc": "Condition to enter the prearmed state, an intermediate state between disarmed and armed in which non-throttling actuators are active.", + "default": 1, + "values": [ + { + "value": 0, + "description": "Disabled" + }, + { + "value": 1, + "description": "Safety button" + }, + { + "value": 2, + "description": "Always" + } + ], "decimalPlaces": 3, - "minValue": 0, - "maxValue": 22027 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "CBRK_RATE_CTRL", + "name": "COM_RC_ARM_HYST", "type": "Int32", - "group": "Circuit Breaker", - "category": "Developer", - "shortDesc": "Circuit breaker for rate controller output", - "longDesc": "Setting this parameter to 140253 will disable the rate controller uORB publication. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", - "default": 0, - "rebootRequired": true, + "group": "Commander", + "category": "Standard", + "shortDesc": "RC input arm/disarm command duration", + "longDesc": "The default value of 1000 requires the stick to be held in the arm or disarm position for 1 second.", + "default": 1000, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 140253 + "minValue": 100, + "maxValue": 1500 }, { - "name": "CBRK_SUPPLY_CHK", + "name": "COM_RC_IN_MODE", "type": "Int32", - "group": "Circuit Breaker", - "category": "Developer", - "shortDesc": "Circuit breaker for power supply check", - "longDesc": "Setting this parameter to 894281 will disable the power valid checks in the commander. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", + "group": "Commander", + "category": "Standard", + "shortDesc": "RC control input mode", + "longDesc": "The default value of 0 requires a valid RC transmitter setup. Setting this to 1 allows joystick control and disables RC input handling and the associated checks. A value of 2 will generate RC control data from manual input received via MAVLink instead of directly forwarding the manual input data.", "default": 0, - "rebootRequired": true, + "values": [ + { + "value": 0, + "description": "RC Transmitter" + }, + { + "value": 1, + "description": "Joystick/No RC Checks" + }, + { + "value": 2, + "description": "Virtual RC by Joystick" + } + ], "decimalPlaces": 3, "minValue": 0, - "maxValue": 894281 + "maxValue": 2 }, { - "name": "CBRK_USB_CHK", - "type": "Int32", - "group": "Circuit Breaker", - "category": "Developer", - "shortDesc": "Circuit breaker for USB link check", - "longDesc": "Setting this parameter to 197848 will disable the USB connected checks in the commander. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 197848 - }, - { - "name": "CBRK_VELPOSERR", - "type": "Int32", - "group": "Circuit Breaker", - "category": "Developer", - "shortDesc": "Circuit breaker for position error check", - "longDesc": "Setting this parameter to 201607 will disable the position and velocity accuracy checks in the commander. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 201607 - }, - { - "name": "CBRK_VTOLARMING", - "type": "Int32", - "group": "Circuit Breaker", - "category": "Developer", - "shortDesc": "Circuit breaker for arming in fixed-wing mode check", - "longDesc": "Setting this parameter to 159753 will enable arming in fixed-wing mode for VTOLs. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, + "name": "COM_RC_LOSS_T", + "type": "Float", + "group": "Commander", + "category": "Standard", + "shortDesc": "RC loss time threshold", + "longDesc": "After this amount of seconds without RC connection the rc lost flag is set to true", + "units": "s", + "default": 0.5, + "increment": 0.1, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 159753 + "maxValue": 35 }, { - "name": "COM_ARM_AUTH", + "name": "COM_RC_OVERRIDE", "type": "Int32", "group": "Commander", "category": "Standard", - "shortDesc": "Arm authorization parameters, this uint32_t will be split between starting from the LSB: - 8bits to authorizer system id - 16bits to authentication method parameter, this will be used to store a timeout for the first 2 methods but can be used to another parameter for other new authentication methods. - 7bits to authentication method - one arm = 0 - two step arm = 1 * the MSB bit is not used to avoid problems in the conversion between int and uint", - "longDesc": "Default value: (10 << 0 | 1000 << 8 | 0 << 24) = 256010 - authorizer system id = 10 - authentication method parameter = 10000msec of timeout - authentication method = during arm", - "default": 256010, + "shortDesc": "Enable RC stick override of auto and/or offboard modes", + "longDesc": "When RC stick override is enabled, moving the RC sticks immediately gives control back to the pilot (switches to manual position mode): bit 0: Enable for auto modes (except for in critical battery reaction), bit 1: Enable for offboard mode. Only has an effect on multicopters, and VTOLS in multicopter mode.", + "default": 1, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 3 }, { - "name": "COM_ARM_AUTH_REQ", - "type": "Int32", + "name": "COM_RC_STICK_OV", + "type": "Float", "group": "Commander", "category": "Standard", - "shortDesc": "Require arm authorization to arm", - "longDesc": "The default allows to arm the vehicle without a arm authorization.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "RC stick override threshold", + "longDesc": "If an RC stick is moved more than by this amount the system will interpret this as override request by the pilot.", + "units": "%", + "default": 12, + "increment": 0.05, + "decimalPlaces": 0, + "minValue": 5, + "maxValue": 40 }, { - "name": "COM_ARM_CHK_ESCS", + "name": "COM_TAKEOFF_ACT", "type": "Int32", - "group": "Commander", + "group": "Mission", "category": "Standard", - "shortDesc": "Require all the ESCs to be detected to arm", - "longDesc": "This param is specific for ESCs reporting status. Normal ESCs configurations are not affected by the change of this param.", - "default": 1, + "shortDesc": "Action after TAKEOFF has been accepted", + "longDesc": "The mode transition after TAKEOFF has completed successfully.", + "default": 0, + "values": [ + { + "value": 0, + "description": "Hold" + }, + { + "value": 1, + "description": "Mission (if valid)" + } + ], "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "COM_ARM_EKF_AB", + "name": "COM_VEL_FS_EVH", "type": "Float", "group": "Commander", "category": "Standard", - "shortDesc": "Maximum value of EKF accelerometer delta velocity bias estimate that will allow arming. Note: ekf2 will limit the delta velocity bias estimate magnitude to be less than EKF2_ABL_LIM * FILTER_UPDATE_PERIOD_MS * 0.001 so this parameter must be less than that to be useful", + "shortDesc": "Horizontal velocity error threshold", + "longDesc": "This is the horizontal velocity error (EVH) threshold that will trigger a failsafe. The default is appropriate for a multicopter. Can be increased for a fixed-wing.", "units": "m/s", - "default": 0.0022, - "increment": 0.0001, - "decimalPlaces": 4, - "minValue": 0.001, - "maxValue": 0.01 - }, - { - "name": "COM_ARM_EKF_GB", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Maximum value of EKF gyro delta angle bias estimate that will allow arming", - "units": "rad", - "default": 0.0011, - "increment": 0.0001, - "decimalPlaces": 4, - "minValue": 0.0001, - "maxValue": 0.0017 - }, - { - "name": "COM_ARM_EKF_HGT", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Maximum EKF height innovation test ratio that will allow arming", "default": 1, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0.1, - "maxValue": 1 - }, - { - "name": "COM_ARM_EKF_POS", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Maximum EKF position innovation test ratio that will allow arming", - "default": 0.5, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0.1, - "maxValue": 1 - }, - { - "name": "COM_ARM_EKF_VEL", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Maximum EKF velocity innovation test ratio that will allow arming", - "default": 0.5, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0.1, - "maxValue": 1 + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "COM_ARM_EKF_YAW", + "name": "CP_DELAY", "type": "Float", - "group": "Commander", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Maximum EKF yaw innovation test ratio that will allow arming", - "default": 0.5, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0.1, + "shortDesc": "Average delay of the range sensor message plus the tracking delay of the position controller in seconds", + "longDesc": "Only used in Position mode.", + "units": "seconds", + "default": 0.4, + "decimalPlaces": 3, + "minValue": 0, "maxValue": 1 }, { - "name": "COM_ARM_IMU_ACC", + "name": "CP_DIST", "type": "Float", - "group": "Commander", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Maximum accelerometer inconsistency between IMU units that will allow arming", - "units": "m/s/s", - "default": 0.7, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0.1, - "maxValue": 1 + "shortDesc": "Minimum distance the vehicle should keep to all obstacles", + "longDesc": "Only used in Position mode. Collision avoidance is disabled by setting this parameter to a negative value", + "units": "meters", + "default": -1, + "decimalPlaces": 3, + "minValue": -1, + "maxValue": 15 }, { - "name": "COM_ARM_IMU_GYR", + "name": "CP_GO_NO_DATA", "type": "Float", - "group": "Commander", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Maximum rate gyro inconsistency between IMU units that will allow arming", - "units": "rad/s", - "default": 0.25, - "increment": 0.01, + "shortDesc": "Boolean to allow moving into directions where there is no sensor data (outside FOV)", + "longDesc": "Only used in Position mode.", + "default": 0, "decimalPlaces": 3, - "minValue": 0.02, - "maxValue": 0.3 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "COM_ARM_MAG_ANG", - "type": "Int32", - "group": "Commander", + "name": "CP_GUIDE_ANG", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Maximum magnetic field inconsistency between units that will allow arming Set -1 to disable the check", - "units": "deg", + "shortDesc": "Angle left/right from the commanded setpoint by which the collision prevention algorithm can choose to change the setpoint direction", + "longDesc": "Only used in Position mode.", + "units": "[deg]", "default": 30, "decimalPlaces": 3, - "minValue": 3, - "maxValue": 180 - }, - { - "name": "COM_ARM_MAG_STR", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Enable mag strength preflight check", - "longDesc": "Deny arming if the estimator detects a strong magnetic disturbance (check enabled by EKF2_MAG_CHECK)", - "default": 1, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 90 }, { - "name": "COM_ARM_MIS_REQ", + "name": "DSHOT_CONFIG", "type": "Int32", - "group": "Commander", + "group": "DShot", "category": "Standard", - "shortDesc": "Require valid mission to arm", - "longDesc": "The default allows to arm the vehicle without a valid mission.", + "shortDesc": "Configure DShot", + "longDesc": "This enables/disables DShot. The different modes define different speeds, for example DShot150 = 150kb/s. Not all ESCs support all modes. Note: this enables DShot on the FMU outputs. For boards with an IO it is the AUX outputs.", "default": 0, + "values": [ + { + "value": 0, + "description": "Disable (use PWM/Oneshot)" + }, + { + "value": 150, + "description": "DShot150" + }, + { + "value": 300, + "description": "DShot300" + }, + { + "value": 600, + "description": "DShot600" + }, + { + "value": 1200, + "description": "DShot1200" + } + ], + "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "COM_ARM_SWISBTN", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Arm switch is only a button", - "longDesc": "The default uses the arm switch as real switch. If parameter set button gets handled like stick arming.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "name": "DSHOT_MIN", + "type": "Float", + "group": "DShot", + "category": "Standard", + "shortDesc": "Minimum DShot Motor Output", + "longDesc": "Minimum Output Value for DShot in percent. The value depends on the ESC. Make sure to set this high enough so that the motors are always spinning while armed.", + "units": "%", + "default": 0.055, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "COM_ARM_WO_GPS", + "name": "DSHOT_TEL_CFG", "type": "Int32", - "group": "Commander", + "group": "DShot", "category": "Standard", - "shortDesc": "Allow arming without GPS", - "longDesc": "The default allows to arm the vehicle without GPS signal.", - "default": 1, + "shortDesc": "Serial Configuration for DShot Driver", + "longDesc": "Configure on which serial port to run DShot Driver.", + "default": 0, + "values": [ + { + "value": 0, + "description": "Disabled" + }, + { + "value": 6, + "description": "UART 6" + }, + { + "value": 101, + "description": "TELEM 1" + }, + { + "value": 102, + "description": "TELEM 2" + }, + { + "value": 103, + "description": "TELEM 3" + }, + { + "value": 104, + "description": "TELEM/SERIAL 4" + }, + { + "value": 201, + "description": "GPS 1" + }, + { + "value": 202, + "description": "GPS 2" + }, + { + "value": 203, + "description": "GPS 3" + }, + { + "value": 300, + "description": "Radio Controller" + } + ], + "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "COM_CPU_MAX", + "name": "EKF2_ABIAS_INIT", "type": "Float", - "group": "Commander", + "group": "EKF2", "category": "Standard", - "shortDesc": "Maximum allowed CPU load to still arm", - "longDesc": "A negative value disables the check.", - "units": "%", - "default": 90, - "increment": 1, - "decimalPlaces": 0, - "minValue": -1, - "maxValue": 100 + "shortDesc": "1-sigma IMU accelerometer switch-on bias", + "units": "m/s/s", + "default": 0.2, + "rebootRequired": true, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 0.5 }, { - "name": "COM_DISARM_LAND", + "name": "EKF2_ABL_ACCLIM", "type": "Float", - "group": "Commander", + "group": "EKF2", "category": "Standard", - "shortDesc": "Time-out for auto disarm after landing", - "longDesc": "A non-zero, positive value specifies the time-out period in seconds after which the vehicle will be automatically disarmed in case a landing situation has been detected during this period. A zero or negative value means that automatic disarming triggered by landing detection is disabled.", - "units": "s", - "default": 2, - "decimalPlaces": 2, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "shortDesc": "Maximum IMU accel magnitude that allows IMU bias learning. If the magnitude of the IMU accelerometer vector exceeds this value, the EKF delta velocity state estimation will be inhibited. This reduces the adverse effect of high manoeuvre accelerations and IMU nonlinerity and scale factor errors on the delta velocity bias estimates", + "units": "m/s/s", + "default": 25, + "decimalPlaces": 1, + "minValue": 20, + "maxValue": 200 }, { - "name": "COM_DISARM_PRFLT", + "name": "EKF2_ABL_GYRLIM", "type": "Float", - "group": "Commander", + "group": "EKF2", "category": "Standard", - "shortDesc": "Time-out for auto disarm if too slow to takeoff", - "longDesc": "A non-zero, positive value specifies the time after arming, in seconds, within which the vehicle must take off (after which it will automatically disarm). A zero or negative value means that automatic disarming triggered by a pre-takeoff timeout is disabled.", - "units": "s", - "default": 10, + "shortDesc": "Maximum IMU gyro angular rate magnitude that allows IMU bias learning. If the magnitude of the IMU angular rate vector exceeds this value, the EKF delta velocity state estimation will be inhibited. This reduces the adverse effect of rapid rotation rates and associated errors on the delta velocity bias estimates", + "units": "rad/s", + "default": 3, + "decimalPlaces": 1, + "minValue": 2, + "maxValue": 20 + }, + { + "name": "EKF2_ABL_LIM", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Accelerometer bias learning limit. The ekf delta velocity bias states will be limited to within a range equivalent to +- of this value", + "units": "m/s/s", + "default": 0.4, "decimalPlaces": 2, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 0, + "maxValue": 0.8 }, { - "name": "COM_DL_LOSS_T", - "type": "Int32", - "group": "Commander", + "name": "EKF2_ABL_TAU", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "Datalink loss time threshold", - "longDesc": "After this amount of seconds without datalink the data link lost mode triggers", + "shortDesc": "Time constant used by acceleration and angular rate magnitude checks used to inhibit delta velocity bias learning. The vector magnitude of angular rate and acceleration used to check if learning should be inhibited has a peak hold filter applied to it with an exponential decay. This parameter controls the time constant of the decay", "units": "s", - "default": 10, - "increment": 1, - "decimalPlaces": 1, - "minValue": 5, - "maxValue": 300 + "default": 0.5, + "decimalPlaces": 2, + "minValue": 0.1, + "maxValue": 1 }, { - "name": "COM_EF_C2T", + "name": "EKF2_ACC_B_NOISE", "type": "Float", - "group": "Commander", + "group": "EKF2", "category": "Standard", - "shortDesc": "Engine Failure Current/Throttle Threshold", - "longDesc": "Engine failure triggers only below this current value", - "units": "A/%", - "default": 5, - "increment": 1, - "decimalPlaces": 2, + "shortDesc": "Process noise for IMU accelerometer bias prediction", + "units": "m/s**3", + "default": 0.003, + "decimalPlaces": 6, "minValue": 0, - "maxValue": 50 + "maxValue": 0.01 }, { - "name": "COM_EF_THROT", + "name": "EKF2_ACC_NOISE", "type": "Float", - "group": "Commander", + "group": "EKF2", "category": "Standard", - "shortDesc": "Engine Failure Throttle Threshold", - "longDesc": "Engine failure triggers only above this throttle value", - "units": "norm", - "default": 0.5, - "increment": 0.01, + "shortDesc": "Accelerometer noise for covariance prediction", + "units": "m/s/s", + "default": 0.35, "decimalPlaces": 2, - "minValue": 0, + "minValue": 0.01, "maxValue": 1 }, { - "name": "COM_EF_TIME", + "name": "EKF2_AID_MASK", + "type": "Int32", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Integer bitmask controlling data fusion and aiding methods", + "longDesc": "Set bits in the following positions to enable: 0 : Set to true to use GPS data if available 1 : Set to true to use optical flow data if available 2 : Set to true to inhibit IMU delta velocity bias estimation 3 : Set to true to enable vision position fusion 4 : Set to true to enable vision yaw fusion. Cannot be used if bit position 7 is true. 5 : Set to true to enable multi-rotor drag specific force fusion 6 : set to true if the EV observations are in a non NED reference frame and need to be rotated before being used 7 : Set to true to enable GPS yaw fusion. Cannot be used if bit position 4 is true.", + "default": 1, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 511 + }, + { + "name": "EKF2_ANGERR_INIT", "type": "Float", - "group": "Commander", + "group": "EKF2", "category": "Standard", - "shortDesc": "Engine Failure Time Threshold", - "longDesc": "Engine failure triggers only if the throttle threshold and the current to throttle threshold are violated for this time", - "units": "s", - "default": 10, - "increment": 1, - "decimalPlaces": 1, + "shortDesc": "1-sigma tilt angle uncertainty after gravity vector alignment", + "units": "rad", + "default": 0.1, + "rebootRequired": true, + "decimalPlaces": 3, "minValue": 0, - "maxValue": 60 + "maxValue": 0.5 }, { - "name": "COM_FLIGHT_UUID", - "type": "Int32", - "group": "Commander", - "category": "System", - "shortDesc": "Next flight UUID", - "longDesc": "This number is incremented automatically after every flight on disarming in order to remember the next flight UUID. The first flight is 0.", + "name": "EKF2_ARSP_THR", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Airspeed fusion threshold. A value of zero will deactivate airspeed fusion. Any other positive value will determine the minimum airspeed which will still be fused. Set to about 90% of the vehicles stall speed. Both airspeed fusion and sideslip fusion must be active for the EKF to continue navigating after loss of GPS. Use EKF2_FUSE_BETA to activate sideslip fusion", + "units": "m/s", "default": 0, - "volatile": true, - "decimalPlaces": 3, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 2.14748e+09 + "maxValue": 3.40282e+38 }, { - "name": "COM_FLTMODE1", - "type": "Int32", - "group": "Commander", + "name": "EKF2_ASPD_MAX", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "First flightmode slot (1000-1160)", - "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", - "default": -1, - "values": [ - { - "value": -1, - "description": "Unassigned" - }, - { - "value": 0, - "description": "Manual" - }, - { - "value": 1, - "description": "Altitude" - }, - { - "value": 2, - "description": "Position" - }, - { - "value": 3, - "description": "Mission" - }, - { - "value": 4, - "description": "Hold" - }, - { - "value": 5, - "description": "Return" - }, - { - "value": 6, - "description": "Acro" - }, - { - "value": 7, - "description": "Offboard" - }, - { - "value": 8, - "description": "Stabilized" - }, - { - "value": 9, - "description": "Rattitude" - }, - { - "value": 10, - "description": "Takeoff" - }, - { - "value": 11, - "description": "Land" - }, - { - "value": 12, - "description": "Follow Me" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_FLTMODE2", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Second flightmode slot (1160-1320)", - "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", - "default": -1, - "values": [ - { - "value": -1, - "description": "Unassigned" - }, - { - "value": 0, - "description": "Manual" - }, - { - "value": 1, - "description": "Altitude" - }, - { - "value": 2, - "description": "Position" - }, - { - "value": 3, - "description": "Mission" - }, - { - "value": 4, - "description": "Hold" - }, - { - "value": 5, - "description": "Return" - }, - { - "value": 6, - "description": "Acro" - }, - { - "value": 7, - "description": "Offboard" - }, - { - "value": 8, - "description": "Stabilized" - }, - { - "value": 9, - "description": "Rattitude" - }, - { - "value": 10, - "description": "Takeoff" - }, - { - "value": 11, - "description": "Land" - }, - { - "value": 12, - "description": "Follow Me" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_FLTMODE3", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Third flightmode slot (1320-1480)", - "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", - "default": -1, - "values": [ - { - "value": -1, - "description": "Unassigned" - }, - { - "value": 0, - "description": "Manual" - }, - { - "value": 1, - "description": "Altitude" - }, - { - "value": 2, - "description": "Position" - }, - { - "value": 3, - "description": "Mission" - }, - { - "value": 4, - "description": "Hold" - }, - { - "value": 5, - "description": "Return" - }, - { - "value": 6, - "description": "Acro" - }, - { - "value": 7, - "description": "Offboard" - }, - { - "value": 8, - "description": "Stabilized" - }, - { - "value": 9, - "description": "Rattitude" - }, - { - "value": 10, - "description": "Takeoff" - }, - { - "value": 11, - "description": "Land" - }, - { - "value": 12, - "description": "Follow Me" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_FLTMODE4", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Fourth flightmode slot (1480-1640)", - "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", - "default": -1, - "values": [ - { - "value": -1, - "description": "Unassigned" - }, - { - "value": 0, - "description": "Manual" - }, - { - "value": 1, - "description": "Altitude" - }, - { - "value": 2, - "description": "Position" - }, - { - "value": 3, - "description": "Mission" - }, - { - "value": 4, - "description": "Hold" - }, - { - "value": 5, - "description": "Return" - }, - { - "value": 6, - "description": "Acro" - }, - { - "value": 7, - "description": "Offboard" - }, - { - "value": 8, - "description": "Stabilized" - }, - { - "value": 9, - "description": "Rattitude" - }, - { - "value": 10, - "description": "Takeoff" - }, - { - "value": 11, - "description": "Land" - }, - { - "value": 12, - "description": "Follow Me" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_FLTMODE5", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Fifth flightmode slot (1640-1800)", - "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", - "default": -1, - "values": [ - { - "value": -1, - "description": "Unassigned" - }, - { - "value": 0, - "description": "Manual" - }, - { - "value": 1, - "description": "Altitude" - }, - { - "value": 2, - "description": "Position" - }, - { - "value": 3, - "description": "Mission" - }, - { - "value": 4, - "description": "Hold" - }, - { - "value": 5, - "description": "Return" - }, - { - "value": 6, - "description": "Acro" - }, - { - "value": 7, - "description": "Offboard" - }, - { - "value": 8, - "description": "Stabilized" - }, - { - "value": 9, - "description": "Rattitude" - }, - { - "value": 10, - "description": "Takeoff" - }, - { - "value": 11, - "description": "Land" - }, - { - "value": 12, - "description": "Follow Me" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_FLTMODE6", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Sixth flightmode slot (1800-2000)", - "longDesc": "If the main switch channel is in this range the selected flight mode will be applied.", - "default": -1, - "values": [ - { - "value": -1, - "description": "Unassigned" - }, - { - "value": 0, - "description": "Manual" - }, - { - "value": 1, - "description": "Altitude" - }, - { - "value": 2, - "description": "Position" - }, - { - "value": 3, - "description": "Mission" - }, - { - "value": 4, - "description": "Hold" - }, - { - "value": 5, - "description": "Return" - }, - { - "value": 6, - "description": "Acro" - }, - { - "value": 7, - "description": "Offboard" - }, - { - "value": 8, - "description": "Stabilized" - }, - { - "value": 9, - "description": "Rattitude" - }, - { - "value": 10, - "description": "Takeoff" - }, - { - "value": 11, - "description": "Land" - }, - { - "value": 12, - "description": "Follow Me" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_FLT_PROFILE", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "User Flight Profile", - "longDesc": "Describes the intended use of the vehicle. Can be used by ground control software or log post processing. This param does not influence the behavior within the firmware. This means for example the control logic is independent of the setting of this param (but depends on other params).", - "default": 0, - "values": [ - { - "value": 0, - "description": "Default" - }, - { - "value": 100, - "description": "Pro User" - }, - { - "value": 200, - "description": "Flight Tester" - }, - { - "value": 300, - "description": "Developer" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_HLDL_LOSS_T", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "High Latency Datalink loss time threshold", - "longDesc": "After this amount of seconds without datalink the data link lost mode triggers", - "units": "s", - "default": 120, - "decimalPlaces": 3, - "minValue": 60, - "maxValue": 3600 - }, - { - "name": "COM_HLDL_REG_T", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "High Latency Datalink regain time threshold", - "longDesc": "After a data link loss: after this this amount of seconds with a healthy datalink the 'datalink loss' flag is set back to false", - "units": "s", - "default": 0, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 60 - }, - { - "name": "COM_HOME_H_T", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Home set horizontal threshold", - "longDesc": "The home position will be set if the estimated positioning accuracy is below the threshold.", - "units": "m", - "default": 5, - "increment": 0.5, - "decimalPlaces": 2, - "minValue": 2, - "maxValue": 15 - }, - { - "name": "COM_HOME_V_T", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Home set vertical threshold", - "longDesc": "The home position will be set if the estimated positioning accuracy is below the threshold.", - "units": "m", - "default": 10, - "increment": 0.5, - "decimalPlaces": 2, - "minValue": 5, - "maxValue": 25 - }, - { - "name": "COM_KILL_DISARM", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Timeout value for disarming when kill switch is engaged", - "units": "s", - "default": 5, - "increment": 0.1, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 30 - }, - { - "name": "COM_LKDOWN_TKO", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Timeout for detecting a failure after takeoff", - "longDesc": "A non-zero, positive value specifies the timeframe in seconds within failure detector is allowed to put the vehicle into a lockdown state if attitude exceeds the limits defined in FD_FAIL_P and FD_FAIL_R. The check is not executed for flight modes that do support acrobatic maneuvers, e.g: Acro (MC/FW), Rattitude and Manual (FW). A zero or negative value means that the check is disabled.", - "units": "s", - "default": 3, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 5 - }, - { - "name": "COM_LOW_BAT_ACT", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Battery failsafe mode", - "longDesc": "Action the system takes at critical battery. See also BAT_CRIT_THR and BAT_EMERGEN_THR for definition of battery states.", - "default": 0, - "increment": 1, - "values": [ - { - "value": 0, - "description": "Warning" - }, - { - "value": 2, - "description": "Land mode" - }, - { - "value": 3, - "description": "Return at critical level, land at emergency level" - } - ], - "decimalPlaces": 0, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_MOT_TEST_EN", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Enable Motor Testing", - "longDesc": "If set, enables the motor test interface via MAVLink (DO_MOTOR_TEST), that allows spinning the motors for testing purposes.", - "default": 1, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_OBL_ACT", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Set offboard loss failsafe mode", - "longDesc": "The offboard loss failsafe will only be entered after a timeout, set by COM_OF_LOSS_T in seconds.", - "default": 0, - "values": [ - { - "value": -1, - "description": "Disabled" - }, - { - "value": 0, - "description": "Land mode" - }, - { - "value": 1, - "description": "Hold mode" - }, - { - "value": 2, - "description": "Return mode" - }, - { - "value": 3, - "description": "Terminate" - }, - { - "value": 4, - "description": "Lockdown" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_OBL_RC_ACT", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Set offboard loss failsafe mode when RC is available", - "longDesc": "The offboard loss failsafe will only be entered after a timeout, set by COM_OF_LOSS_T in seconds.", - "default": 0, - "values": [ - { - "value": -1, - "description": "Disabled" - }, - { - "value": 0, - "description": "Position mode" - }, - { - "value": 1, - "description": "Altitude mode" - }, - { - "value": 2, - "description": "Manual" - }, - { - "value": 3, - "description": "Return mode" - }, - { - "value": 4, - "description": "Land mode" - }, - { - "value": 5, - "description": "Hold mode" - }, - { - "value": 6, - "description": "Terminate" - }, - { - "value": 7, - "description": "Lockdown" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_OBS_AVOID", - "type": "Int32", - "group": "Mission", - "category": "Standard", - "shortDesc": "Flag to enable obstacle avoidance", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_OF_LOSS_T", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Time-out to wait when offboard connection is lost before triggering offboard lost action. See COM_OBL_ACT and COM_OBL_RC_ACT to configure action", - "units": "s", - "default": 0.5, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 60 - }, - { - "name": "COM_POSCTL_NAVL", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Position control navigation loss response", - "longDesc": "This sets the flight mode that will be used if navigation accuracy is no longer adequate for position control. Navigation accuracy checks can be disabled using the CBRK_VELPOSERR parameter, but doing so will remove protection for all flight modes.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Altitude/Manual. Assume use of remote control after fallback. Switch to Altitude mode if a height estimate is available, else switch to MANUAL." - }, - { - "value": 1, - "description": "Land/Terminate. Assume no use of remote control after fallback. Switch to Land mode if a height estimate is available, else switch to TERMINATION." - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_POS_FS_DELAY", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Loss of position failsafe activation delay", - "longDesc": "This sets number of seconds that the position checks need to be failed before the failsafe will activate. The default value has been optimised for rotary wing applications. For fixed wing applications, a larger value between 5 and 10 should be used.", - "units": "sec", - "default": 1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 1, - "maxValue": 100 - }, - { - "name": "COM_POS_FS_EPH", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Horizontal position error threshold", - "longDesc": "This is the horizontal position error (EPH) threshold that will trigger a failsafe. The default is appropriate for a multicopter. Can be increased for a fixed-wing.", - "units": "m", - "default": 5, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "COM_POS_FS_EPV", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Vertical position error threshold", - "longDesc": "This is the vertical position error (EPV) threshold that will trigger a failsafe. The default is appropriate for a multicopter. Can be increased for a fixed-wing.", - "units": "m", - "default": 10, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "COM_POS_FS_GAIN", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Loss of position probation gain factor", - "longDesc": "This sets the rate that the loss of position probation time grows when position checks are failing. The default value has been optimised for rotary wing applications. For fixed wing applications a value of 0 should be used.", - "default": 10, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_POS_FS_PROB", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Loss of position probation delay at takeoff", - "longDesc": "The probation delay is the number of seconds that the EKF innovation checks need to pass for the position to be declared good after it has been declared bad. The probation delay will be reset to this parameter value when takeoff is detected. After takeoff, if position checks are passing, the probation delay will reduce by one second for every lapsed second of valid position down to a minimum of 1 second. If position checks are failing, the probation delay will increase by COM_POS_FS_GAIN seconds for every lapsed second up to a maximum of 100 seconds. The default value has been optimised for rotary wing applications. For fixed wing applications, a value of 1 should be used.", - "units": "sec", - "default": 30, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 1, - "maxValue": 100 - }, - { - "name": "COM_POWER_COUNT", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Required number of redundant power modules", - "longDesc": "This configures a check to verify the expected number of 5V rail power supplies are present. By default only one is expected. Note: CBRK_SUPPLY_CHK disables all power checks including this one.", - "default": 1, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 4 - }, - { - "name": "COM_PREARM_MODE", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Condition to enter prearmed mode", - "longDesc": "Condition to enter the prearmed state, an intermediate state between disarmed and armed in which non-throttling actuators are active.", - "default": 1, - "values": [ - { - "value": 0, - "description": "Disabled" - }, - { - "value": 1, - "description": "Safety button" - }, - { - "value": 2, - "description": "Always" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_RC_ARM_HYST", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "RC input arm/disarm command duration", - "longDesc": "The default value of 1000 requires the stick to be held in the arm or disarm position for 1 second.", - "default": 1000, - "decimalPlaces": 3, - "minValue": 100, - "maxValue": 1500 - }, - { - "name": "COM_RC_IN_MODE", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "RC control input mode", - "longDesc": "The default value of 0 requires a valid RC transmitter setup. Setting this to 1 allows joystick control and disables RC input handling and the associated checks. A value of 2 will generate RC control data from manual input received via MAVLink instead of directly forwarding the manual input data.", - "default": 0, - "values": [ - { - "value": 0, - "description": "RC Transmitter" - }, - { - "value": 1, - "description": "Joystick/No RC Checks" - }, - { - "value": 2, - "description": "Virtual RC by Joystick" - } - ], - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 2 - }, - { - "name": "COM_RC_LOSS_T", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "RC loss time threshold", - "longDesc": "After this amount of seconds without RC connection the rc lost flag is set to true", - "units": "s", - "default": 0.5, - "increment": 0.1, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 35 - }, - { - "name": "COM_RC_OVERRIDE", - "type": "Int32", - "group": "Commander", - "category": "Standard", - "shortDesc": "Enable RC stick override of auto and/or offboard modes", - "longDesc": "When RC stick override is enabled, moving the RC sticks immediately gives control back to the pilot (switches to manual position mode): bit 0: Enable for auto modes (except for in critical battery reaction), bit 1: Enable for offboard mode. Only has an effect on multicopters, and VTOLS in multicopter mode.", - "default": 1, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 3 - }, - { - "name": "COM_RC_STICK_OV", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "RC stick override threshold", - "longDesc": "If an RC stick is moved more than by this amount the system will interpret this as override request by the pilot.", - "units": "%", - "default": 12, - "increment": 0.05, - "decimalPlaces": 0, - "minValue": 5, - "maxValue": 40 - }, - { - "name": "COM_TAKEOFF_ACT", - "type": "Int32", - "group": "Mission", - "category": "Standard", - "shortDesc": "Action after TAKEOFF has been accepted", - "longDesc": "The mode transition after TAKEOFF has completed successfully.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Hold" - }, - { - "value": 1, - "description": "Mission (if valid)" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "COM_VEL_FS_EVH", - "type": "Float", - "group": "Commander", - "category": "Standard", - "shortDesc": "Horizontal velocity error threshold", - "longDesc": "This is the horizontal velocity error (EVH) threshold that will trigger a failsafe. The default is appropriate for a multicopter. Can be increased for a fixed-wing.", - "units": "m/s", - "default": 1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CP_DELAY", - "type": "Float", - "group": "Multicopter Position Control", - "category": "Standard", - "shortDesc": "Average delay of the range sensor message plus the tracking delay of the position controller in seconds", - "longDesc": "Only used in Position mode.", - "units": "seconds", - "default": 0.4, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "CP_DIST", - "type": "Float", - "group": "Multicopter Position Control", - "category": "Standard", - "shortDesc": "Minimum distance the vehicle should keep to all obstacles", - "longDesc": "Only used in Position mode. Collision avoidance is disabled by setting this parameter to a negative value", - "units": "meters", - "default": -1, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 15 - }, - { - "name": "CP_GO_NO_DATA", - "type": "Float", - "group": "Multicopter Position Control", - "category": "Standard", - "shortDesc": "Boolean to allow moving into directions where there is no sensor data (outside FOV)", - "longDesc": "Only used in Position mode.", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "CP_GUIDE_ANG", - "type": "Float", - "group": "Multicopter Position Control", - "category": "Standard", - "shortDesc": "Angle left/right from the commanded setpoint by which the collision prevention algorithm can choose to change the setpoint direction", - "longDesc": "Only used in Position mode.", - "units": "[deg]", - "default": 30, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 90 - }, - { - "name": "DSHOT_CONFIG", - "type": "Int32", - "group": "DShot", - "category": "Standard", - "shortDesc": "Configure DShot", - "longDesc": "This enables/disables DShot. The different modes define different speeds, for example DShot150 = 150kb/s. Not all ESCs support all modes. Note: this enables DShot on the FMU outputs. For boards with an IO it is the AUX outputs.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Disable (use PWM/Oneshot)" - }, - { - "value": 150, - "description": "DShot150" - }, - { - "value": 300, - "description": "DShot300" - }, - { - "value": 600, - "description": "DShot600" - }, - { - "value": 1200, - "description": "DShot1200" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "DSHOT_MIN", - "type": "Float", - "group": "DShot", - "category": "Standard", - "shortDesc": "Minimum DShot Motor Output", - "longDesc": "Minimum Output Value for DShot in percent. The value depends on the ESC. Make sure to set this high enough so that the motors are always spinning while armed.", - "units": "%", - "default": 0.055, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "DSHOT_TEL_CFG", - "type": "Int32", - "group": "DShot", - "category": "Standard", - "shortDesc": "Serial Configuration for DShot Driver", - "longDesc": "Configure on which serial port to run DShot Driver.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Disabled" - }, - { - "value": 6, - "description": "UART 6" - }, - { - "value": 101, - "description": "TELEM 1" - }, - { - "value": 102, - "description": "TELEM 2" - }, - { - "value": 103, - "description": "TELEM 3" - }, - { - "value": 104, - "description": "TELEM/SERIAL 4" - }, - { - "value": 201, - "description": "GPS 1" - }, - { - "value": 202, - "description": "GPS 2" - }, - { - "value": 203, - "description": "GPS 3" - }, - { - "value": 300, - "description": "Radio Controller" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "EKF2_ABIAS_INIT", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "1-sigma IMU accelerometer switch-on bias", - "units": "m/s/s", - "default": 0.2, - "rebootRequired": true, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 0.5 - }, - { - "name": "EKF2_ABL_ACCLIM", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Maximum IMU accel magnitude that allows IMU bias learning. If the magnitude of the IMU accelerometer vector exceeds this value, the EKF delta velocity state estimation will be inhibited. This reduces the adverse effect of high manoeuvre accelerations and IMU nonlinerity and scale factor errors on the delta velocity bias estimates", - "units": "m/s/s", - "default": 25, - "decimalPlaces": 1, - "minValue": 20, - "maxValue": 200 - }, - { - "name": "EKF2_ABL_GYRLIM", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Maximum IMU gyro angular rate magnitude that allows IMU bias learning. If the magnitude of the IMU angular rate vector exceeds this value, the EKF delta velocity state estimation will be inhibited. This reduces the adverse effect of rapid rotation rates and associated errors on the delta velocity bias estimates", - "units": "rad/s", - "default": 3, - "decimalPlaces": 1, - "minValue": 2, - "maxValue": 20 - }, - { - "name": "EKF2_ABL_LIM", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Accelerometer bias learning limit. The ekf delta velocity bias states will be limited to within a range equivalent to +- of this value", - "units": "m/s/s", - "default": 0.4, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 0.8 - }, - { - "name": "EKF2_ABL_TAU", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Time constant used by acceleration and angular rate magnitude checks used to inhibit delta velocity bias learning. The vector magnitude of angular rate and acceleration used to check if learning should be inhibited has a peak hold filter applied to it with an exponential decay. This parameter controls the time constant of the decay", - "units": "s", - "default": 0.5, - "decimalPlaces": 2, - "minValue": 0.1, - "maxValue": 1 - }, - { - "name": "EKF2_ACC_B_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Process noise for IMU accelerometer bias prediction", - "units": "m/s**3", - "default": 0.003, - "decimalPlaces": 6, - "minValue": 0, - "maxValue": 0.01 - }, - { - "name": "EKF2_ACC_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Accelerometer noise for covariance prediction", - "units": "m/s/s", - "default": 0.35, - "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 1 - }, - { - "name": "EKF2_AID_MASK", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Integer bitmask controlling data fusion and aiding methods", - "longDesc": "Set bits in the following positions to enable: 0 : Set to true to use GPS data if available 1 : Set to true to use optical flow data if available 2 : Set to true to inhibit IMU delta velocity bias estimation 3 : Set to true to enable vision position fusion 4 : Set to true to enable vision yaw fusion. Cannot be used if bit position 7 is true. 5 : Set to true to enable multi-rotor drag specific force fusion 6 : set to true if the EV observations are in a non NED reference frame and need to be rotated before being used 7 : Set to true to enable GPS yaw fusion. Cannot be used if bit position 4 is true.", - "default": 1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 511 - }, - { - "name": "EKF2_ANGERR_INIT", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "1-sigma tilt angle uncertainty after gravity vector alignment", - "units": "rad", - "default": 0.1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 0.5 - }, - { - "name": "EKF2_ARSP_THR", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Airspeed fusion threshold. A value of zero will deactivate airspeed fusion. Any other positive value will determine the minimum airspeed which will still be fused. Set to about 90% of the vehicles stall speed. Both airspeed fusion and sideslip fusion must be active for the EKF to continue navigating after loss of GPS. Use EKF2_FUSE_BETA to activate sideslip fusion", - "units": "m/s", - "default": 0, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_ASPD_MAX", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Upper limit on airspeed along individual axes used to correct baro for position error effects", - "units": "m/s", - "default": 20, - "decimalPlaces": 1, - "minValue": 5, - "maxValue": 50 - }, - { - "name": "EKF2_ASP_DELAY", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Airspeed measurement delay relative to IMU measurements", - "units": "ms", - "default": 100, - "rebootRequired": true, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 300 - }, - { - "name": "EKF2_AVEL_DELAY", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Auxillary Velocity Estimate (e.g from a landing target) delay relative to IMU measurements", - "units": "ms", - "default": 5, - "rebootRequired": true, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 300 - }, - { - "name": "EKF2_BARO_DELAY", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Barometer measurement delay relative to IMU measurements", - "units": "ms", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 300 - }, - { - "name": "EKF2_BARO_GATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size for barometric and GPS height fusion", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "SD", - "default": 5, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_BARO_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for barometric altitude", - "units": "m", - "default": 3.5, - "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 15 - }, - { - "name": "EKF2_BCOEF_X", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "X-axis ballistic coefficient used by the multi-rotor specific drag force model. This should be adjusted to minimise variance of the X-axis drag specific force innovation sequence", - "units": "kg/m**2", - "default": 25, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 100 - }, - { - "name": "EKF2_BCOEF_Y", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Y-axis ballistic coefficient used by the multi-rotor specific drag force model. This should be adjusted to minimise variance of the Y-axis drag specific force innovation sequence", - "units": "kg/m**2", - "default": 25, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 100 - }, - { - "name": "EKF2_BETA_GATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size for synthetic sideslip fusion", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "SD", - "default": 5, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_BETA_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Noise for synthetic sideslip fusion", - "units": "m/s", - "default": 0.3, - "decimalPlaces": 2, - "minValue": 0.1, - "maxValue": 1 - }, - { - "name": "EKF2_DECL_TYPE", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Integer bitmask controlling handling of magnetic declination", - "longDesc": "Set bits in the following positions to enable functions. 0 : Set to true to use the declination from the geo_lookup library when the GPS position becomes available, set to false to always use the EKF2_MAG_DECL value. 1 : Set to true to save the EKF2_MAG_DECL parameter to the value returned by the EKF when the vehicle disarms. 2 : Set to true to always use the declination as an observation when 3-axis magnetometer fusion is being used.", - "default": 7, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 7 - }, - { - "name": "EKF2_DRAG_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Specific drag force observation noise variance used by the multi-rotor specific drag force model. Increasing it makes the multi-rotor wind estimates adjust more slowly", - "units": "(m/sec**2)**2", - "default": 2.5, - "decimalPlaces": 2, - "minValue": 0.5, - "maxValue": 10 - }, - { - "name": "EKF2_EAS_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for airspeed fusion", - "units": "m/s", - "default": 1.4, - "decimalPlaces": 1, - "minValue": 0.5, - "maxValue": 5 - }, - { - "name": "EKF2_EVA_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for vision angle observations used to lower bound or replace the uncertainty included in the message", - "units": "rad", - "default": 0.05, - "decimalPlaces": 2, - "minValue": 0.05, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_EVP_GATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size for vision position fusion Sets the number of standard deviations used by the innovation consistency test", - "units": "SD", - "default": 5, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_EVP_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for vision position observations used to lower bound or replace the uncertainty included in the message", - "units": "m", - "default": 0.1, - "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_EVV_GATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size for vision velocity estimate fusion", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "SD", - "default": 3, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_EVV_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for vision velocity observations used to lower bound or replace the uncertainty included in the message", - "units": "m/s", - "default": 0.1, - "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_EV_DELAY", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Vision Position Estimator delay relative to IMU measurements", - "units": "ms", - "default": 175, - "rebootRequired": true, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 300 - }, - { - "name": "EKF2_EV_NOISE_MD", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Whether to set the external vision observation noise from the parameter or from vision message", - "longDesc": "If set to true the observation noise is set from the parameters directly, if set to false the measurement noise is taken from the vision message and the parameter are used as a lower bound.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "EKF2_EV_POS_X", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "X position of VI sensor focal point in body frame (forward axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_EV_POS_Y", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Y position of VI sensor focal point in body frame (right axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_EV_POS_Z", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Z position of VI sensor focal point in body frame (down axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_FUSE_BETA", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Boolean determining if synthetic sideslip measurements should fused", - "longDesc": "A value of 1 indicates that fusion is active Both sideslip fusion and airspeed fusion must be active for the EKF to continue navigating after loss of GPS. Use EKF2_ARSP_THR to activate airspeed fusion.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "EKF2_GBIAS_INIT", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "1-sigma IMU gyro switch-on bias", - "units": "rad/sec", - "default": 0.1, - "rebootRequired": true, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 0.2 - }, - { - "name": "EKF2_GND_EFF_DZ", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Baro deadzone range for height fusion", - "longDesc": "Sets the value of deadzone applied to negative baro innovations. Deadzone is enabled when EKF2_GND_EFF_DZ > 0.", - "units": "M", - "default": 0, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 10 - }, - { - "name": "EKF2_GND_MAX_HGT", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Height above ground level for ground effect zone", - "longDesc": "Sets the maximum distance to the ground level where negative baro innovations are expected.", - "units": "M", - "default": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 5 - }, - { - "name": "EKF2_GPS_CHECK", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Integer bitmask controlling GPS checks", - "longDesc": "Set bits to 1 to enable checks. Checks enabled by the following bit positions 0 : Minimum required sat count set by EKF2_REQ_NSATS 1 : Minimum required PDOP set by EKF2_REQ_PDOP 2 : Maximum allowed horizontal position error set by EKF2_REQ_EPH 3 : Maximum allowed vertical position error set by EKF2_REQ_EPV 4 : Maximum allowed speed error set by EKF2_REQ_SACC 5 : Maximum allowed horizontal position rate set by EKF2_REQ_HDRIFT. This check will only run when the vehicle is on ground and stationary. Detecton of the stationary condition is controlled by the EKF2_MOVE_TEST parameter. 6 : Maximum allowed vertical position rate set by EKF2_REQ_VDRIFT. This check will only run when the vehicle is on ground and stationary. Detecton of the stationary condition is controlled by the EKF2_MOVE_TEST parameter. 7 : Maximum allowed horizontal speed set by EKF2_REQ_HDRIFT. This check will only run when the vehicle is on ground and stationary. Detecton of the stationary condition is controlled by the EKF2_MOVE_TEST parameter. 8 : Maximum allowed vertical velocity discrepancy set by EKF2_REQ_VDRIFT", - "default": 245, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 511 - }, - { - "name": "EKF2_GPS_DELAY", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "GPS measurement delay relative to IMU measurements", - "units": "ms", - "default": 110, - "rebootRequired": true, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 300 - }, - { - "name": "EKF2_GPS_MASK", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Multi GPS Blending Control Mask", - "longDesc": "Set bits in the following positions to set which GPS accuracy metrics will be used to calculate the blending weight. Set to zero to disable and always used first GPS instance. 0 : Set to true to use speed accuracy 1 : Set to true to use horizontal position accuracy 2 : Set to true to use vertical position accuracy", - "default": 0, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 7 - }, - { - "name": "EKF2_GPS_POS_X", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "X position of GPS antenna in body frame (forward axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_GPS_POS_Y", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Y position of GPS antenna in body frame (right axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_GPS_POS_Z", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Z position of GPS antenna in body frame (down axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_GPS_P_GATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size for GPS horizontal position fusion", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "SD", - "default": 5, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_GPS_P_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for gps position", - "units": "m", - "default": 0.5, - "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 10 - }, - { - "name": "EKF2_GPS_TAU", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Multi GPS Blending Time Constant", - "longDesc": "Sets the longest time constant that will be applied to the calculation of GPS position and height offsets used to correct data from multiple GPS data for steady state position differences.", - "units": "s", - "default": 10, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 100 - }, - { - "name": "EKF2_GPS_V_GATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size for GPS velocity fusion", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "SD", - "default": 5, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_GPS_V_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for gps horizontal velocity", - "units": "m/s", - "default": 0.3, - "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 5 - }, - { - "name": "EKF2_GSF_TAS", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Default value of true airspeed used in EKF-GSF AHRS calculation. If no airspeed measurements are avalable, the EKF-GSF AHRS calculation will assume this value of true airspeed when compensating for centripetal acceleration during turns. Set to zero to disable centripetal acceleration compensation during fixed wing flight modes", - "units": "m/s", - "default": 15, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 100 - }, - { - "name": "EKF2_GYR_B_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Process noise for IMU rate gyro bias prediction", - "units": "rad/s**2", - "default": 0.001, - "decimalPlaces": 6, - "minValue": 0, - "maxValue": 0.01 - }, - { - "name": "EKF2_GYR_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Rate gyro noise for covariance prediction", - "units": "rad/s", - "default": 0.015, - "decimalPlaces": 4, - "minValue": 0.0001, - "maxValue": 0.1 - }, - { - "name": "EKF2_HDG_GATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size for magnetic heading fusion", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "SD", - "default": 2.6, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_HEAD_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for magnetic heading fusion", - "units": "rad", - "default": 0.3, - "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 1 - }, - { - "name": "EKF2_HGT_MODE", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Determines the primary source of height data used by the EKF", - "longDesc": "The range sensor option should only be used when for operation over a flat surface as the local NED origin will move up and down with ground level.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Barometric pressure" - }, - { - "value": 1, - "description": "GPS" - }, - { - "value": 2, - "description": "Range sensor" - }, - { - "value": 3, - "description": "Vision" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "EKF2_IMU_ID", - "type": "Int32", - "group": "EKF2", - "category": "Developer", - "shortDesc": "Device id of IMU", - "longDesc": "Set to 0 to use system selected (sensor_combined) IMU, otherwise set to the device id of the desired IMU (vehicle_imu).", - "default": 0, - "values": [ - { - "value": 0, - "description": "System Primary" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "EKF2_IMU_POS_X", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "X position of IMU in body frame (forward axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_IMU_POS_Y", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Y position of IMU in body frame (right axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_IMU_POS_Z", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Z position of IMU in body frame (down axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_MAGBIAS_ID", - "type": "Int32", - "group": "EKF2", - "category": "System", - "shortDesc": "ID of Magnetometer the learned bias is for", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "EKF2_MAGBIAS_X", - "type": "Float", - "group": "EKF2", - "category": "System", - "shortDesc": "Learned value of magnetometer X axis bias. This is the amount of X-axis magnetometer bias learned by the EKF and saved from the last flight. It must be set to zero if the ground based magnetometer calibration is repeated", - "units": "mGauss", - "default": 0, - "rebootRequired": true, - "volatile": true, - "decimalPlaces": 3, - "minValue": -0.5, - "maxValue": 0.5 - }, - { - "name": "EKF2_MAGBIAS_Y", - "type": "Float", - "group": "EKF2", - "category": "System", - "shortDesc": "Learned value of magnetometer Y axis bias. This is the amount of Y-axis magnetometer bias learned by the EKF and saved from the last flight. It must be set to zero if the ground based magnetometer calibration is repeated", - "units": "mGauss", - "default": 0, - "rebootRequired": true, - "volatile": true, - "decimalPlaces": 3, - "minValue": -0.5, - "maxValue": 0.5 - }, - { - "name": "EKF2_MAGBIAS_Z", - "type": "Float", - "group": "EKF2", - "category": "System", - "shortDesc": "Learned value of magnetometer Z axis bias. This is the amount of Z-axis magnetometer bias learned by the EKF and saved from the last flight. It must be set to zero if the ground based magnetometer calibration is repeated", - "units": "mGauss", - "default": 0, - "rebootRequired": true, - "volatile": true, - "decimalPlaces": 3, - "minValue": -0.5, - "maxValue": 0.5 - }, - { - "name": "EKF2_MAGB_K", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Maximum fraction of learned mag bias saved at each disarm. Smaller values make the saved mag bias learn slower from flight to flight. Larger values make it learn faster. Must be > 0.0 and <= 1.0", - "default": 0.2, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "EKF2_MAGB_VREF", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "State variance assumed for magnetometer bias storage. This is a reference variance used to calculate the fraction of learned magnetometer bias that will be used to update the stored value. Smaller values will make the stored bias data adjust more slowly from flight to flight. Larger values will make it adjust faster", - "units": "mGauss**2", - "default": 2.5e-07, - "rebootRequired": true, - "decimalPlaces": 8, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_MAG_ACCLIM", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Horizontal acceleration threshold used by automatic selection of magnetometer fusion method. This parameter is used when the magnetometer fusion method is set automatically (EKF2_MAG_TYPE = 0). If the filtered horizontal acceleration is greater than this parameter value, then the EKF will use 3-axis magnetomer fusion", - "units": "m/s**2", - "default": 0.5, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 5 - }, - { - "name": "EKF2_MAG_B_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Process noise for body magnetic field prediction", - "units": "Gauss/s", - "default": 0.0001, - "decimalPlaces": 6, - "minValue": 0, - "maxValue": 0.1 - }, - { - "name": "EKF2_MAG_CHECK", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Magnetic field strength test selection", - "longDesc": "When set, the EKF checks the strength of the magnetic field to decide whether the magnetometer data is valid. If GPS data is received, the magnetic field is compared to a World Magnetic Model (WMM), otherwise an average value is used. This check is useful to reject occasional hard iron disturbance.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "EKF2_MAG_DECL", - "type": "Float", - "group": "EKF2", - "category": "System", - "shortDesc": "Magnetic declination", - "units": "deg", - "default": 0, - "volatile": true, - "decimalPlaces": 1, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_MAG_DELAY", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Magnetometer measurement delay relative to IMU measurements", - "units": "ms", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 300 - }, - { - "name": "EKF2_MAG_E_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Process noise for earth magnetic field prediction", - "units": "Gauss/s", - "default": 0.001, - "decimalPlaces": 6, - "minValue": 0, - "maxValue": 0.1 - }, - { - "name": "EKF2_MAG_GATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size for magnetometer XYZ component fusion", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "SD", - "default": 3, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_MAG_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for magnetometer 3-axis fusion", - "units": "Gauss", - "default": 0.05, - "decimalPlaces": 3, - "minValue": 0.001, - "maxValue": 1 - }, - { - "name": "EKF2_MAG_TYPE", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Type of magnetometer fusion", - "longDesc": "Integer controlling the type of magnetometer fusion used - magnetic heading or 3-component vector. The fuson of magnetomer data as a three component vector enables vehicle body fixed hard iron errors to be learned, but requires a stable earth field. If set to 'Automatic' magnetic heading fusion is used when on-ground and 3-axis magnetic field fusion in-flight with fallback to magnetic heading fusion if there is insufficient motion to make yaw or magnetic field states observable. If set to 'Magnetic heading' magnetic heading fusion is used at all times If set to '3-axis' 3-axis field fusion is used at all times. If set to 'VTOL custom' the behaviour is the same as 'Automatic', but if fusing airspeed, magnetometer fusion is only allowed to modify the magnetic field states. This can be used by VTOL platforms with large magnetic field disturbances to prevent incorrect bias states being learned during forward flight operation which can adversely affect estimation accuracy after transition to hovering flight. If set to 'MC custom' the behaviour is the same as 'Automatic, but if there are no earth frame position or velocity observations being used, the magnetometer will not be used. This enables vehicles to operate with no GPS in environments where the magnetic field cannot be used to provide a heading reference. Prior to flight, the yaw angle is assumed to be constant if movement tests controlled by the EKF2_MOVE_TEST parameter indicate that the vehicle is static. This allows the vehicle to be placed on the ground to learn the yaw gyro bias prior to flight. If set to 'None' the magnetometer will not be used under any circumstance. If no external source of yaw is available, it is possible to use post-takeoff horizontal movement combined with GPS velocity measurements to align the yaw angle with the timer required (depending on the amount of movement and GPS data quality). Other external sources of yaw may be used if selected via the EKF2_AID_MASK parameter.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Automatic" - }, - { - "value": 1, - "description": "Magnetic heading" - }, - { - "value": 2, - "description": "3-axis" - }, - { - "value": 3, - "description": "VTOL custom" - }, - { - "value": 4, - "description": "MC custom" - }, - { - "value": 5, - "description": "None" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "EKF2_MAG_YAWLIM", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Yaw rate threshold used by automatic selection of magnetometer fusion method. This parameter is used when the magnetometer fusion method is set automatically (EKF2_MAG_TYPE = 0). If the filtered yaw rate is greater than this parameter value, then the EKF will use 3-axis magnetomer fusion", - "units": "rad/s", - "default": 0.25, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "EKF2_MIN_OBS_DT", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Minimum time of arrival delta between non-IMU observations before data is downsampled. Baro and Magnetometer data will be averaged before downsampling, other data will be point sampled resulting in loss of information", - "units": "ms", - "default": 20, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 10, - "maxValue": 50 - }, - { - "name": "EKF2_MIN_RNG", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Expected range finder reading when on ground", - "longDesc": "If the vehicle is on ground, is not moving as determined by the motion test controlled by EKF2_MOVE_TEST and the range finder is returning invalid or no data, then an assumed range value of EKF2_MIN_RNG will be used by the terrain estimator so that a terrain height estimate is avilable at the start of flight in situations where the range finder may be inside its minimum measurements distance when on ground.", - "units": "m", - "default": 0.1, - "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_MOVE_TEST", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Vehicle movement test threshold", - "longDesc": "Scales the threshold tests applied to IMU data used to determine if the vehicle is static or moving. See parameter descriptions for EKF2_GPS_CHECK and EKF2_MAG_TYPE for further information on the functionality affected by this parameter.", - "default": 1, - "decimalPlaces": 1, - "minValue": 0.1, - "maxValue": 10 - }, - { - "name": "EKF2_NOAID_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for non-aiding position hold", - "units": "m", - "default": 10, - "decimalPlaces": 1, - "minValue": 0.5, - "maxValue": 50 - }, - { - "name": "EKF2_NOAID_TOUT", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Maximum lapsed time from last fusion of measurements that constrain velocity drift before the EKF will report the horizontal nav solution as invalid", - "units": "uSec", - "default": 5e+06, - "decimalPlaces": 3, - "minValue": 500000, - "maxValue": 1e+07 - }, - { - "name": "EKF2_OF_DELAY", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Optical flow measurement delay relative to IMU measurements Assumes measurement is timestamped at trailing edge of integration period", - "units": "ms", - "default": 5, - "rebootRequired": true, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 300 - }, - { - "name": "EKF2_OF_GATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size for optical flow fusion", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "SD", - "default": 3, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_OF_N_MAX", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for the optical flow sensor", - "longDesc": "(when it's reported quality metric is at the minimum set by EKF2_OF_QMIN). The following condition must be met: EKF2_OF_N_MAXN >= EKF2_OF_N_MIN", - "units": "rad/s", - "default": 0.5, - "decimalPlaces": 2, - "minValue": 0.05, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_OF_N_MIN", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for the optical flow sensor when it's reported quality metric is at the maximum", - "units": "rad/s", - "default": 0.15, - "decimalPlaces": 2, - "minValue": 0.05, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_OF_POS_X", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "X position of optical flow focal point in body frame (forward axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_OF_POS_Y", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Y position of optical flow focal point in body frame (right axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_OF_POS_Z", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Z position of optical flow focal point in body frame (down axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_OF_QMIN", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Optical Flow data will only be used if the sensor reports a quality metric >= EKF2_OF_QMIN", - "default": 1, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 255 - }, - { - "name": "EKF2_PCOEF_XN", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Static pressure position error coefficient for the negative X axis. This is the ratio of static pressure error to dynamic pressure generated by a negative wind relative velocity along the X body axis. If the baro height estimate rises during backwards flight, then this will be a negative number", - "default": 0, - "decimalPlaces": 2, - "minValue": -0.5, - "maxValue": 0.5 - }, - { - "name": "EKF2_PCOEF_XP", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Static pressure position error coefficient for the positive X axis This is the ratio of static pressure error to dynamic pressure generated by a positive wind relative velocity along the X body axis. If the baro height estimate rises during forward flight, then this will be a negative number", - "default": 0, - "decimalPlaces": 2, - "minValue": -0.5, - "maxValue": 0.5 - }, - { - "name": "EKF2_PCOEF_YN", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Pressure position error coefficient for the negative Y axis. This is the ratio of static pressure error to dynamic pressure generated by a wind relative velocity along the negative Y (LH) body axis. If the baro height estimate rises during sideways flight to the left, then this will be a negative number", - "default": 0, - "decimalPlaces": 2, - "minValue": -0.5, - "maxValue": 0.5 - }, - { - "name": "EKF2_PCOEF_YP", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Pressure position error coefficient for the positive Y axis. This is the ratio of static pressure error to dynamic pressure generated by a wind relative velocity along the positive Y (RH) body axis. If the baro height estimate rises during sideways flight to the right, then this will be a negative number", - "default": 0, - "decimalPlaces": 2, - "minValue": -0.5, - "maxValue": 0.5 - }, - { - "name": "EKF2_PCOEF_Z", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Static pressure position error coefficient for the Z axis. This is the ratio of static pressure error to dynamic pressure generated by a wind relative velocity along the Z body axis", - "default": 0, - "decimalPlaces": 2, - "minValue": -0.5, - "maxValue": 0.5 - }, - { - "name": "EKF2_REQ_EPH", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Required EPH to use GPS", - "units": "m", - "default": 3, - "decimalPlaces": 1, - "minValue": 2, - "maxValue": 100 - }, - { - "name": "EKF2_REQ_EPV", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Required EPV to use GPS", - "units": "m", - "default": 5, - "decimalPlaces": 1, - "minValue": 2, - "maxValue": 100 - }, - { - "name": "EKF2_REQ_GPS_H", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Required GPS health time on startup", - "longDesc": "Minimum continuous period without GPS failure required to mark a healthy GPS status. It can be reduced to speed up initialization, but it's recommended to keep this unchanged for a vehicle.", - "units": "s", - "default": 10, - "rebootRequired": true, - "decimalPlaces": 1, - "minValue": 0.1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_REQ_HDRIFT", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Maximum horizontal drift speed to use GPS", - "units": "m/s", - "default": 0.1, - "decimalPlaces": 2, - "minValue": 0.1, - "maxValue": 1 - }, - { - "name": "EKF2_REQ_NSATS", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Required satellite count to use GPS", - "default": 6, - "decimalPlaces": 3, - "minValue": 4, - "maxValue": 12 - }, - { - "name": "EKF2_REQ_PDOP", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Required PDOP to use GPS", - "default": 2.5, - "decimalPlaces": 1, - "minValue": 1.5, - "maxValue": 5 - }, - { - "name": "EKF2_REQ_SACC", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Required speed accuracy to use GPS", - "units": "m/s", - "default": 0.5, - "decimalPlaces": 2, - "minValue": 0.5, - "maxValue": 5 - }, - { - "name": "EKF2_REQ_VDRIFT", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Maximum vertical drift speed to use GPS", - "units": "m/s", - "default": 0.2, - "decimalPlaces": 2, - "minValue": 0.1, - "maxValue": 1.5 - }, - { - "name": "EKF2_RNG_AID", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Range sensor aid", - "longDesc": "If this parameter is enabled then the estimator will make use of the range finder measurements to estimate it's height even if range sensor is not the primary height source. It will only do so if conditions for range measurement fusion are met. This enables the range finder to be used during low speed and low altitude operation, eg takeoff and landing, where baro interference from rotor wash is excessive and can corrupt EKF state estimates. It is intended to be used where a vertical takeoff and landing is performed, and horizontal flight does not occur until above EKF2_RNG_A_HMAX. If vehicle motion causes repeated switching between the primary height sensor and range finder, an offset in the local position origin can accumulate. Also range finder measurements are less reliable and can experience unexpected errors. For these reasons, if accurate control of height relative to ground is required, it is recommended to use the MPC_ALT_MODE parameter instead, unless baro errors are severe enough to cause problems with landing and takeoff.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Range aid disabled" - }, - { - "value": 1, - "description": "Range aid enabled" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "EKF2_RNG_A_HMAX", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Maximum absolute altitude (height above ground level) allowed for range aid mode", - "longDesc": "If the vehicle absolute altitude exceeds this value then the estimator will not fuse range measurements to estimate it's height. This only applies when range aid mode is activated (EKF2_RNG_AID = enabled).", - "units": "m", - "default": 5, - "decimalPlaces": 3, - "minValue": 1, - "maxValue": 10 - }, - { - "name": "EKF2_RNG_A_IGATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size used for innovation consistency checks for range aid fusion", - "longDesc": "A lower value means HAGL needs to be more stable in order to use range finder for height estimation in range aid mode", - "units": "SD", - "default": 1, - "decimalPlaces": 3, - "minValue": 0.1, - "maxValue": 5 - }, - { - "name": "EKF2_RNG_A_VMAX", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Maximum horizontal velocity allowed for range aid mode", - "longDesc": "If the vehicle horizontal speed exceeds this value then the estimator will not fuse range measurements to estimate it's height. This only applies when range aid mode is activated (EKF2_RNG_AID = enabled).", - "units": "m/s", - "default": 1, - "decimalPlaces": 3, - "minValue": 0.1, - "maxValue": 2 - }, - { - "name": "EKF2_RNG_DELAY", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Range finder measurement delay relative to IMU measurements", - "units": "ms", - "default": 5, - "rebootRequired": true, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 300 - }, - { - "name": "EKF2_RNG_GATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size for range finder fusion", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "SD", - "default": 5, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_RNG_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Measurement noise for range finder fusion", - "units": "m", - "default": 0.1, - "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_RNG_PITCH", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Range sensor pitch offset", - "units": "rad", - "default": 0, - "decimalPlaces": 3, - "minValue": -0.75, - "maxValue": 0.75 - }, - { - "name": "EKF2_RNG_POS_X", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "X position of range finder origin in body frame (forward axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_RNG_POS_Y", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Y position of range finder origin in body frame (right axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_RNG_POS_Z", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Z position of range finder origin in body frame (down axis with origin relative to vehicle centre of gravity)", - "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_RNG_SFE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Range finder range dependant noise scaler", - "longDesc": "Specifies the increase in range finder noise with range.", - "units": "m/m", - "default": 0.05, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 0.2 - }, - { - "name": "EKF2_TAS_GATE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Gate size for TAS fusion", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "SD", - "default": 3, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_TAU_POS", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Time constant of the position output prediction and smoothing filter. Controls how tightly the output track the EKF states", - "units": "s", - "default": 0.25, - "decimalPlaces": 2, - "minValue": 0.1, - "maxValue": 1 - }, - { - "name": "EKF2_TAU_VEL", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Time constant of the velocity output prediction and smoothing filter", - "units": "s", - "default": 0.25, - "decimalPlaces": 2, - "minValue": -3.40282e+38, - "maxValue": 1 - }, - { - "name": "EKF2_TERR_GRAD", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Magnitude of terrain gradient", - "units": "m/m", - "default": 0.5, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_TERR_MASK", - "type": "Int32", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Integer bitmask controlling fusion sources of the terrain estimator", - "longDesc": "Set bits in the following positions to enable: 0 : Set to true to use range finder data if available 1 : Set to true to use optical flow data if available", - "default": 3, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 3 - }, - { - "name": "EKF2_TERR_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Terrain altitude process noise - accounts for instability in vehicle height estimate", - "units": "m/s", - "default": 5, - "decimalPlaces": 1, - "minValue": 0.5, - "maxValue": 3.40282e+38 - }, - { - "name": "EKF2_WIND_NOISE", - "type": "Float", - "group": "EKF2", - "category": "Standard", - "shortDesc": "Process noise for wind velocity prediction", - "units": "m/s/s", - "default": 0.1, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "EV_TSK_RC_LOSS", - "type": "Int32", - "group": "Events", - "category": "Standard", - "shortDesc": "RC Loss Alarm", - "longDesc": "Enable/disable event task for RC Loss. When enabled, an alarm tune will be played via buzzer or ESCs, if supported. The alarm will sound after a disarm, if the vehicle was previously armed and only if the vehicle had RC signal at some point. Particularly useful for locating crashed drones without a GPS sensor.", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "EV_TSK_STAT_DIS", - "type": "Int32", - "group": "Events", - "category": "Standard", - "shortDesc": "Status Display", - "longDesc": "Enable/disable event task for displaying the vehicle status using arm-mounted LEDs. When enabled and if the vehicle supports it, LEDs will flash indicating various vehicle status changes. Currently PX4 has not implemented any specific status events. -", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "EXFW_HDNG_P", - "type": "Float", - "group": "Miscellaneous", - "category": "Standard", - "shortDesc": "EXFW_HDNG_P", - "default": 0.1, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EXFW_PITCH_P", - "type": "Float", - "group": "Miscellaneous", - "category": "Standard", - "shortDesc": "EXFW_PITCH_P", - "default": 0.2, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "EXFW_ROLL_P", - "type": "Float", - "group": "Miscellaneous", - "category": "Standard", - "shortDesc": "EXFW_ROLL_P", - "default": 0.2, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "FD_ESCS_EN", - "type": "Int32", - "group": "Failure Detector", - "category": "Standard", - "shortDesc": "Enable checks on ESCs that report their arming state. If enabled, failure detector will verify that all the ESCs have successfully armed when the vehicle has transitioned to the armed state. Timeout for receiving an acknowledgement from the ESCs is 0.3s, if no feedback is received the failure detector will auto disarm the vehicle", - "default": 1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "FD_EXT_ATS_EN", - "type": "Int32", - "group": "Failure Detector", - "category": "Standard", - "shortDesc": "Enable PWM input on AUX5 or MAIN5 (depending on board) for engaging failsafe from an external automatic trigger system (ATS)", - "longDesc": "External ATS is required by ASTM F3322-18.", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "FD_EXT_ATS_TRIG", - "type": "Int32", - "group": "Failure Detector", - "category": "Standard", - "shortDesc": "The PWM threshold from external automatic trigger system for engaging failsafe", - "longDesc": "External ATS is required by ASTM F3322-18.", - "units": "microseconds", - "default": 1900, - "decimalPlaces": 2, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "FD_FAIL_P", - "type": "Int32", - "group": "Failure Detector", - "category": "Standard", - "shortDesc": "FailureDetector Max Pitch", - "longDesc": "Maximum pitch angle before FailureDetector triggers the attitude_failure flag. The flag triggers flight termination (if @CBRK_FLIGHTTERM = 0), which sets outputs to their failsafe values. On takeoff the flag triggers lockdown (irrespective of @CBRK_FLIGHTTERM), which disarms motors but does not set outputs to failsafe values. Setting this parameter to 0 disables the check", - "units": "degrees", - "default": 60, - "decimalPlaces": 3, - "minValue": 60, - "maxValue": 180 - }, - { - "name": "FD_FAIL_P_TTRI", - "type": "Float", - "group": "Failure Detector", - "category": "Standard", - "shortDesc": "Pitch failure trigger time", - "longDesc": "Seconds (decimal) that pitch has to exceed FD_FAIL_P before being considered as a failure.", - "units": "s", - "default": 0.3, - "decimalPlaces": 2, - "minValue": 0.02, - "maxValue": 5 - }, - { - "name": "FD_FAIL_R", - "type": "Int32", - "group": "Failure Detector", - "category": "Standard", - "shortDesc": "FailureDetector Max Roll", - "longDesc": "Maximum roll angle before FailureDetector triggers the attitude_failure flag. The flag triggers flight termination (if @CBRK_FLIGHTTERM = 0), which sets outputs to their failsafe values. On takeoff the flag triggers lockdown (irrespective of @CBRK_FLIGHTTERM), which disarms motors but does not set outputs to failsafe values. Setting this parameter to 0 disables the check", - "units": "degrees", - "default": 60, - "decimalPlaces": 3, - "minValue": 60, - "maxValue": 180 - }, - { - "name": "FD_FAIL_R_TTRI", - "type": "Float", - "group": "Failure Detector", - "category": "Standard", - "shortDesc": "Roll failure trigger time", - "longDesc": "Seconds (decimal) that roll has to exceed FD_FAIL_R before being considered as a failure.", - "units": "s", - "default": 0.3, - "decimalPlaces": 2, - "minValue": 0.02, - "maxValue": 5 - }, - { - "name": "FW_ACRO_X_MAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Acro body x max rate", - "longDesc": "This is the rate the controller is trying to achieve if the user applies full roll stick input in acro mode.", - "units": "degrees", - "default": 90, - "decimalPlaces": 3, - "minValue": 45, - "maxValue": 720 - }, - { - "name": "FW_ACRO_Y_MAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Acro body y max rate", - "longDesc": "This is the body y rate the controller is trying to achieve if the user applies full pitch stick input in acro mode.", - "units": "degrees", - "default": 90, - "decimalPlaces": 3, - "minValue": 45, - "maxValue": 720 - }, - { - "name": "FW_ACRO_Z_MAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Acro body z max rate", - "longDesc": "This is the body z rate the controller is trying to achieve if the user applies full yaw stick input in acro mode.", - "units": "degrees", - "default": 45, - "decimalPlaces": 3, - "minValue": 10, - "maxValue": 180 - }, - { - "name": "FW_AIRSPD_MAX", - "type": "Float", - "group": "FW TECS", - "category": "Standard", - "shortDesc": "Maximum Airspeed", - "longDesc": "If the airspeed is above this value, the TECS controller will try to decrease airspeed more aggressively.", - "units": "m/s", - "default": 20, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 40 - }, - { - "name": "FW_AIRSPD_MIN", - "type": "Float", - "group": "FW TECS", - "category": "Standard", - "shortDesc": "Minimum Airspeed", - "longDesc": "If the airspeed falls below this value, the TECS controller will try to increase airspeed more aggressively.", - "units": "m/s", - "default": 10, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 40 - }, - { - "name": "FW_AIRSPD_TRIM", - "type": "Float", - "group": "FW TECS", - "category": "Standard", - "shortDesc": "Cruise Airspeed", - "longDesc": "The fixed wing controller tries to fly at this airspeed.", - "units": "m/s", - "default": 15, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 40 - }, - { - "name": "FW_ARSP_MODE", - "type": "Int32", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Airspeed mode", - "longDesc": "For small wings or VTOL without airspeed sensor this parameter can be used to enable flying without an airspeed reading", - "default": 0, - "values": [ - { - "value": 0, - "description": "Normal (use airspeed if available)" - }, - { - "value": 1, - "description": "Airspeed disabled" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "FW_ARSP_SCALE_EN", - "type": "Int32", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Enable airspeed scaling", - "longDesc": "This enables a logic that automatically adjusts the output of the rate controller to take into account the real torque produced by an aerodynamic control surface given the current deviation from the trim airspeed (FW_AIRSPD_TRIM). Enable when using aerodynamic control surfaces (e.g.: plane) Disable when using rotor wings (e.g.: autogyro)", - "default": 1, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "FW_BAT_SCALE_EN", - "type": "Int32", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Whether to scale throttle by battery power level", - "longDesc": "This compensates for voltage drop of the battery over time by attempting to normalize performance across the operating range of the battery. The fixed wing should constantly behave as if it was fully charged with reduced max thrust at lower battery percentages. i.e. if cruise speed is at 0.5 throttle at 100% battery, it will still be 0.5 at 60% battery.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "FW_CLMBOUT_DIFF", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Climbout Altitude difference", - "longDesc": "If the altitude error exceeds this parameter, the system will climb out with maximum throttle and minimum airspeed until it is closer than this distance to the desired altitude. Mostly used for takeoff waypoints / modes. Set to 0 to disable climbout mode (not recommended).", - "units": "m", - "default": 10, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 150 - }, - { - "name": "FW_DTRIM_P_FLPS", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Pitch trim increment for flaps configuration", - "longDesc": "This increment is added to the pitch trim whenever flaps are fully deployed.", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": -0.25, - "maxValue": 0.25 - }, - { - "name": "FW_DTRIM_P_VMAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Pitch trim increment at maximum airspeed", - "longDesc": "This increment is added to TRIM_PITCH when airspeed is FW_AIRSPD_MAX.", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": -0.25, - "maxValue": 0.25 - }, - { - "name": "FW_DTRIM_P_VMIN", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Pitch trim increment at minimum airspeed", - "longDesc": "This increment is added to TRIM_PITCH when airspeed is FW_AIRSPD_MIN.", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": -0.25, - "maxValue": 0.25 - }, - { - "name": "FW_DTRIM_R_FLPS", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Roll trim increment for flaps configuration", - "longDesc": "This increment is added to TRIM_ROLL whenever flaps are fully deployed.", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": -0.25, - "maxValue": 0.25 - }, - { - "name": "FW_DTRIM_R_VMAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Roll trim increment at maximum airspeed", - "longDesc": "This increment is added to TRIM_ROLL when airspeed is FW_AIRSPD_MAX.", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": -0.25, - "maxValue": 0.25 - }, - { - "name": "FW_DTRIM_R_VMIN", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Roll trim increment at minimum airspeed", - "longDesc": "This increment is added to TRIM_ROLL when airspeed is FW_AIRSPD_MIN.", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": -0.25, - "maxValue": 0.25 - }, - { - "name": "FW_DTRIM_Y_VMAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Yaw trim increment at maximum airspeed", - "longDesc": "This increment is added to TRIM_YAW when airspeed is FW_AIRSPD_MAX.", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": -0.25, - "maxValue": 0.25 - }, - { - "name": "FW_DTRIM_Y_VMIN", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Yaw trim increment at minimum airspeed", - "longDesc": "This increment is added to TRIM_YAW when airspeed is FW_AIRSPD_MIN.", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": -0.25, - "maxValue": 0.25 - }, - { - "name": "FW_FLAPERON_SCL", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Scale factor for flaperons", - "units": "norm", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_FLAPS_LND_SCL", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Flaps setting during landing", - "longDesc": "Sets a fraction of full flaps (FW_FLAPS_SCL) during landing", - "units": "norm", - "default": 1, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_FLAPS_SCL", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Scale factor for flaps", - "units": "norm", - "default": 1, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_FLAPS_TO_SCL", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Flaps setting during take-off", - "longDesc": "Sets a fraction of full flaps (FW_FLAPS_SCL) during take-off", - "units": "norm", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_GND_SPD_MIN", - "type": "Float", - "group": "FW TECS", - "category": "Standard", - "shortDesc": "Minimum groundspeed", - "longDesc": "The controller will increase the commanded airspeed to maintain this minimum groundspeed to the next waypoint.", - "units": "m/s", - "default": 5, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 40 - }, - { - "name": "FW_L1_DAMPING", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "L1 damping", - "longDesc": "Damping factor for L1 control.", - "default": 0.75, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0.6, - "maxValue": 0.9 - }, - { - "name": "FW_L1_PERIOD", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "L1 period", - "longDesc": "This is the L1 distance and defines the tracking point ahead of the aircraft its following. A value of 18-25 meters works for most aircraft. Shorten slowly during tuning until response is sharp without oscillation.", - "units": "m", - "default": 20, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 12, - "maxValue": 50 - }, - { - "name": "FW_L1_R_SLEW_MAX", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "L1 controller roll slew rate limit", - "longDesc": "The maxium change in roll angle setpoint per second.", - "units": "deg/s", - "default": 90, - "increment": 1, - "decimalPlaces": 0, - "minValue": 0, - "maxValue": 3.40282e+38 - }, - { - "name": "FW_LND_AIRSPD_SC", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Min. airspeed scaling factor for landing", - "longDesc": "Multiplying this factor with the minimum airspeed of the plane gives the target airspeed the landing approach. FW_AIRSPD_MIN * FW_LND_AIRSPD_SC", - "units": "norm", - "default": 1.3, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 1, - "maxValue": 1.5 - }, - { - "name": "FW_LND_ANG", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Landing slope angle", - "units": "deg", - "default": 5, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 15 - }, - { - "name": "FW_LND_EARLYCFG", - "type": "Int32", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Early landing configuration deployment", - "longDesc": "When disabled, the landing configuration (flaps, landing airspeed, etc.) is only activated on the final approach to landing. When enabled, it is already activated when entering the final loiter-down (loiter-to-alt) waypoint before the landing approach. This shifts the (often large) altitude and airspeed errors caused by the configuration change away from the ground such that these are not so critical. It also gives the controller enough time to adapt to the new configuration such that the landing approach starts with a cleaner initial state.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "FW_LND_FLALT", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Landing flare altitude (relative to landing altitude)", - "units": "m", - "default": 3, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 25 - }, - { - "name": "FW_LND_FL_PMAX", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Flare, maximum pitch", - "longDesc": "Maximum pitch during flare, a positive sign means nose up Applied once FW_LND_FLALT is reached", - "units": "deg", - "default": 15, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 45 - }, - { - "name": "FW_LND_FL_PMIN", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Flare, minimum pitch", - "longDesc": "Minimum pitch during flare, a positive sign means nose up Applied once FW_LND_FLALT is reached", - "units": "deg", - "default": 2.5, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 15 - }, - { - "name": "FW_LND_HHDIST", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Landing heading hold horizontal distance. Set to 0 to disable heading hold", - "units": "m", - "default": 15, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 30 - }, - { - "name": "FW_LND_HVIRT", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "FW_LND_HVIRT", - "units": "m", - "default": 10, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 15 - }, - { - "name": "FW_LND_THRTC_SC", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Throttle time constant factor for landing", - "longDesc": "Set this parameter to less than 1.0 to make the TECS throttle loop react faster during landing than during normal flight (i.e. giving efficiency and low motor wear at high altitudes but control accuracy during landing). During landing, the TECS throttle time constant (FW_T_THRO_CONST) is multiplied by this value.", - "default": 1, - "increment": 0.1, - "decimalPlaces": 1, - "minValue": 0.2, - "maxValue": 1 - }, - { - "name": "FW_LND_TLALT", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Landing throttle limit altitude (relative landing altitude)", - "longDesc": "Default of -1.0 lets the system default to applying throttle limiting at 2/3 of the flare altitude.", - "units": "m", - "default": -1, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": -1, - "maxValue": 30 - }, - { - "name": "FW_LND_USETER", - "type": "Int32", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Use terrain estimate during landing", - "longDesc": "This is turned off by default and a waypoint or return altitude is normally used (or sea level for an arbitrary land position).", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "FW_MAN_P_MAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Max manual pitch", - "longDesc": "Max pitch for manual control in attitude stabilized mode", - "units": "deg", - "default": 45, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 90 - }, - { - "name": "FW_MAN_P_SC", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Manual pitch scale", - "longDesc": "Scale factor applied to the desired pitch actuator command in full manual mode. This parameter allows to adjust the throws of the control surfaces.", - "units": "norm", - "default": 1, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 3.40282e+38 - }, - { - "name": "FW_MAN_R_MAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Max manual roll", - "longDesc": "Max roll for manual control in attitude stabilized mode", - "units": "deg", - "default": 45, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 90 - }, - { - "name": "FW_MAN_R_SC", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Manual roll scale", - "longDesc": "Scale factor applied to the desired roll actuator command in full manual mode. This parameter allows to adjust the throws of the control surfaces.", - "units": "norm", - "default": 1, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_MAN_Y_SC", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Manual yaw scale", - "longDesc": "Scale factor applied to the desired yaw actuator command in full manual mode. This parameter allows to adjust the throws of the control surfaces.", - "units": "norm", - "default": 1, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 3.40282e+38 - }, - { - "name": "FW_PR_FF", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Pitch rate feed forward", - "longDesc": "Direct feed forward from rate setpoint to control surface output", - "units": "%/rad/s", - "default": 0.5, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 10 - }, - { - "name": "FW_PR_I", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Pitch rate integrator gain", - "longDesc": "This gain defines how much control response will result out of a steady state error. It trims any constant error.", - "units": "%/rad", - "default": 0.1, - "increment": 0.005, - "decimalPlaces": 3, - "minValue": 0.005, - "maxValue": 0.5 - }, - { - "name": "FW_PR_IMAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Pitch rate integrator limit", - "longDesc": "The portion of the integrator part in the control surface deflection is limited to this value", - "default": 0.4, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_PR_P", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Pitch rate proportional gain", - "longDesc": "This defines how much the elevator input will be commanded depending on the current body angular rate error.", - "units": "%/rad/s", - "default": 0.08, - "increment": 0.005, - "decimalPlaces": 3, - "minValue": 0.005, - "maxValue": 1 - }, - { - "name": "FW_PSP_OFF", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Pitch setpoint offset", - "longDesc": "An airframe specific offset of the pitch setpoint in degrees, the value is added to the pitch setpoint and should correspond to the typical cruise speed of the airframe.", - "units": "deg", - "default": 0, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": -90, - "maxValue": 90 - }, - { - "name": "FW_P_LIM_MAX", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Positive pitch limit", - "longDesc": "The maximum positive pitch the controller will output.", - "units": "deg", - "default": 45, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 60 - }, - { - "name": "FW_P_LIM_MIN", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Negative pitch limit", - "longDesc": "The minimum negative pitch the controller will output.", - "units": "deg", - "default": -45, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": -60, - "maxValue": 0 - }, - { - "name": "FW_P_RMAX_NEG", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Maximum negative / down pitch rate", - "longDesc": "This limits the maximum pitch down up angular rate the controller will output (in degrees per second).", - "units": "deg/s", - "default": 60, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 90 - }, - { - "name": "FW_P_RMAX_POS", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Maximum positive / up pitch rate", - "longDesc": "This limits the maximum pitch up angular rate the controller will output (in degrees per second).", - "units": "deg/s", - "default": 60, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 90 - }, - { - "name": "FW_P_TC", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Attitude pitch time constant", - "longDesc": "This defines the latency between a pitch step input and the achieved setpoint (inverse to a P gain). Half a second is a good start value and fits for most average systems. Smaller systems may require smaller values, but as this will wear out servos faster, the value should only be decreased as needed.", - "units": "s", - "default": 0.4, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0.2, - "maxValue": 1 - }, - { - "name": "FW_RATT_TH", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Threshold for Rattitude mode", - "longDesc": "Manual input needed in order to override attitude control rate setpoints and instead pass manual stick inputs as rate setpoints", - "default": 0.8, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_RLL_TO_YAW_FF", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Roll control to yaw control feedforward gain", - "longDesc": "This gain can be used to counteract the \"adverse yaw\" effect for fixed wings. When the plane enters a roll it will tend to yaw the nose out of the turn. This gain enables the use of a yaw actuator (rudder, airbrakes, ...) to counteract this effect.", - "default": 0, - "increment": 0.01, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 3.40282e+38 - }, - { - "name": "FW_RR_FF", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Roll rate feed forward", - "longDesc": "Direct feed forward from rate setpoint to control surface output. Use this to obtain a tigher response of the controller without introducing noise amplification.", - "units": "%/rad/s", - "default": 0.5, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 10 - }, - { - "name": "FW_RR_I", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Roll rate integrator Gain", - "longDesc": "This gain defines how much control response will result out of a steady state error. It trims any constant error.", - "units": "%/rad", - "default": 0.1, - "increment": 0.005, - "decimalPlaces": 3, - "minValue": 0.005, - "maxValue": 0.2 - }, - { - "name": "FW_RR_IMAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Roll integrator anti-windup", - "longDesc": "The portion of the integrator part in the control surface deflection is limited to this value.", - "default": 0.2, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_RR_P", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Roll rate proportional Gain", - "longDesc": "This defines how much the aileron input will be commanded depending on the current body angular rate error.", - "units": "%/rad/s", - "default": 0.05, - "increment": 0.005, - "decimalPlaces": 3, - "minValue": 0.005, - "maxValue": 1 - }, - { - "name": "FW_RSP_OFF", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Roll setpoint offset", - "longDesc": "An airframe specific offset of the roll setpoint in degrees, the value is added to the roll setpoint and should correspond to the typical cruise speed of the airframe.", - "units": "deg", - "default": 0, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": -90, - "maxValue": 90 - }, - { - "name": "FW_R_LIM", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Controller roll limit", - "longDesc": "The maximum roll the controller will output.", - "units": "deg", - "default": 50, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 35, - "maxValue": 65 - }, - { - "name": "FW_R_RMAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Maximum roll rate", - "longDesc": "This limits the maximum roll rate the controller will output (in degrees per second).", - "units": "deg/s", - "default": 70, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 90 - }, - { - "name": "FW_R_TC", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Attitude Roll Time Constant", - "longDesc": "This defines the latency between a roll step input and the achieved setpoint (inverse to a P gain). Half a second is a good start value and fits for most average systems. Smaller systems may require smaller values, but as this will wear out servos faster, the value should only be decreased as needed.", - "units": "s", - "default": 0.4, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0.4, - "maxValue": 1 - }, - { - "name": "FW_THR_ALT_SCL", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Scale throttle by pressure change", - "longDesc": "Automatically adjust throttle to account for decreased air density at higher altitudes. Start with a scale factor of 1.0 and adjust for different propulsion systems. When flying without airspeed sensor this will help to keep a constant performance over large altitude ranges. The default value of 0 will disable scaling.", - "default": 0, - "increment": 0.1, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 10 - }, - { - "name": "FW_THR_CRUISE", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Cruise throttle", - "longDesc": "This is the throttle setting required to achieve the desired cruise speed. Most airframes have a value of 0.5-0.7.", - "units": "norm", - "default": 0.6, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_THR_IDLE", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Idle throttle", - "longDesc": "This is the minimum throttle while on the ground For aircraft with internal combustion engine this parameter should be set above desired idle rpm.", - "units": "norm", - "default": 0.15, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 0.4 - }, - { - "name": "FW_THR_LND_MAX", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Throttle limit during landing below throttle limit altitude", - "longDesc": "During the flare of the autonomous landing process, this value will be set as throttle limit when the aircraft altitude is below FW_LND_TLALT.", - "units": "norm", - "default": 1, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_THR_MAX", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Throttle limit max", - "longDesc": "This is the maximum throttle % that can be used by the controller. For overpowered aircraft, this should be reduced to a value that provides sufficient thrust to climb at the maximum pitch angle PTCH_MAX.", - "units": "norm", - "default": 1, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_THR_MIN", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Throttle limit min", - "longDesc": "This is the minimum throttle % that can be used by the controller. For electric aircraft this will normally be set to zero, but can be set to a small non-zero value if a folding prop is fitted to prevent the prop from folding and unfolding repeatedly in-flight or to provide some aerodynamic drag from a turning prop to improve the descent rate. For aircraft with internal combustion engine this parameter should be set for desired idle rpm.", - "units": "norm", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_THR_SLEW_MAX", - "type": "Float", - "group": "FW L1 Control", - "category": "Standard", - "shortDesc": "Throttle max slew rate", - "longDesc": "Maximum slew rate for the commanded throttle", - "default": 0, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_T_CLMB_MAX", - "type": "Float", - "group": "FW TECS", - "category": "Standard", - "shortDesc": "Maximum climb rate", - "longDesc": "This is the best climb rate that the aircraft can achieve with the throttle set to THR_MAX and the airspeed set to the default value. For electric aircraft make sure this number can be achieved towards the end of flight when the battery voltage has reduced. The setting of this parameter can be checked by commanding a positive altitude change of 100m in loiter, RTL or guided mode. If the throttle required to climb is close to THR_MAX and the aircraft is maintaining airspeed, then this parameter is set correctly. If the airspeed starts to reduce, then the parameter is set to high, and if the throttle demand required to climb and maintain speed is noticeably less than FW_THR_MAX, then either FW_T_CLMB_MAX should be increased or FW_THR_MAX reduced.", - "units": "m/s", - "default": 5, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 15 - }, - { - "name": "FW_T_HRATE_FF", - "type": "Float", - "group": "FW TECS", - "category": "Standard", - "shortDesc": "Height rate feed forward", - "default": 0.8, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_T_HRATE_P", - "type": "Float", - "group": "FW TECS", - "category": "Standard", - "shortDesc": "Height rate proportional factor", - "default": 0.05, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "FW_T_INTEG_GAIN", - "type": "Float", - "group": "FW TECS", - "category": "Standard", - "shortDesc": "Integrator gain", - "longDesc": "This is the integrator gain on the control loop. Increasing this gain increases the speed at which speed and height offsets are trimmed out, but reduces damping and increases overshoot. Set this value to zero to completely disable all integrator action.", - "default": 0.1, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 2 - }, - { - "name": "FW_T_PTCH_DAMP", - "type": "Float", - "group": "FW TECS", - "category": "Standard", - "shortDesc": "Pitch damping factor", - "longDesc": "This is the damping gain for the pitch demand loop. Increase to add damping to correct for oscillations in height. The default value of 0.0 will work well provided the pitch to servo controller has been tuned properly.", - "default": 0, - "increment": 0.1, + "shortDesc": "Upper limit on airspeed along individual axes used to correct baro for position error effects", + "units": "m/s", + "default": 20, "decimalPlaces": 1, - "minValue": 0, - "maxValue": 2 + "minValue": 5, + "maxValue": 50 }, { - "name": "FW_T_RLL2THR", + "name": "EKF2_ASP_DELAY", "type": "Float", - "group": "FW TECS", + "group": "EKF2", "category": "Standard", - "shortDesc": "Roll -> Throttle feedforward", - "longDesc": "Increasing this gain turn increases the amount of throttle that will be used to compensate for the additional drag created by turning. Ideally this should be set to approximately 10 x the extra sink rate in m/s created by a 45 degree bank turn. Increase this gain if the aircraft initially loses energy in turns and reduce if the aircraft initially gains energy in turns. Efficient high aspect-ratio aircraft (eg powered sailplanes) can use a lower value, whereas inefficient low aspect-ratio models (eg delta wings) can use a higher value.", - "default": 15, - "increment": 0.5, + "shortDesc": "Airspeed measurement delay relative to IMU measurements", + "units": "ms", + "default": 100, + "rebootRequired": true, "decimalPlaces": 1, "minValue": 0, - "maxValue": 20 + "maxValue": 300 }, { - "name": "FW_T_SINK_MAX", + "name": "EKF2_AVEL_DELAY", "type": "Float", - "group": "FW TECS", + "group": "EKF2", "category": "Standard", - "shortDesc": "Maximum descent rate", - "longDesc": "This sets the maximum descent rate that the controller will use. If this value is too large, the aircraft can over-speed on descent. This should be set to a value that can be achieved without exceeding the lower pitch angle limit and without over-speeding the aircraft.", - "units": "m/s", + "shortDesc": "Auxillary Velocity Estimate (e.g from a landing target) delay relative to IMU measurements", + "units": "ms", "default": 5, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 15 - }, - { - "name": "FW_T_SINK_MIN", - "type": "Float", - "group": "FW TECS", - "category": "Standard", - "shortDesc": "Minimum descent rate", - "longDesc": "This is the sink rate of the aircraft with the throttle set to THR_MIN and flown at the same airspeed as used to measure FW_T_CLMB_MAX.", - "units": "m/s", - "default": 2, - "increment": 0.5, + "rebootRequired": true, "decimalPlaces": 1, - "minValue": 1, - "maxValue": 5 + "minValue": 0, + "maxValue": 300 }, { - "name": "FW_T_SPDWEIGHT", + "name": "EKF2_BARO_DELAY", "type": "Float", - "group": "FW TECS", + "group": "EKF2", "category": "Standard", - "shortDesc": "Speed <--> Altitude priority", - "longDesc": "This parameter adjusts the amount of weighting that the pitch control applies to speed vs height errors. Setting it to 0.0 will cause the pitch control to control height and ignore speed errors. This will normally improve height accuracy but give larger airspeed errors. Setting it to 2.0 will cause the pitch control loop to control speed and ignore height errors. This will normally reduce airspeed errors, but give larger height errors. The default value of 1.0 allows the pitch control to simultaneously control height and speed. Note to Glider Pilots - set this parameter to 2.0 (The glider will adjust its pitch angle to maintain airspeed, ignoring changes in height).", - "default": 1, - "increment": 1, + "shortDesc": "Barometer measurement delay relative to IMU measurements", + "units": "ms", + "default": 0, + "rebootRequired": true, "decimalPlaces": 1, "minValue": 0, - "maxValue": 2 + "maxValue": 300 }, { - "name": "FW_T_SPD_OMEGA", + "name": "EKF2_BARO_GATE", "type": "Float", - "group": "FW TECS", + "group": "EKF2", "category": "Standard", - "shortDesc": "Complementary filter \"omega\" parameter for speed", - "longDesc": "This is the cross-over frequency (in radians/second) of the complementary filter used to fuse longitudinal acceleration and airspeed to obtain an improved airspeed estimate. Increasing this frequency weights the solution more towards use of the airspeed sensor, whilst reducing it weights the solution more towards use of the accelerometer data.", - "units": "rad/s", - "default": 2, - "increment": 0.5, + "shortDesc": "Gate size for barometric and GPS height fusion", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "SD", + "default": 5, "decimalPlaces": 1, "minValue": 1, - "maxValue": 10 + "maxValue": 3.40282e+38 }, { - "name": "FW_T_SRATE_P", + "name": "EKF2_BARO_NOISE", "type": "Float", - "group": "FW TECS", + "group": "EKF2", "category": "Standard", - "shortDesc": "Speed rate P factor", - "default": 0.02, - "increment": 0.01, + "shortDesc": "Measurement noise for barometric altitude", + "units": "m", + "default": 3.5, "decimalPlaces": 2, - "minValue": 0, - "maxValue": 2 + "minValue": 0.01, + "maxValue": 15 }, { - "name": "FW_T_THRO_CONST", + "name": "EKF2_BCOEF_X", "type": "Float", - "group": "FW TECS", + "group": "EKF2", "category": "Standard", - "shortDesc": "TECS Throttle time constant", - "longDesc": "This is the time constant of the TECS throttle control algorithm (in seconds). Smaller values make it faster to respond, larger values make it slower to respond.", - "units": "s", - "default": 8, - "increment": 0.5, + "shortDesc": "X-axis ballistic coefficient used by the multi-rotor specific drag force model. This should be adjusted to minimise variance of the X-axis drag specific force innovation sequence", + "units": "kg/m**2", + "default": 25, "decimalPlaces": 1, "minValue": 1, - "maxValue": 10 - }, - { - "name": "FW_T_THR_DAMP", - "type": "Float", - "group": "FW TECS", - "category": "Standard", - "shortDesc": "Throttle damping factor", - "longDesc": "This is the damping gain for the throttle demand loop. Increase to add damping to correct for oscillations in speed and height.", - "default": 0.5, - "increment": 0.1, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 2 + "maxValue": 100 }, { - "name": "FW_T_TIME_CONST", + "name": "EKF2_BCOEF_Y", "type": "Float", - "group": "FW TECS", + "group": "EKF2", "category": "Standard", - "shortDesc": "TECS time constant", - "longDesc": "This is the time constant of the TECS control algorithm (in seconds). Smaller values make it faster to respond, larger values make it slower to respond.", - "units": "s", - "default": 5, - "increment": 0.5, + "shortDesc": "Y-axis ballistic coefficient used by the multi-rotor specific drag force model. This should be adjusted to minimise variance of the Y-axis drag specific force innovation sequence", + "units": "kg/m**2", + "default": 25, "decimalPlaces": 1, "minValue": 1, - "maxValue": 10 + "maxValue": 100 }, { - "name": "FW_T_VERT_ACC", + "name": "EKF2_BETA_GATE", "type": "Float", - "group": "FW TECS", + "group": "EKF2", "category": "Standard", - "shortDesc": "Maximum vertical acceleration", - "longDesc": "This is the maximum vertical acceleration (in m/s/s) either up or down that the controller will use to correct speed or height errors. The default value of 7 m/s/s (equivalent to +- 0.7 g) allows for reasonably aggressive pitch changes if required to recover from under-speed conditions.", - "units": "m/s/s", - "default": 7, - "increment": 0.5, + "shortDesc": "Gate size for synthetic sideslip fusion", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "SD", + "default": 5, "decimalPlaces": 1, "minValue": 1, - "maxValue": 10 + "maxValue": 3.40282e+38 }, { - "name": "FW_WR_FF", + "name": "EKF2_BETA_NOISE", "type": "Float", - "group": "FW Attitude Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Wheel steering rate feed forward", - "longDesc": "Direct feed forward from rate setpoint to control surface output", - "units": "%/rad/s", - "default": 0.2, - "increment": 0.05, + "shortDesc": "Noise for synthetic sideslip fusion", + "units": "m/s", + "default": 0.3, "decimalPlaces": 2, - "minValue": 0, - "maxValue": 10 + "minValue": 0.1, + "maxValue": 1 }, { - "name": "FW_WR_I", - "type": "Float", - "group": "FW Attitude Control", + "name": "EKF2_DECL_TYPE", + "type": "Int32", + "group": "EKF2", "category": "Standard", - "shortDesc": "Wheel steering rate integrator gain", - "longDesc": "This gain defines how much control response will result out of a steady state error. It trims any constant error.", - "units": "%/rad", - "default": 0.1, - "increment": 0.005, + "shortDesc": "Integer bitmask controlling handling of magnetic declination", + "longDesc": "Set bits in the following positions to enable functions. 0 : Set to true to use the declination from the geo_lookup library when the GPS position becomes available, set to false to always use the EKF2_MAG_DECL value. 1 : Set to true to save the EKF2_MAG_DECL parameter to the value returned by the EKF when the vehicle disarms. 2 : Set to true to always use the declination as an observation when 3-axis magnetometer fusion is being used.", + "default": 7, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0.005, - "maxValue": 0.5 - }, - { - "name": "FW_WR_IMAX", - "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Wheel steering rate integrator limit", - "longDesc": "The portion of the integrator part in the control surface deflection is limited to this value", - "default": 1, - "increment": 0.05, - "decimalPlaces": 2, "minValue": 0, - "maxValue": 1 + "maxValue": 7 }, { - "name": "FW_WR_P", + "name": "EKF2_DRAG_NOISE", "type": "Float", - "group": "FW Attitude Control", - "category": "Standard", - "shortDesc": "Wheel steering rate proportional gain", - "longDesc": "This defines how much the wheel steering input will be commanded depending on the current body angular rate error.", - "units": "%/rad/s", - "default": 0.5, - "increment": 0.005, - "decimalPlaces": 3, - "minValue": 0.005, - "maxValue": 1 - }, - { - "name": "FW_W_EN", - "type": "Int32", - "group": "FW Attitude Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Enable wheel steering controller", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Specific drag force observation noise variance used by the multi-rotor specific drag force model. Increasing it makes the multi-rotor wind estimates adjust more slowly", + "units": "(m/sec**2)**2", + "default": 2.5, + "decimalPlaces": 2, + "minValue": 0.5, + "maxValue": 10 }, { - "name": "FW_W_RMAX", + "name": "EKF2_EAS_NOISE", "type": "Float", - "group": "FW Attitude Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Maximum wheel steering rate", - "longDesc": "This limits the maximum wheel steering rate the controller will output (in degrees per second).", - "units": "deg/s", - "default": 30, - "increment": 0.5, + "shortDesc": "Measurement noise for airspeed fusion", + "units": "m/s", + "default": 1.4, "decimalPlaces": 1, - "minValue": 0, - "maxValue": 90 + "minValue": 0.5, + "maxValue": 5 }, { - "name": "FW_YR_FF", + "name": "EKF2_EVA_NOISE", "type": "Float", - "group": "FW Attitude Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Yaw rate feed forward", - "longDesc": "Direct feed forward from rate setpoint to control surface output", - "units": "%/rad/s", - "default": 0.3, - "increment": 0.05, + "shortDesc": "Measurement noise for vision angle observations used to lower bound or replace the uncertainty included in the message", + "units": "rad", + "default": 0.05, "decimalPlaces": 2, - "minValue": 0, - "maxValue": 10 + "minValue": 0.05, + "maxValue": 3.40282e+38 }, { - "name": "FW_YR_I", + "name": "EKF2_EVP_GATE", "type": "Float", - "group": "FW Attitude Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Yaw rate integrator gain", - "longDesc": "This gain defines how much control response will result out of a steady state error. It trims any constant error.", - "units": "%/rad", - "default": 0.1, - "increment": 0.5, + "shortDesc": "Gate size for vision position fusion Sets the number of standard deviations used by the innovation consistency test", + "units": "SD", + "default": 5, "decimalPlaces": 1, - "minValue": 0, - "maxValue": 50 + "minValue": 1, + "maxValue": 3.40282e+38 }, { - "name": "FW_YR_IMAX", + "name": "EKF2_EVP_NOISE", "type": "Float", - "group": "FW Attitude Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Yaw rate integrator limit", - "longDesc": "The portion of the integrator part in the control surface deflection is limited to this value", - "default": 0.2, - "increment": 0.05, + "shortDesc": "Measurement noise for vision position observations used to lower bound or replace the uncertainty included in the message", + "units": "m", + "default": 0.1, "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 + "minValue": 0.01, + "maxValue": 3.40282e+38 }, { - "name": "FW_YR_P", + "name": "EKF2_EVV_GATE", "type": "Float", - "group": "FW Attitude Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Yaw rate proportional gain", - "longDesc": "This defines how much the rudder input will be commanded depending on the current body angular rate error.", - "units": "%/rad/s", - "default": 0.05, - "increment": 0.005, - "decimalPlaces": 3, - "minValue": 0.005, - "maxValue": 1 + "shortDesc": "Gate size for vision velocity estimate fusion", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "SD", + "default": 3, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 3.40282e+38 }, { - "name": "FW_Y_RMAX", + "name": "EKF2_EVV_NOISE", "type": "Float", - "group": "FW Attitude Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Maximum yaw rate", - "longDesc": "This limits the maximum yaw rate the controller will output (in degrees per second).", - "units": "deg/s", - "default": 50, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 90 + "shortDesc": "Measurement noise for vision velocity observations used to lower bound or replace the uncertainty included in the message", + "units": "m/s", + "default": 0.1, + "decimalPlaces": 2, + "minValue": 0.01, + "maxValue": 3.40282e+38 }, { - "name": "GF_ACTION", - "type": "Int32", - "group": "Geofence", + "name": "EKF2_EV_DELAY", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "Geofence violation action", - "longDesc": "Note: Setting this value to 4 enables flight termination, which will kill the vehicle on violation of the fence. Due to the inherent danger of this, this function is disabled using a software circuit breaker, which needs to be reset to 0 to really shut down the system.", - "default": 1, - "values": [ - { - "value": 0, - "description": "None" - }, - { - "value": 1, - "description": "Warning" - }, - { - "value": 2, - "description": "Hold mode" - }, - { - "value": 3, - "description": "Return mode" - }, - { - "value": 4, - "description": "Terminate" - } - ], - "decimalPlaces": 3, + "shortDesc": "Vision Position Estimator delay relative to IMU measurements", + "units": "ms", + "default": 175, + "rebootRequired": true, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 4 + "maxValue": 300 }, { - "name": "GF_ALTMODE", + "name": "EKF2_EV_NOISE_MD", "type": "Int32", - "group": "Geofence", + "group": "EKF2", "category": "Standard", - "shortDesc": "Geofence altitude mode", - "longDesc": "Select which altitude reference should be used 0 = WGS84, 1 = AMSL", + "shortDesc": "Whether to set the external vision observation noise from the parameter or from vision message", + "longDesc": "If set to true the observation noise is set from the parameters directly, if set to false the measurement noise is taken from the vision message and the parameter are used as a lower bound.", "default": 0, - "values": [ - { - "value": 0, - "description": "WGS84" - }, - { - "value": 1, - "description": "AMSL" - } - ], "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "GF_COUNT", - "type": "Int32", - "group": "Geofence", + "name": "EKF2_EV_POS_X", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "Geofence counter limit", - "longDesc": "Set how many subsequent position measurements outside of the fence are needed before geofence violation is triggered", - "default": -1, - "increment": 1, - "decimalPlaces": 0, - "minValue": -1, - "maxValue": 10 + "shortDesc": "X position of VI sensor focal point in body frame (forward axis with origin relative to vehicle centre of gravity)", + "units": "m", + "default": 0, + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "GF_MAX_HOR_DIST", + "name": "EKF2_EV_POS_Y", "type": "Float", - "group": "Geofence", + "group": "EKF2", "category": "Standard", - "shortDesc": "Max horizontal distance in meters", - "longDesc": "Maximum horizontal distance in meters the vehicle can be from home before triggering a geofence action. Disabled if 0.", + "shortDesc": "Y position of VI sensor focal point in body frame (right axis with origin relative to vehicle centre of gravity)", "units": "m", "default": 0, - "increment": 1, - "decimalPlaces": 0, - "minValue": 0, - "maxValue": 10000 + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "GF_MAX_VER_DIST", + "name": "EKF2_EV_POS_Z", "type": "Float", - "group": "Geofence", + "group": "EKF2", "category": "Standard", - "shortDesc": "Max vertical distance in meters", - "longDesc": "Maximum vertical distance in meters the vehicle can be from home before triggering a geofence action. Disabled if 0.", + "shortDesc": "Z position of VI sensor focal point in body frame (down axis with origin relative to vehicle centre of gravity)", "units": "m", "default": 0, - "increment": 1, - "decimalPlaces": 0, - "minValue": 0, - "maxValue": 10000 + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "GF_SOURCE", + "name": "EKF2_FUSE_BETA", "type": "Int32", - "group": "Geofence", + "group": "EKF2", "category": "Standard", - "shortDesc": "Geofence source", - "longDesc": "Select which position source should be used. Selecting GPS instead of global position makes sure that there is no dependence on the position estimator 0 = global position, 1 = GPS", + "shortDesc": "Boolean determining if synthetic sideslip measurements should fused", + "longDesc": "A value of 1 indicates that fusion is active Both sideslip fusion and airspeed fusion must be active for the EKF to continue navigating after loss of GPS. Use EKF2_ARSP_THR to activate airspeed fusion.", "default": 0, - "values": [ - { - "value": 0, - "description": "GPOS" - }, - { - "value": 1, - "description": "GPS" - } - ], "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "GND_L1_DAMPING", + "name": "EKF2_GBIAS_INIT", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "L1 damping", - "longDesc": "Damping factor for L1 control.", - "default": 0.75, - "increment": 0.05, + "shortDesc": "1-sigma IMU gyro switch-on bias", + "units": "rad/sec", + "default": 0.1, + "rebootRequired": true, "decimalPlaces": 2, - "minValue": 0.6, - "maxValue": 0.9 + "minValue": 0, + "maxValue": 0.2 + }, + { + "name": "EKF2_GND_EFF_DZ", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Baro deadzone range for height fusion", + "longDesc": "Sets the value of deadzone applied to negative baro innovations. Deadzone is enabled when EKF2_GND_EFF_DZ > 0.", + "units": "M", + "default": 0, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 10 + }, + { + "name": "EKF2_GND_MAX_HGT", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Height above ground level for ground effect zone", + "longDesc": "Sets the maximum distance to the ground level where negative baro innovations are expected.", + "units": "M", + "default": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 5 }, { - "name": "GND_L1_DIST", - "type": "Float", - "group": "Rover Position Control", + "name": "EKF2_GPS_CHECK", + "type": "Int32", + "group": "EKF2", "category": "Standard", - "shortDesc": "L1 distance", - "longDesc": "This is the waypoint radius", - "units": "m", - "default": 5, - "increment": 0.1, - "decimalPlaces": 1, + "shortDesc": "Integer bitmask controlling GPS checks", + "longDesc": "Set bits to 1 to enable checks. Checks enabled by the following bit positions 0 : Minimum required sat count set by EKF2_REQ_NSATS 1 : Minimum required PDOP set by EKF2_REQ_PDOP 2 : Maximum allowed horizontal position error set by EKF2_REQ_EPH 3 : Maximum allowed vertical position error set by EKF2_REQ_EPV 4 : Maximum allowed speed error set by EKF2_REQ_SACC 5 : Maximum allowed horizontal position rate set by EKF2_REQ_HDRIFT. This check will only run when the vehicle is on ground and stationary. Detecton of the stationary condition is controlled by the EKF2_MOVE_TEST parameter. 6 : Maximum allowed vertical position rate set by EKF2_REQ_VDRIFT. This check will only run when the vehicle is on ground and stationary. Detecton of the stationary condition is controlled by the EKF2_MOVE_TEST parameter. 7 : Maximum allowed horizontal speed set by EKF2_REQ_HDRIFT. This check will only run when the vehicle is on ground and stationary. Detecton of the stationary condition is controlled by the EKF2_MOVE_TEST parameter. 8 : Maximum allowed vertical velocity discrepancy set by EKF2_REQ_VDRIFT", + "default": 245, + "decimalPlaces": 3, "minValue": 0, - "maxValue": 100 + "maxValue": 511 }, { - "name": "GND_L1_PERIOD", + "name": "EKF2_GPS_DELAY", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "L1 period", - "longDesc": "This is the L1 distance and defines the tracking point ahead of the rover it's following. Using values around 2-5 for a traxxas stampede. Shorten slowly during tuning until response is sharp without oscillation.", - "units": "m", - "default": 10, - "increment": 0.5, + "shortDesc": "GPS measurement delay relative to IMU measurements", + "units": "ms", + "default": 110, + "rebootRequired": true, "decimalPlaces": 1, "minValue": 0, - "maxValue": 50 + "maxValue": 300 }, { - "name": "GND_MAX_ANG", - "type": "Float", - "group": "Rover Position Control", + "name": "EKF2_GPS_MASK", + "type": "Int32", + "group": "EKF2", "category": "Standard", - "shortDesc": "Maximum turn angle for Ackerman steering. At a control output of 0, the steering wheels are at 0 radians. At a control output of 1, the steering wheels are at GND_MAX_ANG radians", - "units": "rad", - "default": 0.7854, - "increment": 0.01, + "shortDesc": "Multi GPS Blending Control Mask", + "longDesc": "Set bits in the following positions to set which GPS accuracy metrics will be used to calculate the blending weight. Set to zero to disable and always used first GPS instance. 0 : Set to true to use speed accuracy 1 : Set to true to use horizontal position accuracy 2 : Set to true to use vertical position accuracy", + "default": 0, "decimalPlaces": 3, "minValue": 0, - "maxValue": 3.14159 + "maxValue": 7 }, { - "name": "GND_SPEED_D", + "name": "EKF2_GPS_POS_X", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Speed proportional gain", - "longDesc": "This is the derivative gain for the speed closed loop controller", - "units": "%m/s", - "default": 0.001, - "increment": 0.005, + "shortDesc": "X position of GPS antenna in body frame (forward axis with origin relative to vehicle centre of gravity)", + "units": "m", + "default": 0, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 50 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "GND_SPEED_I", + "name": "EKF2_GPS_POS_Y", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Speed Integral gain", - "longDesc": "This is the integral gain for the speed closed loop controller", - "units": "%m/s", - "default": 3, - "increment": 0.005, + "shortDesc": "Y position of GPS antenna in body frame (right axis with origin relative to vehicle centre of gravity)", + "units": "m", + "default": 0, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 50 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "GND_SPEED_IMAX", + "name": "EKF2_GPS_POS_Z", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Speed integral maximum value", - "longDesc": "This is the maxim value the integral can reach to prevent wind-up.", - "units": "%m/s", - "default": 1, - "increment": 0.005, + "shortDesc": "Z position of GPS antenna in body frame (down axis with origin relative to vehicle centre of gravity)", + "units": "m", + "default": 0, "decimalPlaces": 3, - "minValue": 0.005, - "maxValue": 50 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "GND_SPEED_MAX", + "name": "EKF2_GPS_P_GATE", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Maximum ground speed", - "units": "m/s", - "default": 10, - "increment": 0.5, + "shortDesc": "Gate size for GPS horizontal position fusion", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "SD", + "default": 5, "decimalPlaces": 1, - "minValue": 0, - "maxValue": 40 + "minValue": 1, + "maxValue": 3.40282e+38 }, { - "name": "GND_SPEED_P", + "name": "EKF2_GPS_P_NOISE", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Speed proportional gain", - "longDesc": "This is the proportional gain for the speed closed loop controller", - "units": "%m/s", - "default": 2, - "increment": 0.005, - "decimalPlaces": 3, - "minValue": 0.005, - "maxValue": 50 + "shortDesc": "Measurement noise for gps position", + "units": "m", + "default": 0.5, + "decimalPlaces": 2, + "minValue": 0.01, + "maxValue": 10 }, { - "name": "GND_SPEED_THR_SC", + "name": "EKF2_GPS_TAU", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Speed to throttle scaler", - "longDesc": "This is a gain to map the speed control output to the throttle linearly.", - "units": "%m/s", - "default": 1, - "increment": 0.005, - "decimalPlaces": 3, - "minValue": 0.005, - "maxValue": 50 + "shortDesc": "Multi GPS Blending Time Constant", + "longDesc": "Sets the longest time constant that will be applied to the calculation of GPS position and height offsets used to correct data from multiple GPS data for steady state position differences.", + "units": "s", + "default": 10, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 100 }, { - "name": "GND_SPEED_TRIM", + "name": "EKF2_GPS_V_GATE", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Trim ground speed", - "units": "m/s", - "default": 3, - "increment": 0.5, + "shortDesc": "Gate size for GPS velocity fusion", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "SD", + "default": 5, "decimalPlaces": 1, - "minValue": 0, - "maxValue": 40 + "minValue": 1, + "maxValue": 3.40282e+38 }, { - "name": "GND_SP_CTRL_MODE", - "type": "Int32", - "group": "Rover Position Control", + "name": "EKF2_GPS_V_NOISE", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "Control mode for speed", - "longDesc": "This allows the user to choose between closed loop gps speed or open loop cruise throttle speed", - "default": 1, - "values": [ - { - "value": 0, - "description": "open loop control" - }, - { - "value": 1, - "description": "close the loop with gps speed" - } - ], - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1 + "shortDesc": "Measurement noise for gps horizontal velocity", + "units": "m/s", + "default": 0.3, + "decimalPlaces": 2, + "minValue": 0.01, + "maxValue": 5 }, { - "name": "GND_THR_CRUISE", + "name": "EKF2_GSF_TAS", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Cruise throttle", - "longDesc": "This is the throttle setting required to achieve the desired cruise speed. 10% is ok for a traxxas stampede vxl with ESC set to training mode", - "units": "norm", - "default": 0.1, - "increment": 0.01, - "decimalPlaces": 2, + "shortDesc": "Default value of true airspeed used in EKF-GSF AHRS calculation. If no airspeed measurements are avalable, the EKF-GSF AHRS calculation will assume this value of true airspeed when compensating for centripetal acceleration during turns. Set to zero to disable centripetal acceleration compensation during fixed wing flight modes", + "units": "m/s", + "default": 15, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 1 + "maxValue": 100 }, { - "name": "GND_THR_IDLE", + "name": "EKF2_GYR_B_NOISE", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Idle throttle", - "longDesc": "This is the minimum throttle while on the ground, it should be 0 for a rover", - "units": "norm", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, + "shortDesc": "Process noise for IMU rate gyro bias prediction", + "units": "rad/s**2", + "default": 0.001, + "decimalPlaces": 6, "minValue": 0, - "maxValue": 0.4 + "maxValue": 0.01 }, { - "name": "GND_THR_MAX", + "name": "EKF2_GYR_NOISE", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Throttle limit max", - "longDesc": "This is the maximum throttle % that can be used by the controller. For a Traxxas stampede vxl with the ESC set to training, 30 % is enough", - "units": "norm", - "default": 0.3, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 + "shortDesc": "Rate gyro noise for covariance prediction", + "units": "rad/s", + "default": 0.015, + "decimalPlaces": 4, + "minValue": 0.0001, + "maxValue": 0.1 + }, + { + "name": "EKF2_HDG_GATE", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Gate size for magnetic heading fusion", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "SD", + "default": 2.6, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 3.40282e+38 }, { - "name": "GND_THR_MIN", + "name": "EKF2_HEAD_NOISE", "type": "Float", - "group": "Rover Position Control", + "group": "EKF2", "category": "Standard", - "shortDesc": "Throttle limit min", - "longDesc": "This is the minimum throttle % that can be used by the controller. Set to 0 for rover", - "units": "norm", - "default": 0, - "increment": 0.01, + "shortDesc": "Measurement noise for magnetic heading fusion", + "units": "rad", + "default": 0.3, "decimalPlaces": 2, - "minValue": 0, + "minValue": 0.01, "maxValue": 1 }, { - "name": "GND_WHEEL_BASE", - "type": "Float", - "group": "Rover Position Control", - "category": "Standard", - "shortDesc": "Distance from front axle to rear axle", - "units": "m", - "default": 2, - "increment": 0.01, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 3.40282e+38 - }, - { - "name": "GPS_1_CONFIG", + "name": "EKF2_HGT_MODE", "type": "Int32", - "group": "GPS", + "group": "EKF2", "category": "Standard", - "shortDesc": "Serial Configuration for Main GPS", - "longDesc": "Configure on which serial port to run Main GPS.", - "default": 201, + "shortDesc": "Determines the primary source of height data used by the EKF", + "longDesc": "The range sensor option should only be used when for operation over a flat surface as the local NED origin will move up and down with ground level.", + "default": 0, "values": [ { "value": 0, - "description": "Disabled" - }, - { - "value": 6, - "description": "UART 6" - }, - { - "value": 101, - "description": "TELEM 1" - }, - { - "value": 102, - "description": "TELEM 2" - }, - { - "value": 103, - "description": "TELEM 3" - }, - { - "value": 104, - "description": "TELEM/SERIAL 4" - }, - { - "value": 201, - "description": "GPS 1" + "description": "Barometric pressure" }, { - "value": 202, - "description": "GPS 2" + "value": 1, + "description": "GPS" }, { - "value": 203, - "description": "GPS 3" + "value": 2, + "description": "Range sensor" }, { - "value": 300, - "description": "Radio Controller" + "value": 3, + "description": "Vision" } ], "rebootRequired": true, @@ -7622,2529 +3685,2393 @@ "maxValue": 2.14748e+09 }, { - "name": "GPS_2_CONFIG", + "name": "EKF2_IMU_ID", "type": "Int32", - "group": "GPS", - "category": "Standard", - "shortDesc": "Serial Configuration for Secondary GPS", - "longDesc": "Configure on which serial port to run Secondary GPS.", + "group": "EKF2", + "category": "Developer", + "shortDesc": "Device id of IMU", + "longDesc": "Set to 0 to use system selected (sensor_combined) IMU, otherwise set to the device id of the desired IMU (vehicle_imu).", "default": 0, "values": [ { "value": 0, - "description": "Disabled" - }, - { - "value": 6, - "description": "UART 6" - }, - { - "value": 101, - "description": "TELEM 1" - }, - { - "value": 102, - "description": "TELEM 2" - }, - { - "value": 103, - "description": "TELEM 3" - }, - { - "value": 104, - "description": "TELEM/SERIAL 4" - }, - { - "value": 201, - "description": "GPS 1" - }, - { - "value": 202, - "description": "GPS 2" - }, - { - "value": 203, - "description": "GPS 3" - }, - { - "value": 300, - "description": "Radio Controller" + "description": "System Primary" } ], - "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "GPS_DUMP_COMM", - "type": "Int32", - "group": "GPS", + "name": "EKF2_IMU_POS_X", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "Dump GPS communication to a file", - "longDesc": "If this is set to 1, all GPS communication data will be published via uORB, and written to the log file as gps_dump message.", + "shortDesc": "X position of IMU in body frame (forward axis with origin relative to vehicle centre of gravity)", + "units": "m", "default": 0, - "values": [ - { - "value": 0, - "description": "Disable" - }, - { - "value": 1, - "description": "Enable" - } - ], "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "GPS_UBX_DYNMODEL", - "type": "Int32", - "group": "GPS", + "name": "EKF2_IMU_POS_Y", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "u-blox GPS dynamic platform model", - "longDesc": "u-blox receivers support different dynamic platform models to adjust the navigation engine to the expected application environment.", - "default": 7, - "values": [ - { - "value": 2, - "description": "stationary" - }, - { - "value": 4, - "description": "automotive" - }, - { - "value": 6, - "description": "airborne with <1g acceleration" - }, - { - "value": 7, - "description": "airborne with <2g acceleration" - }, - { - "value": 8, - "description": "airborne with <4g acceleration" - } - ], - "rebootRequired": true, + "shortDesc": "Y position of IMU in body frame (right axis with origin relative to vehicle centre of gravity)", + "units": "m", + "default": 0, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 9 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "GPS_YAW_OFFSET", + "name": "EKF2_IMU_POS_Z", "type": "Float", - "group": "GPS", + "group": "EKF2", "category": "Standard", - "shortDesc": "Heading/Yaw offset for dual antenna GPS", - "longDesc": "Heading offset angle for dual antenna GPS setups that support heading estimation. (currently only for the Trimble MB-Two). Set this to 0 if the antennas are parallel to the forward-facing direction of the vehicle and the first antenna is in front. The offset angle increases counterclockwise. Set this to 90 if the first antenna is placed on the right side and the second on the left side of the vehicle.", - "units": "deg", + "shortDesc": "Z position of IMU in body frame (down axis with origin relative to vehicle centre of gravity)", + "units": "m", + "default": 0, + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 + }, + { + "name": "EKF2_MAGBIAS_ID", + "type": "Int32", + "group": "EKF2", + "category": "System", + "shortDesc": "ID of Magnetometer the learned bias is for", "default": 0, "rebootRequired": true, - "decimalPlaces": 0, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "EKF2_MAGBIAS_X", + "type": "Float", + "group": "EKF2", + "category": "System", + "shortDesc": "Learned value of magnetometer X axis bias. This is the amount of X-axis magnetometer bias learned by the EKF and saved from the last flight. It must be set to zero if the ground based magnetometer calibration is repeated", + "units": "mGauss", + "default": 0, + "rebootRequired": true, + "volatile": true, + "decimalPlaces": 3, + "minValue": -0.5, + "maxValue": 0.5 + }, + { + "name": "EKF2_MAGBIAS_Y", + "type": "Float", + "group": "EKF2", + "category": "System", + "shortDesc": "Learned value of magnetometer Y axis bias. This is the amount of Y-axis magnetometer bias learned by the EKF and saved from the last flight. It must be set to zero if the ground based magnetometer calibration is repeated", + "units": "mGauss", + "default": 0, + "rebootRequired": true, + "volatile": true, + "decimalPlaces": 3, + "minValue": -0.5, + "maxValue": 0.5 + }, + { + "name": "EKF2_MAGBIAS_Z", + "type": "Float", + "group": "EKF2", + "category": "System", + "shortDesc": "Learned value of magnetometer Z axis bias. This is the amount of Z-axis magnetometer bias learned by the EKF and saved from the last flight. It must be set to zero if the ground based magnetometer calibration is repeated", + "units": "mGauss", + "default": 0, + "rebootRequired": true, + "volatile": true, + "decimalPlaces": 3, + "minValue": -0.5, + "maxValue": 0.5 + }, + { + "name": "EKF2_MAGB_K", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Maximum fraction of learned mag bias saved at each disarm. Smaller values make the saved mag bias learn slower from flight to flight. Larger values make it learn faster. Must be > 0.0 and <= 1.0", + "default": 0.2, + "decimalPlaces": 2, "minValue": 0, - "maxValue": 360 + "maxValue": 1 }, { - "name": "HTE_ACC_GATE", + "name": "EKF2_MAGB_VREF", "type": "Float", - "group": "Hover Thrust Estimator", + "group": "EKF2", "category": "Standard", - "shortDesc": "Gate size for acceleration fusion", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "SD", - "default": 3, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 10 + "shortDesc": "State variance assumed for magnetometer bias storage. This is a reference variance used to calculate the fraction of learned magnetometer bias that will be used to update the stored value. Smaller values will make the stored bias data adjust more slowly from flight to flight. Larger values will make it adjust faster", + "units": "mGauss**2", + "default": 2.5e-07, + "rebootRequired": true, + "decimalPlaces": 8, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "HTE_HT_ERR_INIT", + "name": "EKF2_MAG_ACCLIM", "type": "Float", - "group": "Hover Thrust Estimator", + "group": "EKF2", "category": "Standard", - "shortDesc": "1-sigma initial hover thrust uncertainty", - "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", - "units": "normalized_thrust", - "default": 0.1, - "decimalPlaces": 3, + "shortDesc": "Horizontal acceleration threshold used by automatic selection of magnetometer fusion method. This parameter is used when the magnetometer fusion method is set automatically (EKF2_MAG_TYPE = 0). If the filtered horizontal acceleration is greater than this parameter value, then the EKF will use 3-axis magnetomer fusion", + "units": "m/s**2", + "default": 0.5, + "decimalPlaces": 2, "minValue": 0, - "maxValue": 1 + "maxValue": 5 }, { - "name": "HTE_HT_NOISE", + "name": "EKF2_MAG_B_NOISE", "type": "Float", - "group": "Hover Thrust Estimator", + "group": "EKF2", "category": "Standard", - "shortDesc": "Hover thrust process noise", - "longDesc": "Reduce to make the hover thrust estimate more stable, increase if the real hover thrust is expected to change quickly over time.", - "units": "normalized_thrust/s", - "default": 0.0005, - "decimalPlaces": 4, - "minValue": 0.0001, - "maxValue": 1 + "shortDesc": "Process noise for body magnetic field prediction", + "units": "Gauss/s", + "default": 0.0001, + "decimalPlaces": 6, + "minValue": 0, + "maxValue": 0.1 }, { - "name": "IMU_ACCEL_CUTOFF", - "type": "Float", - "group": "Sensors", + "name": "EKF2_MAG_CHECK", + "type": "Int32", + "group": "EKF2", "category": "Standard", - "shortDesc": "Low pass filter cutoff frequency for accel", - "longDesc": "The cutoff frequency for the 2nd order butterworth filter on the primary accelerometer. This only affects the signal sent to the controllers, not the estimators. 0 disables the filter.", - "units": "Hz", - "default": 30, - "rebootRequired": true, + "shortDesc": "Magnetic field strength test selection", + "longDesc": "When set, the EKF checks the strength of the magnetic field to decide whether the magnetometer data is valid. If GPS data is received, the magnetic field is compared to a World Magnetic Model (WMM), otherwise an average value is used. This check is useful to reject occasional hard iron disturbance.", + "default": 0, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1000 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "IMU_DGYRO_CUTOFF", + "name": "EKF2_MAG_DECL", "type": "Float", - "group": "Sensors", + "group": "EKF2", + "category": "System", + "shortDesc": "Magnetic declination", + "units": "deg", + "default": 0, + "volatile": true, + "decimalPlaces": 1, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 + }, + { + "name": "EKF2_MAG_DELAY", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "Cutoff frequency for angular acceleration (D-Term filter)", - "longDesc": "The cutoff frequency for the 2nd order butterworth filter used on the time derivative of the measured angular velocity, also known as the D-term filter in the rate controller. The D-term uses the derivative of the rate and thus is the most susceptible to noise. Therefore, using a D-term filter allows to increase IMU_GYRO_CUTOFF, which leads to reduced control latency and permits to increase the P gains. A value of 0 disables the filter.", - "units": "Hz", + "shortDesc": "Magnetometer measurement delay relative to IMU measurements", + "units": "ms", "default": 0, "rebootRequired": true, - "decimalPlaces": 3, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 1000 + "maxValue": 300 }, { - "name": "IMU_GYRO_CUTOFF", + "name": "EKF2_MAG_E_NOISE", "type": "Float", - "group": "Sensors", + "group": "EKF2", "category": "Standard", - "shortDesc": "Low pass filter cutoff frequency for gyro", - "longDesc": "The cutoff frequency for the 2nd order butterworth filter on the primary gyro. This only affects the angular velocity sent to the controllers, not the estimators. It applies also to the angular acceleration (D-Term filter), see IMU_DGYRO_CUTOFF. A value of 0 disables the filter.", - "units": "Hz", - "default": 30, - "rebootRequired": true, - "decimalPlaces": 3, + "shortDesc": "Process noise for earth magnetic field prediction", + "units": "Gauss/s", + "default": 0.001, + "decimalPlaces": 6, "minValue": 0, - "maxValue": 1000 + "maxValue": 0.1 }, { - "name": "IMU_GYRO_NF_BW", + "name": "EKF2_MAG_GATE", "type": "Float", - "group": "Sensors", + "group": "EKF2", "category": "Standard", - "shortDesc": "Notch filter bandwidth for gyro", - "longDesc": "The frequency width of the stop band for the 2nd order notch filter on the primary gyro. See \"IMU_GYRO_NF_FREQ\" to activate the filter and to set the notch frequency. Applies to both angular velocity and angular acceleration sent to the controllers.", - "units": "Hz", - "default": 20, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "shortDesc": "Gate size for magnetometer XYZ component fusion", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "SD", + "default": 3, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 3.40282e+38 }, { - "name": "IMU_GYRO_NF_FREQ", + "name": "EKF2_MAG_NOISE", "type": "Float", - "group": "Sensors", + "group": "EKF2", "category": "Standard", - "shortDesc": "Notch filter frequency for gyro", - "longDesc": "The center frequency for the 2nd order notch filter on the primary gyro. This filter can be enabled to avoid feedback amplification of structural resonances at a specific frequency. This only affects the signal sent to the controllers, not the estimators. Applies to both angular velocity and angular acceleration sent to the controllers. See \"IMU_GYRO_NF_BW\" to set the bandwidth of the filter. A value of 0 disables the filter.", - "units": "Hz", - "default": 0, - "rebootRequired": true, + "shortDesc": "Measurement noise for magnetometer 3-axis fusion", + "units": "Gauss", + "default": 0.05, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1000 + "minValue": 0.001, + "maxValue": 1 }, { - "name": "IMU_GYRO_RATEMAX", + "name": "EKF2_MAG_TYPE", "type": "Int32", - "group": "Sensors", + "group": "EKF2", "category": "Standard", - "shortDesc": "Gyro control data maximum publication rate", - "longDesc": "This is the maximum rate the gyro control data (sensor_gyro) will be allowed to publish at. Set to 0 to disable and publish at the native sensor sample rate.", - "units": "Hz", + "shortDesc": "Type of magnetometer fusion", + "longDesc": "Integer controlling the type of magnetometer fusion used - magnetic heading or 3-component vector. The fuson of magnetomer data as a three component vector enables vehicle body fixed hard iron errors to be learned, but requires a stable earth field. If set to 'Automatic' magnetic heading fusion is used when on-ground and 3-axis magnetic field fusion in-flight with fallback to magnetic heading fusion if there is insufficient motion to make yaw or magnetic field states observable. If set to 'Magnetic heading' magnetic heading fusion is used at all times If set to '3-axis' 3-axis field fusion is used at all times. If set to 'VTOL custom' the behaviour is the same as 'Automatic', but if fusing airspeed, magnetometer fusion is only allowed to modify the magnetic field states. This can be used by VTOL platforms with large magnetic field disturbances to prevent incorrect bias states being learned during forward flight operation which can adversely affect estimation accuracy after transition to hovering flight. If set to 'MC custom' the behaviour is the same as 'Automatic, but if there are no earth frame position or velocity observations being used, the magnetometer will not be used. This enables vehicles to operate with no GPS in environments where the magnetic field cannot be used to provide a heading reference. Prior to flight, the yaw angle is assumed to be constant if movement tests controlled by the EKF2_MOVE_TEST parameter indicate that the vehicle is static. This allows the vehicle to be placed on the ground to learn the yaw gyro bias prior to flight. If set to 'None' the magnetometer will not be used under any circumstance. If no external source of yaw is available, it is possible to use post-takeoff horizontal movement combined with GPS velocity measurements to align the yaw angle with the timer required (depending on the amount of movement and GPS data quality). Other external sources of yaw may be used if selected via the EKF2_AID_MASK parameter.", "default": 0, "values": [ { "value": 0, - "description": "0 (no limit)" + "description": "Automatic" }, { - "value": 50, - "description": "50 Hz" + "value": 1, + "description": "Magnetic heading" }, { - "value": 250, - "description": "250 Hz" + "value": 2, + "description": "3-axis" }, { - "value": 400, - "description": "400 Hz" + "value": 3, + "description": "VTOL custom" }, { - "value": 1000, - "description": "1000 Hz" + "value": 4, + "description": "MC custom" }, { - "value": 2000, - "description": "2000 Hz" + "value": 5, + "description": "None" } ], "rebootRequired": true, "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "EKF2_MAG_YAWLIM", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Yaw rate threshold used by automatic selection of magnetometer fusion method. This parameter is used when the magnetometer fusion method is set automatically (EKF2_MAG_TYPE = 0). If the filtered yaw rate is greater than this parameter value, then the EKF will use 3-axis magnetomer fusion", + "units": "rad/s", + "default": 0.25, + "decimalPlaces": 2, "minValue": 0, - "maxValue": 2000 + "maxValue": 1 + }, + { + "name": "EKF2_MIN_OBS_DT", + "type": "Int32", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Minimum time of arrival delta between non-IMU observations before data is downsampled. Baro and Magnetometer data will be averaged before downsampling, other data will be point sampled resulting in loss of information", + "units": "ms", + "default": 20, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 10, + "maxValue": 50 + }, + { + "name": "EKF2_MIN_RNG", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Expected range finder reading when on ground", + "longDesc": "If the vehicle is on ground, is not moving as determined by the motion test controlled by EKF2_MOVE_TEST and the range finder is returning invalid or no data, then an assumed range value of EKF2_MIN_RNG will be used by the terrain estimator so that a terrain height estimate is avilable at the start of flight in situations where the range finder may be inside its minimum measurements distance when on ground.", + "units": "m", + "default": 0.1, + "decimalPlaces": 2, + "minValue": 0.01, + "maxValue": 3.40282e+38 + }, + { + "name": "EKF2_MOVE_TEST", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Vehicle movement test threshold", + "longDesc": "Scales the threshold tests applied to IMU data used to determine if the vehicle is static or moving. See parameter descriptions for EKF2_GPS_CHECK and EKF2_MAG_TYPE for further information on the functionality affected by this parameter.", + "default": 1, + "decimalPlaces": 1, + "minValue": 0.1, + "maxValue": 10 + }, + { + "name": "EKF2_NOAID_NOISE", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Measurement noise for non-aiding position hold", + "units": "m", + "default": 10, + "decimalPlaces": 1, + "minValue": 0.5, + "maxValue": 50 + }, + { + "name": "EKF2_NOAID_TOUT", + "type": "Int32", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Maximum lapsed time from last fusion of measurements that constrain velocity drift before the EKF will report the horizontal nav solution as invalid", + "units": "uSec", + "default": 5e+06, + "decimalPlaces": 3, + "minValue": 500000, + "maxValue": 1e+07 }, { - "name": "IMU_INTEG_RATE", - "type": "Int32", - "group": "Sensors", + "name": "EKF2_OF_DELAY", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "IMU integration rate", - "longDesc": "The rate at which raw IMU data is integrated to produce delta angles and delta velocities. Recommended to set this to a multiple of the estimator update period (currently 10 ms for ekf2).", - "units": "Hz", - "default": 200, + "shortDesc": "Optical flow measurement delay relative to IMU measurements Assumes measurement is timestamped at trailing edge of integration period", + "units": "ms", + "default": 5, "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 100, - "maxValue": 1000 + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 300 }, { - "name": "INA226_CONFIG", - "type": "Int32", - "group": "Sensors", + "name": "EKF2_OF_GATE", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "INA226 Power Monitor Config", - "units": "u", - "default": 18139, - "increment": 1, + "shortDesc": "Gate size for optical flow fusion", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "SD", + "default": 3, "decimalPlaces": 1, - "minValue": 0, - "maxValue": 65535 + "minValue": 1, + "maxValue": 3.40282e+38 }, { - "name": "INA226_CURRENT", + "name": "EKF2_OF_N_MAX", "type": "Float", - "group": "Sensors", + "group": "EKF2", "category": "Standard", - "shortDesc": "INA226 Power Monitor Max Current", - "default": 164, - "increment": 0.1, + "shortDesc": "Measurement noise for the optical flow sensor", + "longDesc": "(when it's reported quality metric is at the minimum set by EKF2_OF_QMIN). The following condition must be met: EKF2_OF_N_MAXN >= EKF2_OF_N_MIN", + "units": "rad/s", + "default": 0.5, "decimalPlaces": 2, - "minValue": 0.1, - "maxValue": 200 + "minValue": 0.05, + "maxValue": 3.40282e+38 }, { - "name": "INA226_SHUNT", + "name": "EKF2_OF_N_MIN", "type": "Float", - "group": "Sensors", + "group": "EKF2", "category": "Standard", - "shortDesc": "INA226 Power Monitor Shunt", - "default": 0.0005, - "increment": 1e-09, - "decimalPlaces": 10, - "minValue": 1e-09, - "maxValue": 0.1 + "shortDesc": "Measurement noise for the optical flow sensor when it's reported quality metric is at the maximum", + "units": "rad/s", + "default": 0.15, + "decimalPlaces": 2, + "minValue": 0.05, + "maxValue": 3.40282e+38 }, { - "name": "ISBD_CONFIG", - "type": "Int32", - "group": "Iridium SBD", + "name": "EKF2_OF_POS_X", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "Serial Configuration for Iridium (with MAVLink)", - "longDesc": "Configure on which serial port to run Iridium (with MAVLink).", + "shortDesc": "X position of optical flow focal point in body frame (forward axis with origin relative to vehicle centre of gravity)", + "units": "m", "default": 0, - "values": [ - { - "value": 0, - "description": "Disabled" - }, - { - "value": 6, - "description": "UART 6" - }, - { - "value": 101, - "description": "TELEM 1" - }, - { - "value": 102, - "description": "TELEM 2" - }, - { - "value": 103, - "description": "TELEM 3" - }, - { - "value": 104, - "description": "TELEM/SERIAL 4" - }, - { - "value": 201, - "description": "GPS 1" - }, - { - "value": 202, - "description": "GPS 2" - }, - { - "value": 203, - "description": "GPS 3" - }, - { - "value": 300, - "description": "Radio Controller" - } - ], - "rebootRequired": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "ISBD_READ_INT", - "type": "Int32", - "group": "Iridium SBD", + "name": "EKF2_OF_POS_Y", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "Satellite radio read interval. Only required to be nonzero if data is not sent using a ring call", - "units": "s", + "shortDesc": "Y position of optical flow focal point in body frame (right axis with origin relative to vehicle centre of gravity)", + "units": "m", "default": 0, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 5000 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "ISBD_SBD_TIMEOUT", - "type": "Int32", - "group": "Iridium SBD", + "name": "EKF2_OF_POS_Z", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "Iridium SBD session timeout", - "units": "s", - "default": 60, + "shortDesc": "Z position of optical flow focal point in body frame (down axis with origin relative to vehicle centre of gravity)", + "units": "m", + "default": 0, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 300 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "ISBD_STACK_TIME", + "name": "EKF2_OF_QMIN", "type": "Int32", - "group": "Iridium SBD", + "group": "EKF2", "category": "Standard", - "shortDesc": "Time [ms] the Iridium driver will wait for additional mavlink messages to combine them into one SBD message Value 0 turns the functionality off", - "units": "ms", - "default": 0, + "shortDesc": "Optical Flow data will only be used if the sensor reports a quality metric >= EKF2_OF_QMIN", + "default": 1, "decimalPlaces": 3, "minValue": 0, - "maxValue": 500 + "maxValue": 255 }, { - "name": "LAUN_ALL_ON", - "type": "Int32", - "group": "FW Launch detection", + "name": "EKF2_PCOEF_XN", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "Launch detection", + "shortDesc": "Static pressure position error coefficient for the negative X axis. This is the ratio of static pressure error to dynamic pressure generated by a negative wind relative velocity along the X body axis. If the baro height estimate rises during backwards flight, then this will be a negative number", "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "decimalPlaces": 2, + "minValue": -0.5, + "maxValue": 0.5 }, { - "name": "LAUN_CAT_A", + "name": "EKF2_PCOEF_XP", "type": "Float", - "group": "FW Launch detection", + "group": "EKF2", "category": "Standard", - "shortDesc": "Catapult accelerometer threshold", - "longDesc": "LAUN_CAT_A for LAUN_CAT_T serves as threshold to trigger launch detection.", - "units": "m/s/s", - "default": 30, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 3.40282e+38 + "shortDesc": "Static pressure position error coefficient for the positive X axis This is the ratio of static pressure error to dynamic pressure generated by a positive wind relative velocity along the X body axis. If the baro height estimate rises during forward flight, then this will be a negative number", + "default": 0, + "decimalPlaces": 2, + "minValue": -0.5, + "maxValue": 0.5 }, { - "name": "LAUN_CAT_MDEL", + "name": "EKF2_PCOEF_YN", "type": "Float", - "group": "FW Launch detection", + "group": "EKF2", "category": "Standard", - "shortDesc": "Motor delay", - "longDesc": "Delay between starting attitude control and powering up the throttle (giving throttle control to the controller) Before this timespan is up the throttle will be set to FW_THR_IDLE, set to 0 to deactivate", - "units": "s", + "shortDesc": "Pressure position error coefficient for the negative Y axis. This is the ratio of static pressure error to dynamic pressure generated by a wind relative velocity along the negative Y (LH) body axis. If the baro height estimate rises during sideways flight to the left, then this will be a negative number", "default": 0, - "increment": 0.5, + "decimalPlaces": 2, + "minValue": -0.5, + "maxValue": 0.5 + }, + { + "name": "EKF2_PCOEF_YP", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Pressure position error coefficient for the positive Y axis. This is the ratio of static pressure error to dynamic pressure generated by a wind relative velocity along the positive Y (RH) body axis. If the baro height estimate rises during sideways flight to the right, then this will be a negative number", + "default": 0, + "decimalPlaces": 2, + "minValue": -0.5, + "maxValue": 0.5 + }, + { + "name": "EKF2_PCOEF_Z", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Static pressure position error coefficient for the Z axis. This is the ratio of static pressure error to dynamic pressure generated by a wind relative velocity along the Z body axis", + "default": 0, + "decimalPlaces": 2, + "minValue": -0.5, + "maxValue": 0.5 + }, + { + "name": "EKF2_REQ_EPH", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Required EPH to use GPS", + "units": "m", + "default": 3, "decimalPlaces": 1, - "minValue": 0, - "maxValue": 10 + "minValue": 2, + "maxValue": 100 }, { - "name": "LAUN_CAT_PMAX", + "name": "EKF2_REQ_EPV", "type": "Float", - "group": "FW Launch detection", + "group": "EKF2", "category": "Standard", - "shortDesc": "Maximum pitch before the throttle is powered up (during motor delay phase)", - "longDesc": "This is an extra limit for the maximum pitch which is imposed in the phase before the throttle turns on. This allows to limit the maximum pitch angle during a bungee launch (make the launch less steep).", - "units": "deg", - "default": 30, - "increment": 0.5, + "shortDesc": "Required EPV to use GPS", + "units": "m", + "default": 5, "decimalPlaces": 1, - "minValue": 0, - "maxValue": 45 + "minValue": 2, + "maxValue": 100 }, { - "name": "LAUN_CAT_T", + "name": "EKF2_REQ_GPS_H", "type": "Float", - "group": "FW Launch detection", + "group": "EKF2", "category": "Standard", - "shortDesc": "Catapult time threshold", - "longDesc": "LAUN_CAT_A for LAUN_CAT_T serves as threshold to trigger launch detection.", + "shortDesc": "Required GPS health time on startup", + "longDesc": "Minimum continuous period without GPS failure required to mark a healthy GPS status. It can be reduced to speed up initialization, but it's recommended to keep this unchanged for a vehicle.", "units": "s", - "default": 0.05, - "increment": 0.05, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 5 - }, - { - "name": "LED_RGB1_MAXBRT", - "type": "Int32", - "group": "System", - "category": "Standard", - "shortDesc": "RGB Led brightness limit", - "longDesc": "Set to 0 to disable, 1 for minimum brightness up to 31 (max)", - "default": 31, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 31 + "default": 10, + "rebootRequired": true, + "decimalPlaces": 1, + "minValue": 0.1, + "maxValue": 3.40282e+38 }, { - "name": "LED_RGB_MAXBRT", - "type": "Int32", - "group": "System", + "name": "EKF2_REQ_HDRIFT", + "type": "Float", + "group": "EKF2", "category": "Standard", - "shortDesc": "RGB Led brightness limit", - "longDesc": "Set to 0 to disable, 1 for minimum brightness up to 15 (max)", - "default": 15, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 15 + "shortDesc": "Maximum horizontal drift speed to use GPS", + "units": "m/s", + "default": 0.1, + "decimalPlaces": 2, + "minValue": 0.1, + "maxValue": 1 }, { - "name": "LIGHT_EN_BLINKM", + "name": "EKF2_REQ_NSATS", "type": "Int32", - "group": "Peripheral", + "group": "EKF2", "category": "Standard", - "shortDesc": "BlinkM LED", - "default": 0, - "rebootRequired": true, + "shortDesc": "Required satellite count to use GPS", + "default": 6, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 4, + "maxValue": 12 }, { - "name": "LNDFW_AIRSPD_MAX", + "name": "EKF2_REQ_PDOP", "type": "Float", - "group": "Land Detector", + "group": "EKF2", "category": "Standard", - "shortDesc": "Airspeed max", - "longDesc": "Maximum airspeed allowed in the landed state (m/s)", - "units": "m/s", - "default": 8, + "shortDesc": "Required PDOP to use GPS", + "default": 2.5, "decimalPlaces": 1, - "minValue": 4, - "maxValue": 20 + "minValue": 1.5, + "maxValue": 5 }, { - "name": "LNDFW_VEL_XY_MAX", + "name": "EKF2_REQ_SACC", "type": "Float", - "group": "Land Detector", + "group": "EKF2", "category": "Standard", - "shortDesc": "Fixedwing max horizontal velocity", - "longDesc": "Maximum horizontal velocity allowed in the landed state (m/s)", + "shortDesc": "Required speed accuracy to use GPS", "units": "m/s", - "default": 5, - "decimalPlaces": 1, + "default": 0.5, + "decimalPlaces": 2, "minValue": 0.5, - "maxValue": 10 + "maxValue": 5 }, { - "name": "LNDFW_VEL_Z_MAX", + "name": "EKF2_REQ_VDRIFT", "type": "Float", - "group": "Land Detector", + "group": "EKF2", "category": "Standard", - "shortDesc": "Fixedwing max climb rate", - "longDesc": "Maximum vertical velocity allowed in the landed state (m/s up and down)", + "shortDesc": "Maximum vertical drift speed to use GPS", "units": "m/s", - "default": 3, - "decimalPlaces": 1, + "default": 0.2, + "decimalPlaces": 2, "minValue": 0.1, - "maxValue": 20 + "maxValue": 1.5 }, { - "name": "LNDFW_XYACC_MAX", - "type": "Float", - "group": "Land Detector", + "name": "EKF2_RNG_AID", + "type": "Int32", + "group": "EKF2", "category": "Standard", - "shortDesc": "Fixedwing max horizontal acceleration", - "longDesc": "Maximum horizontal (x,y body axes) acceleration allowed in the landed state (m/s^2)", - "units": "m/s^2", - "default": 8, - "decimalPlaces": 1, - "minValue": 2, - "maxValue": 15 + "shortDesc": "Range sensor aid", + "longDesc": "If this parameter is enabled then the estimator will make use of the range finder measurements to estimate it's height even if range sensor is not the primary height source. It will only do so if conditions for range measurement fusion are met. This enables the range finder to be used during low speed and low altitude operation, eg takeoff and landing, where baro interference from rotor wash is excessive and can corrupt EKF state estimates. It is intended to be used where a vertical takeoff and landing is performed, and horizontal flight does not occur until above EKF2_RNG_A_HMAX. If vehicle motion causes repeated switching between the primary height sensor and range finder, an offset in the local position origin can accumulate. Also range finder measurements are less reliable and can experience unexpected errors. For these reasons, if accurate control of height relative to ground is required, it is recommended to use the MPC_ALT_MODE parameter instead, unless baro errors are severe enough to cause problems with landing and takeoff.", + "default": 0, + "values": [ + { + "value": 0, + "description": "Range aid disabled" + }, + { + "value": 1, + "description": "Range aid enabled" + } + ], + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "LNDMC_ALT_MAX", + "name": "EKF2_RNG_A_HMAX", "type": "Float", - "group": "Land Detector", + "group": "EKF2", "category": "Standard", - "shortDesc": "Maximum altitude for multicopters", - "longDesc": "The system will obey this limit as a hard altitude limit. This setting will be consolidated with the GF_MAX_VER_DIST parameter. A negative value indicates no altitude limitation.", + "shortDesc": "Maximum absolute altitude (height above ground level) allowed for range aid mode", + "longDesc": "If the vehicle absolute altitude exceeds this value then the estimator will not fuse range measurements to estimate it's height. This only applies when range aid mode is activated (EKF2_RNG_AID = enabled).", "units": "m", - "default": -1, - "decimalPlaces": 2, - "minValue": -1, - "maxValue": 10000 + "default": 5, + "decimalPlaces": 3, + "minValue": 1, + "maxValue": 10 }, { - "name": "LNDMC_FFALL_THR", + "name": "EKF2_RNG_A_IGATE", "type": "Float", - "group": "Land Detector", + "group": "EKF2", "category": "Standard", - "shortDesc": "Multicopter specific force threshold", - "longDesc": "Multicopter threshold on the specific force measured by accelerometers in m/s^2 for free-fall detection", - "units": "m/s^2", - "default": 2, - "decimalPlaces": 2, + "shortDesc": "Gate size used for innovation consistency checks for range aid fusion", + "longDesc": "A lower value means HAGL needs to be more stable in order to use range finder for height estimation in range aid mode", + "units": "SD", + "default": 1, + "decimalPlaces": 3, "minValue": 0.1, - "maxValue": 10 + "maxValue": 5 }, { - "name": "LNDMC_FFALL_TTRI", + "name": "EKF2_RNG_A_VMAX", "type": "Float", - "group": "Land Detector", + "group": "EKF2", "category": "Standard", - "shortDesc": "Multicopter free-fall trigger time", - "longDesc": "Seconds (decimal) that freefall conditions have to met before triggering a freefall. Minimal value is limited by LAND_DETECTOR_UPDATE_RATE=50Hz in landDetector.h", - "units": "s", - "default": 0.3, - "decimalPlaces": 2, - "minValue": 0.02, - "maxValue": 5 + "shortDesc": "Maximum horizontal velocity allowed for range aid mode", + "longDesc": "If the vehicle horizontal speed exceeds this value then the estimator will not fuse range measurements to estimate it's height. This only applies when range aid mode is activated (EKF2_RNG_AID = enabled).", + "units": "m/s", + "default": 1, + "decimalPlaces": 3, + "minValue": 0.1, + "maxValue": 2 }, { - "name": "LNDMC_LOW_T_THR", + "name": "EKF2_RNG_DELAY", "type": "Float", - "group": "Land Detector", + "group": "EKF2", "category": "Standard", - "shortDesc": "Low throttle detection threshold", - "longDesc": "Defines the commanded throttle value below which the land detector considers the vehicle to have \"low thrust\". This is one condition that is used to detect the ground contact state. The value is calculated as val = (MPC_THR_HOVER - MPC_THR_MIN) * LNDMC_LOW_T_THR + MPC_THR_MIN Increase this value if the system takes long time to detect landing.", - "units": "norm", - "default": 0.3, - "decimalPlaces": 2, - "minValue": 0.1, - "maxValue": 0.9 + "shortDesc": "Range finder measurement delay relative to IMU measurements", + "units": "ms", + "default": 5, + "rebootRequired": true, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 300 }, { - "name": "LNDMC_ROT_MAX", + "name": "EKF2_RNG_GATE", "type": "Float", - "group": "Land Detector", + "group": "EKF2", "category": "Standard", - "shortDesc": "Multicopter max rotation", - "longDesc": "Maximum allowed angular velocity around each axis allowed in the landed state.", - "units": "deg/s", - "default": 20, + "shortDesc": "Gate size for range finder fusion", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "SD", + "default": 5, "decimalPlaces": 1, - "minValue": -3.40282e+38, + "minValue": 1, "maxValue": 3.40282e+38 }, { - "name": "LNDMC_XY_VEL_MAX", + "name": "EKF2_RNG_NOISE", "type": "Float", - "group": "Land Detector", + "group": "EKF2", "category": "Standard", - "shortDesc": "Multicopter max horizontal velocity", - "longDesc": "Maximum horizontal velocity allowed in the landed state (m/s)", - "units": "m/s", - "default": 1.5, - "decimalPlaces": 1, - "minValue": -3.40282e+38, + "shortDesc": "Measurement noise for range finder fusion", + "units": "m", + "default": 0.1, + "decimalPlaces": 2, + "minValue": 0.01, "maxValue": 3.40282e+38 }, { - "name": "LNDMC_Z_VEL_MAX", + "name": "EKF2_RNG_PITCH", "type": "Float", - "group": "Land Detector", + "group": "EKF2", "category": "Standard", - "shortDesc": "Multicopter max climb rate", - "longDesc": "Maximum vertical velocity allowed in the landed state (m/s up and down)", - "units": "m/s", - "default": 0.5, - "decimalPlaces": 1, + "shortDesc": "Range sensor pitch offset", + "units": "rad", + "default": 0, + "decimalPlaces": 3, + "minValue": -0.75, + "maxValue": 0.75 + }, + { + "name": "EKF2_RNG_POS_X", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "X position of range finder origin in body frame (forward axis with origin relative to vehicle centre of gravity)", + "units": "m", + "default": 0, + "decimalPlaces": 3, "minValue": -3.40282e+38, "maxValue": 3.40282e+38 }, { - "name": "LND_FLIGHT_T_HI", - "type": "Int32", - "group": "Land Detector", - "category": "System", - "shortDesc": "Total flight time in microseconds", - "longDesc": "Total flight time of this autopilot. Higher 32 bits of the value. Flight time in microseconds = (LND_FLIGHT_T_HI << 32) | LND_FLIGHT_T_LO.", + "name": "EKF2_RNG_POS_Y", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Y position of range finder origin in body frame (right axis with origin relative to vehicle centre of gravity)", + "units": "m", "default": 0, - "volatile": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 2.14748e+09 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "LND_FLIGHT_T_LO", - "type": "Int32", - "group": "Land Detector", - "category": "System", - "shortDesc": "Total flight time in microseconds", - "longDesc": "Total flight time of this autopilot. Lower 32 bits of the value. Flight time in microseconds = (LND_FLIGHT_T_HI << 32) | LND_FLIGHT_T_LO.", + "name": "EKF2_RNG_POS_Z", + "type": "Float", + "group": "EKF2", + "category": "Standard", + "shortDesc": "Z position of range finder origin in body frame (down axis with origin relative to vehicle centre of gravity)", + "units": "m", "default": 0, - "volatile": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 2.14748e+09 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "LPE_ACC_XY", + "name": "EKF2_RNG_SFE", "type": "Float", - "group": "Local Position Estimator", + "group": "EKF2", "category": "Standard", - "shortDesc": "Accelerometer xy noise density", - "longDesc": "Data sheet noise density = 150ug/sqrt(Hz) = 0.0015 m/s^2/sqrt(Hz) Larger than data sheet to account for tilt error.", - "units": "m/s^2/sqrt(Hz)", - "default": 0.012, - "decimalPlaces": 4, - "minValue": 1e-05, - "maxValue": 2 + "shortDesc": "Range finder range dependant noise scaler", + "longDesc": "Specifies the increase in range finder noise with range.", + "units": "m/m", + "default": 0.05, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 0.2 }, { - "name": "LPE_ACC_Z", + "name": "EKF2_TAS_GATE", "type": "Float", - "group": "Local Position Estimator", + "group": "EKF2", "category": "Standard", - "shortDesc": "Accelerometer z noise density", - "longDesc": "Data sheet noise density = 150ug/sqrt(Hz) = 0.0015 m/s^2/sqrt(Hz)", - "units": "m/s^2/sqrt(Hz)", - "default": 0.02, - "decimalPlaces": 4, - "minValue": 1e-05, - "maxValue": 2 + "shortDesc": "Gate size for TAS fusion", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "SD", + "default": 3, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 3.40282e+38 }, { - "name": "LPE_BAR_Z", + "name": "EKF2_TAU_POS", "type": "Float", - "group": "Local Position Estimator", + "group": "EKF2", "category": "Standard", - "shortDesc": "Barometric presssure altitude z standard deviation", - "units": "m", - "default": 3, + "shortDesc": "Time constant of the position output prediction and smoothing filter. Controls how tightly the output track the EKF states", + "units": "s", + "default": 0.25, "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 100 + "minValue": 0.1, + "maxValue": 1 }, { - "name": "LPE_EPH_MAX", + "name": "EKF2_TAU_VEL", "type": "Float", - "group": "Local Position Estimator", + "group": "EKF2", "category": "Standard", - "shortDesc": "Max EPH allowed for GPS initialization", - "units": "m", - "default": 3, - "decimalPlaces": 3, - "minValue": 1, - "maxValue": 5 + "shortDesc": "Time constant of the velocity output prediction and smoothing filter", + "units": "s", + "default": 0.25, + "decimalPlaces": 2, + "minValue": -3.40282e+38, + "maxValue": 1 }, { - "name": "LPE_EPV_MAX", + "name": "EKF2_TERR_GRAD", "type": "Float", - "group": "Local Position Estimator", + "group": "EKF2", "category": "Standard", - "shortDesc": "Max EPV allowed for GPS initialization", - "units": "m", - "default": 5, - "decimalPlaces": 3, - "minValue": 1, - "maxValue": 5 + "shortDesc": "Magnitude of terrain gradient", + "units": "m/m", + "default": 0.5, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "LPE_FAKE_ORIGIN", + "name": "EKF2_TERR_MASK", "type": "Int32", - "group": "Local Position Estimator", + "group": "EKF2", "category": "Standard", - "shortDesc": "Enable publishing of a fake global position (e.g for AUTO missions using Optical Flow) by initializing the estimator to the LPE_LAT/LON parameters when global information is unavailable", - "default": 0, + "shortDesc": "Integer bitmask controlling fusion sources of the terrain estimator", + "longDesc": "Set bits in the following positions to enable: 0 : Set to true to use range finder data if available 1 : Set to true to use optical flow data if available", + "default": 3, "decimalPlaces": 3, "minValue": 0, - "maxValue": 1 + "maxValue": 3 }, { - "name": "LPE_FGYRO_HP", + "name": "EKF2_TERR_NOISE", "type": "Float", - "group": "Local Position Estimator", + "group": "EKF2", "category": "Standard", - "shortDesc": "Flow gyro high pass filter cut off frequency", - "units": "Hz", - "default": 0.001, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 2 + "shortDesc": "Terrain altitude process noise - accounts for instability in vehicle height estimate", + "units": "m/s", + "default": 5, + "decimalPlaces": 1, + "minValue": 0.5, + "maxValue": 3.40282e+38 }, { - "name": "LPE_FLW_OFF_Z", + "name": "EKF2_WIND_NOISE", "type": "Float", - "group": "Local Position Estimator", + "group": "EKF2", "category": "Standard", - "shortDesc": "Optical flow z offset from center", - "units": "m", - "default": 0, + "shortDesc": "Process noise for wind velocity prediction", + "units": "m/s/s", + "default": 0.1, "decimalPlaces": 3, - "minValue": -1, + "minValue": 0, "maxValue": 1 }, { - "name": "LPE_FLW_QMIN", + "name": "EV_TSK_RC_LOSS", "type": "Int32", - "group": "Local Position Estimator", - "category": "Standard", - "shortDesc": "Optical flow minimum quality threshold", - "default": 150, - "decimalPlaces": 0, - "minValue": 0, - "maxValue": 255 - }, - { - "name": "LPE_FLW_R", - "type": "Float", - "group": "Local Position Estimator", + "group": "Events", "category": "Standard", - "shortDesc": "Optical flow rotation (roll/pitch) noise gain", - "units": "m/s / (rad)", - "default": 7, + "shortDesc": "RC Loss Alarm", + "longDesc": "Enable/disable event task for RC Loss. When enabled, an alarm tune will be played via buzzer or ESCs, if supported. The alarm will sound after a disarm, if the vehicle was previously armed and only if the vehicle had RC signal at some point. Particularly useful for locating crashed drones without a GPS sensor.", + "default": 0, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0.1, - "maxValue": 10 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "LPE_FLW_RR", - "type": "Float", - "group": "Local Position Estimator", + "name": "EV_TSK_STAT_DIS", + "type": "Int32", + "group": "Events", "category": "Standard", - "shortDesc": "Optical flow angular velocity noise gain", - "units": "m/s / (rad/s)", - "default": 7, + "shortDesc": "Status Display", + "longDesc": "Enable/disable event task for displaying the vehicle status using arm-mounted LEDs. When enabled and if the vehicle supports it, LEDs will flash indicating various vehicle status changes. Currently PX4 has not implemented any specific status events. -", + "default": 0, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 10 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "LPE_FLW_SCALE", + "name": "EXFW_HDNG_P", "type": "Float", - "group": "Local Position Estimator", + "group": "Miscellaneous", "category": "Standard", - "shortDesc": "Optical flow scale", - "units": "m", - "default": 1.3, + "shortDesc": "EXFW_HDNG_P", + "default": 0.1, "decimalPlaces": 3, - "minValue": 0.1, - "maxValue": 10 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "LPE_FUSION", - "type": "Int32", - "group": "Local Position Estimator", + "name": "EXFW_PITCH_P", + "type": "Float", + "group": "Miscellaneous", "category": "Standard", - "shortDesc": "Integer bitmask controlling data fusion", - "longDesc": "Set bits in the following positions to enable: 0 : Set to true to fuse GPS data if available, also requires GPS for altitude init 1 : Set to true to fuse optical flow data if available 2 : Set to true to fuse vision position 3 : Set to true to enable landing target 4 : Set to true to fuse land detector 5 : Set to true to publish AGL as local position down component 6 : Set to true to enable flow gyro compensation 7 : Set to true to enable baro fusion default (145 - GPS, baro, land detector)", - "default": 145, + "shortDesc": "EXFW_PITCH_P", + "default": 0.2, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 255 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "LPE_GPS_DELAY", + "name": "EXFW_ROLL_P", "type": "Float", - "group": "Local Position Estimator", + "group": "Miscellaneous", "category": "Standard", - "shortDesc": "GPS delay compensaton", - "units": "sec", - "default": 0.29, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 0.4 + "shortDesc": "EXFW_ROLL_P", + "default": 0.2, + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "LPE_GPS_VXY", - "type": "Float", - "group": "Local Position Estimator", + "name": "FD_ESCS_EN", + "type": "Int32", + "group": "Failure Detector", "category": "Standard", - "shortDesc": "GPS xy velocity standard deviation. EPV used if greater than this value", - "units": "m/s", - "default": 0.25, + "shortDesc": "Enable checks on ESCs that report their arming state. If enabled, failure detector will verify that all the ESCs have successfully armed when the vehicle has transitioned to the armed state. Timeout for receiving an acknowledgement from the ESCs is 0.3s, if no feedback is received the failure detector will auto disarm the vehicle", + "default": 1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 2 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "LPE_GPS_VZ", - "type": "Float", - "group": "Local Position Estimator", + "name": "FD_EXT_ATS_EN", + "type": "Int32", + "group": "Failure Detector", "category": "Standard", - "shortDesc": "GPS z velocity standard deviation", - "units": "m/s", - "default": 0.25, + "shortDesc": "Enable PWM input on AUX5 or MAIN5 (depending on board) for engaging failsafe from an external automatic trigger system (ATS)", + "longDesc": "External ATS is required by ASTM F3322-18.", + "default": 0, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 2 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "LPE_GPS_XY", - "type": "Float", - "group": "Local Position Estimator", + "name": "FD_EXT_ATS_TRIG", + "type": "Int32", + "group": "Failure Detector", "category": "Standard", - "shortDesc": "Minimum GPS xy standard deviation, uses reported EPH if greater", - "units": "m", - "default": 1, + "shortDesc": "The PWM threshold from external automatic trigger system for engaging failsafe", + "longDesc": "External ATS is required by ASTM F3322-18.", + "units": "microseconds", + "default": 1900, "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 5 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "LPE_GPS_Z", - "type": "Float", - "group": "Local Position Estimator", + "name": "FD_FAIL_P", + "type": "Int32", + "group": "Failure Detector", "category": "Standard", - "shortDesc": "Minimum GPS z standard deviation, uses reported EPV if greater", - "units": "m", - "default": 3, - "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 200 + "shortDesc": "FailureDetector Max Pitch", + "longDesc": "Maximum pitch angle before FailureDetector triggers the attitude_failure flag. The flag triggers flight termination (if @CBRK_FLIGHTTERM = 0), which sets outputs to their failsafe values. On takeoff the flag triggers lockdown (irrespective of @CBRK_FLIGHTTERM), which disarms motors but does not set outputs to failsafe values. Setting this parameter to 0 disables the check", + "units": "degrees", + "default": 60, + "decimalPlaces": 3, + "minValue": 60, + "maxValue": 180 }, { - "name": "LPE_LAND_VXY", + "name": "FD_FAIL_P_TTRI", "type": "Float", - "group": "Local Position Estimator", + "group": "Failure Detector", "category": "Standard", - "shortDesc": "Land detector xy velocity standard deviation", - "units": "m/s", - "default": 0.05, - "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 10 + "shortDesc": "Pitch failure trigger time", + "longDesc": "Seconds (decimal) that pitch has to exceed FD_FAIL_P before being considered as a failure.", + "units": "s", + "default": 0.3, + "decimalPlaces": 2, + "minValue": 0.02, + "maxValue": 5 }, { - "name": "LPE_LAND_Z", - "type": "Float", - "group": "Local Position Estimator", + "name": "FD_FAIL_R", + "type": "Int32", + "group": "Failure Detector", "category": "Standard", - "shortDesc": "Land detector z standard deviation", - "units": "m", - "default": 0.03, + "shortDesc": "FailureDetector Max Roll", + "longDesc": "Maximum roll angle before FailureDetector triggers the attitude_failure flag. The flag triggers flight termination (if @CBRK_FLIGHTTERM = 0), which sets outputs to their failsafe values. On takeoff the flag triggers lockdown (irrespective of @CBRK_FLIGHTTERM), which disarms motors but does not set outputs to failsafe values. Setting this parameter to 0 disables the check", + "units": "degrees", + "default": 60, "decimalPlaces": 3, - "minValue": 0.001, - "maxValue": 10 + "minValue": 60, + "maxValue": 180 }, { - "name": "LPE_LAT", + "name": "FD_FAIL_R_TTRI", "type": "Float", - "group": "Local Position Estimator", + "group": "Failure Detector", "category": "Standard", - "shortDesc": "Local origin latitude for nav w/o GPS", - "units": "deg", - "default": 47.3977, - "decimalPlaces": 8, - "minValue": -90, - "maxValue": 90 + "shortDesc": "Roll failure trigger time", + "longDesc": "Seconds (decimal) that roll has to exceed FD_FAIL_R before being considered as a failure.", + "units": "s", + "default": 0.3, + "decimalPlaces": 2, + "minValue": 0.02, + "maxValue": 5 }, { - "name": "LPE_LDR_OFF_Z", + "name": "FW_ACRO_X_MAX", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Lidar z offset from center of vehicle +down", - "units": "m", - "default": 0, + "shortDesc": "Acro body x max rate", + "longDesc": "This is the rate the controller is trying to achieve if the user applies full roll stick input in acro mode.", + "units": "degrees", + "default": 90, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 + "minValue": 45, + "maxValue": 720 }, { - "name": "LPE_LDR_Z", + "name": "FW_ACRO_Y_MAX", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Lidar z standard deviation", - "units": "m", - "default": 0.03, + "shortDesc": "Acro body y max rate", + "longDesc": "This is the body y rate the controller is trying to achieve if the user applies full pitch stick input in acro mode.", + "units": "degrees", + "default": 90, "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 1 + "minValue": 45, + "maxValue": 720 }, { - "name": "LPE_LON", + "name": "FW_ACRO_Z_MAX", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Local origin longitude for nav w/o GPS", - "units": "deg", - "default": 8.54559, - "decimalPlaces": 8, - "minValue": -180, + "shortDesc": "Acro body z max rate", + "longDesc": "This is the body z rate the controller is trying to achieve if the user applies full yaw stick input in acro mode.", + "units": "degrees", + "default": 45, + "decimalPlaces": 3, + "minValue": 10, "maxValue": 180 }, { - "name": "LPE_LT_COV", + "name": "FW_AIRSPD_MAX", "type": "Float", - "group": "Local Position Estimator", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Minimum landing target standard covariance, uses reported covariance if greater", - "units": "m^2", - "default": 0.0001, - "decimalPlaces": 2, + "shortDesc": "Maximum Airspeed", + "longDesc": "If the airspeed is above this value, the TECS controller will try to decrease airspeed more aggressively.", + "units": "m/s", + "default": 20, + "increment": 0.5, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 10 + "maxValue": 40 }, { - "name": "LPE_PN_B", + "name": "FW_AIRSPD_MIN", "type": "Float", - "group": "Local Position Estimator", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Accel bias propagation noise density", - "units": "(m/s^2)/s/sqrt(Hz)", - "default": 0.001, - "decimalPlaces": 8, + "shortDesc": "Minimum Airspeed", + "longDesc": "If the airspeed falls below this value, the TECS controller will try to increase airspeed more aggressively.", + "units": "m/s", + "default": 10, + "increment": 0.5, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 1 + "maxValue": 40 }, { - "name": "LPE_PN_P", + "name": "FW_AIRSPD_TRIM", "type": "Float", - "group": "Local Position Estimator", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Position propagation noise density", - "longDesc": "Increase to trust measurements more. Decrease to trust model more.", - "units": "m/s/sqrt(Hz)", - "default": 0.1, - "decimalPlaces": 8, + "shortDesc": "Cruise Airspeed", + "longDesc": "The fixed wing controller tries to fly at this airspeed.", + "units": "m/s", + "default": 15, + "increment": 0.5, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 1 + "maxValue": 40 }, { - "name": "LPE_PN_T", - "type": "Float", - "group": "Local Position Estimator", + "name": "FW_ARSP_MODE", + "type": "Int32", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Terrain random walk noise density, hilly/outdoor (0.1), flat/Indoor (0.001)", - "units": "(m/s)/(sqrt(hz))", - "default": 0.001, + "shortDesc": "Airspeed mode", + "longDesc": "For small wings or VTOL without airspeed sensor this parameter can be used to enable flying without an airspeed reading", + "default": 0, + "values": [ + { + "value": 0, + "description": "Normal (use airspeed if available)" + }, + { + "value": 1, + "description": "Airspeed disabled" + } + ], "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "LPE_PN_V", - "type": "Float", - "group": "Local Position Estimator", + "name": "FW_ARSP_SCALE_EN", + "type": "Int32", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Velocity propagation noise density", - "longDesc": "Increase to trust measurements more. Decrease to trust model more.", - "units": "(m/s)/s/sqrt(Hz)", - "default": 0.1, - "decimalPlaces": 8, - "minValue": 0, - "maxValue": 1 + "shortDesc": "Enable airspeed scaling", + "longDesc": "This enables a logic that automatically adjusts the output of the rate controller to take into account the real torque produced by an aerodynamic control surface given the current deviation from the trim airspeed (FW_AIRSPD_TRIM). Enable when using aerodynamic control surfaces (e.g.: plane) Disable when using rotor wings (e.g.: autogyro)", + "default": 1, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "FW_BAT_SCALE_EN", + "type": "Int32", + "group": "FW Attitude Control", + "category": "Standard", + "shortDesc": "Whether to scale throttle by battery power level", + "longDesc": "This compensates for voltage drop of the battery over time by attempting to normalize performance across the operating range of the battery. The fixed wing should constantly behave as if it was fully charged with reduced max thrust at lower battery percentages. i.e. if cruise speed is at 0.5 throttle at 100% battery, it will still be 0.5 at 60% battery.", + "default": 0, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "LPE_SNR_OFF_Z", + "name": "FW_CLMBOUT_DIFF", "type": "Float", - "group": "Local Position Estimator", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Sonar z offset from center of vehicle +down", + "shortDesc": "Climbout Altitude difference", + "longDesc": "If the altitude error exceeds this parameter, the system will climb out with maximum throttle and minimum airspeed until it is closer than this distance to the desired altitude. Mostly used for takeoff waypoints / modes. Set to 0 to disable climbout mode (not recommended).", "units": "m", - "default": 0, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 + "default": 10, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 150 }, { - "name": "LPE_SNR_Z", + "name": "FW_DTRIM_P_FLPS", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Sonar z standard deviation", - "units": "m", - "default": 0.05, - "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 1 + "shortDesc": "Pitch trim increment for flaps configuration", + "longDesc": "This increment is added to the pitch trim whenever flaps are fully deployed.", + "default": 0, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": -0.25, + "maxValue": 0.25 }, { - "name": "LPE_T_MAX_GRADE", + "name": "FW_DTRIM_P_VMAX", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Terrain maximum percent grade, hilly/outdoor (100 = 45 deg), flat/Indoor (0 = 0 deg) Used to calculate increased terrain random walk nosie due to movement", - "units": "%", - "default": 1, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "shortDesc": "Pitch trim increment at maximum airspeed", + "longDesc": "This increment is added to TRIM_PITCH when airspeed is FW_AIRSPD_MAX.", + "default": 0, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": -0.25, + "maxValue": 0.25 }, { - "name": "LPE_VIC_P", + "name": "FW_DTRIM_P_VMIN", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Vicon position standard deviation", - "units": "m", - "default": 0.001, - "decimalPlaces": 4, - "minValue": 0.0001, - "maxValue": 1 + "shortDesc": "Pitch trim increment at minimum airspeed", + "longDesc": "This increment is added to TRIM_PITCH when airspeed is FW_AIRSPD_MIN.", + "default": 0, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": -0.25, + "maxValue": 0.25 }, { - "name": "LPE_VIS_DELAY", + "name": "FW_DTRIM_R_FLPS", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Vision delay compensaton", - "longDesc": "Set to zero to enable automatic compensation from measurement timestamps", - "units": "sec", - "default": 0.1, + "shortDesc": "Roll trim increment for flaps configuration", + "longDesc": "This increment is added to TRIM_ROLL whenever flaps are fully deployed.", + "default": 0, + "increment": 0.01, "decimalPlaces": 2, - "minValue": 0, - "maxValue": 0.1 + "minValue": -0.25, + "maxValue": 0.25 }, { - "name": "LPE_VIS_XY", + "name": "FW_DTRIM_R_VMAX", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Vision xy standard deviation", - "units": "m", - "default": 0.1, - "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 1 + "shortDesc": "Roll trim increment at maximum airspeed", + "longDesc": "This increment is added to TRIM_ROLL when airspeed is FW_AIRSPD_MAX.", + "default": 0, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": -0.25, + "maxValue": 0.25 }, { - "name": "LPE_VIS_Z", + "name": "FW_DTRIM_R_VMIN", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Vision z standard deviation", - "units": "m", - "default": 0.5, - "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 100 + "shortDesc": "Roll trim increment at minimum airspeed", + "longDesc": "This increment is added to TRIM_ROLL when airspeed is FW_AIRSPD_MIN.", + "default": 0, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": -0.25, + "maxValue": 0.25 }, { - "name": "LPE_VXY_PUB", + "name": "FW_DTRIM_Y_VMAX", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Required velocity xy standard deviation to publish position", - "units": "m/s", - "default": 0.3, - "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 1 + "shortDesc": "Yaw trim increment at maximum airspeed", + "longDesc": "This increment is added to TRIM_YAW when airspeed is FW_AIRSPD_MAX.", + "default": 0, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": -0.25, + "maxValue": 0.25 }, { - "name": "LPE_X_LP", + "name": "FW_DTRIM_Y_VMIN", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Cut frequency for state publication", - "units": "Hz", - "default": 5, - "decimalPlaces": 0, - "minValue": 5, - "maxValue": 1000 + "shortDesc": "Yaw trim increment at minimum airspeed", + "longDesc": "This increment is added to TRIM_YAW when airspeed is FW_AIRSPD_MIN.", + "default": 0, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": -0.25, + "maxValue": 0.25 }, { - "name": "LPE_Z_PUB", + "name": "FW_FLAPERON_SCL", "type": "Float", - "group": "Local Position Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Required z standard deviation to publish altitude/ terrain", - "units": "m", - "default": 1, - "decimalPlaces": 1, - "minValue": 0.3, - "maxValue": 5 + "shortDesc": "Scale factor for flaperons", + "units": "norm", + "default": 0, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "LTEST_ACC_UNC", + "name": "FW_FLAPS_LND_SCL", "type": "Float", - "group": "Landing target Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Acceleration uncertainty", - "longDesc": "Variance of acceleration measurement used for landing target position prediction. Higher values results in tighter following of the measurements and more lenient outlier rejection", - "units": "(m/s^2)^2", - "default": 10, + "shortDesc": "Flaps setting during landing", + "longDesc": "Sets a fraction of full flaps (FW_FLAPS_SCL) during landing", + "units": "norm", + "default": 1, + "increment": 0.01, "decimalPlaces": 2, - "minValue": 0.01, - "maxValue": 3.40282e+38 + "minValue": 0, + "maxValue": 1 }, { - "name": "LTEST_MEAS_UNC", + "name": "FW_FLAPS_SCL", "type": "Float", - "group": "Landing target Estimator", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Landing target measurement uncertainty", - "longDesc": "Variance of the landing target measurement from the driver. Higher values results in less agressive following of the measurement and a smoother output as well as fewer rejected measurements.", - "units": "tan(rad)^2", - "default": 0.005, - "decimalPlaces": 4, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "shortDesc": "Scale factor for flaps", + "units": "norm", + "default": 1, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "LTEST_MODE", - "type": "Int32", - "group": "Landing target Estimator", + "name": "FW_FLAPS_TO_SCL", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Landing target mode", - "longDesc": "Configure the mode of the landing target. Depending on the mode, the landing target observations are used differently to aid position estimation. Mode Moving: The landing target may be moving around while in the field of view of the vehicle. Landing target measurements are not used to aid positioning. Mode Stationary: The landing target is stationary. Measured velocity w.r.t. the landing target is used to aid velocity estimation.", + "shortDesc": "Flaps setting during take-off", + "longDesc": "Sets a fraction of full flaps (FW_FLAPS_SCL) during take-off", + "units": "norm", "default": 0, - "values": [ - { - "value": 0, - "description": "Moving" - }, - { - "value": 1, - "description": "Stationary" - } - ], - "decimalPlaces": 3, + "increment": 0.01, + "decimalPlaces": 2, "minValue": 0, "maxValue": 1 }, { - "name": "LTEST_POS_UNC_IN", + "name": "FW_GND_SPD_MIN", "type": "Float", - "group": "Landing target Estimator", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Initial landing target position uncertainty", - "longDesc": "Initial variance of the relative landing target position in x and y direction", - "units": "m^2", - "default": 0.1, - "decimalPlaces": 3, - "minValue": 0.001, - "maxValue": 3.40282e+38 + "shortDesc": "Minimum groundspeed", + "longDesc": "The controller will increase the commanded airspeed to maintain this minimum groundspeed to the next waypoint.", + "units": "m/s", + "default": 5, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 40 }, { - "name": "LTEST_SCALE_X", + "name": "FW_L1_DAMPING", "type": "Float", - "group": "Landing target Estimator", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Scale factor for sensor measurements in sensor x axis", - "longDesc": "Landing target x measurements are scaled by this factor before being used", - "default": 1, - "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 3.40282e+38 + "shortDesc": "L1 damping", + "longDesc": "Damping factor for L1 control.", + "default": 0.75, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0.6, + "maxValue": 0.9 }, { - "name": "LTEST_SCALE_Y", + "name": "FW_L1_PERIOD", "type": "Float", - "group": "Landing target Estimator", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Scale factor for sensor measurements in sensor y axis", - "longDesc": "Landing target y measurements are scaled by this factor before being used", - "default": 1, - "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 3.40282e+38 + "shortDesc": "L1 period", + "longDesc": "This is the L1 distance and defines the tracking point ahead of the aircraft its following. A value of 18-25 meters works for most aircraft. Shorten slowly during tuning until response is sharp without oscillation.", + "units": "m", + "default": 20, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 12, + "maxValue": 50 }, { - "name": "LTEST_VEL_UNC_IN", + "name": "FW_L1_R_SLEW_MAX", "type": "Float", - "group": "Landing target Estimator", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Initial landing target velocity uncertainty", - "longDesc": "Initial variance of the relative landing target velocity in x and y direction", - "units": "(m/s)^2", - "default": 0.1, - "decimalPlaces": 3, - "minValue": 0.001, + "shortDesc": "L1 controller roll slew rate limit", + "longDesc": "The maxium change in roll angle setpoint per second.", + "units": "deg/s", + "default": 90, + "increment": 1, + "decimalPlaces": 0, + "minValue": 0, "maxValue": 3.40282e+38 }, { - "name": "MAV_0_CONFIG", - "type": "Int32", - "group": "MAVLink", + "name": "FW_LND_AIRSPD_SC", + "type": "Float", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Serial Configuration for MAVLink (instance 0)", - "longDesc": "Configure on which serial port to run MAVLink.", - "default": 101, - "values": [ - { - "value": 0, - "description": "Disabled" - }, - { - "value": 6, - "description": "UART 6" - }, - { - "value": 101, - "description": "TELEM 1" - }, - { - "value": 102, - "description": "TELEM 2" - }, - { - "value": 103, - "description": "TELEM 3" - }, - { - "value": 104, - "description": "TELEM/SERIAL 4" - }, - { - "value": 201, - "description": "GPS 1" - }, - { - "value": 202, - "description": "GPS 2" - }, - { - "value": 203, - "description": "GPS 3" - }, - { - "value": 300, - "description": "Radio Controller" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Min. airspeed scaling factor for landing", + "longDesc": "Multiplying this factor with the minimum airspeed of the plane gives the target airspeed the landing approach. FW_AIRSPD_MIN * FW_LND_AIRSPD_SC", + "units": "norm", + "default": 1.3, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 1, + "maxValue": 1.5 }, { - "name": "MAV_0_FORWARD", - "type": "Int32", - "group": "MAVLink", + "name": "FW_LND_ANG", + "type": "Float", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Enable MAVLink Message forwarding for instance 0", - "longDesc": "If enabled, forward incoming MAVLink messages to other MAVLink ports if the message is either broadcast or the target is not the autopilot. This allows for example a GCS to talk to a camera that is connected to the autopilot via MAVLink (on a different link than the GCS).", - "default": 1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Landing slope angle", + "units": "deg", + "default": 5, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 15 }, { - "name": "MAV_0_MODE", + "name": "FW_LND_EARLYCFG", "type": "Int32", - "group": "MAVLink", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "MAVLink Mode for instance 0", - "longDesc": "The MAVLink Mode defines the set of streamed messages (for example the vehicle's attitude) and their sending rates.", + "shortDesc": "Early landing configuration deployment", + "longDesc": "When disabled, the landing configuration (flaps, landing airspeed, etc.) is only activated on the final approach to landing. When enabled, it is already activated when entering the final loiter-down (loiter-to-alt) waypoint before the landing approach. This shifts the (often large) altitude and airspeed errors caused by the configuration change away from the ground such that these are not so critical. It also gives the controller enough time to adapt to the new configuration such that the landing approach starts with a cleaner initial state.", "default": 0, - "values": [ - { - "value": 0, - "description": "Normal" - }, - { - "value": 1, - "description": "Custom" - }, - { - "value": 2, - "description": "Onboard" - }, - { - "value": 3, - "description": "OSD" - }, - { - "value": 4, - "description": "Magic" - }, - { - "value": 5, - "description": "Config" - }, - { - "value": 7, - "description": "Minimal" - }, - { - "value": 8, - "description": "External Vision" - } - ], - "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "MAV_0_RADIO_CTL", - "type": "Int32", - "group": "MAVLink", + "name": "FW_LND_FLALT", + "type": "Float", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Enable software throttling of mavlink on instance 0", - "longDesc": "If enabled, MAVLink messages will be throttled according to `txbuf` field reported by radio_status. Requires a radio to send the mavlink message RADIO_STATUS.", - "default": 1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Landing flare altitude (relative to landing altitude)", + "units": "m", + "default": 3, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 25 }, { - "name": "MAV_0_RATE", - "type": "Int32", - "group": "MAVLink", + "name": "FW_LND_FL_PMAX", + "type": "Float", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Maximum MAVLink sending rate for instance 0", - "longDesc": "Configure the maximum sending rate for the MAVLink streams in Bytes/sec. If the configured streams exceed the maximum rate, the sending rate of each stream is automatically decreased. If this is set to 0 a value of half of the theoretical maximum bandwidth is used. This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on 8N1-configured links).", - "units": "B/s", - "default": 1200, - "rebootRequired": true, - "decimalPlaces": 3, + "shortDesc": "Flare, maximum pitch", + "longDesc": "Maximum pitch during flare, a positive sign means nose up Applied once FW_LND_FLALT is reached", + "units": "deg", + "default": 15, + "increment": 0.5, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 2.14748e+09 + "maxValue": 45 }, { - "name": "MAV_1_CONFIG", - "type": "Int32", - "group": "MAVLink", + "name": "FW_LND_FL_PMIN", + "type": "Float", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Serial Configuration for MAVLink (instance 1)", - "longDesc": "Configure on which serial port to run MAVLink.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Disabled" - }, - { - "value": 6, - "description": "UART 6" - }, - { - "value": 101, - "description": "TELEM 1" - }, - { - "value": 102, - "description": "TELEM 2" - }, - { - "value": 103, - "description": "TELEM 3" - }, - { - "value": 104, - "description": "TELEM/SERIAL 4" - }, - { - "value": 201, - "description": "GPS 1" - }, - { - "value": 202, - "description": "GPS 2" - }, - { - "value": 203, - "description": "GPS 3" - }, - { - "value": 300, - "description": "Radio Controller" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Flare, minimum pitch", + "longDesc": "Minimum pitch during flare, a positive sign means nose up Applied once FW_LND_FLALT is reached", + "units": "deg", + "default": 2.5, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 15 }, { - "name": "MAV_1_FORWARD", - "type": "Int32", - "group": "MAVLink", + "name": "FW_LND_HHDIST", + "type": "Float", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Enable MAVLink Message forwarding for instance 1", - "longDesc": "If enabled, forward incoming MAVLink messages to other MAVLink ports if the message is either broadcast or the target is not the autopilot. This allows for example a GCS to talk to a camera that is connected to the autopilot via MAVLink (on a different link than the GCS).", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Landing heading hold horizontal distance. Set to 0 to disable heading hold", + "units": "m", + "default": 15, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 30 }, { - "name": "MAV_1_MODE", - "type": "Int32", - "group": "MAVLink", + "name": "FW_LND_HVIRT", + "type": "Float", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "MAVLink Mode for instance 1", - "longDesc": "The MAVLink Mode defines the set of streamed messages (for example the vehicle's attitude) and their sending rates.", - "default": 2, - "values": [ - { - "value": 0, - "description": "Normal" - }, - { - "value": 1, - "description": "Custom" - }, - { - "value": 2, - "description": "Onboard" - }, - { - "value": 3, - "description": "OSD" - }, - { - "value": 4, - "description": "Magic" - }, - { - "value": 5, - "description": "Config" - }, - { - "value": 7, - "description": "Minimal" - }, - { - "value": 8, - "description": "External Vision" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "FW_LND_HVIRT", + "units": "m", + "default": 10, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 15 }, { - "name": "MAV_1_RADIO_CTL", - "type": "Int32", - "group": "MAVLink", + "name": "FW_LND_THRTC_SC", + "type": "Float", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Enable software throttling of mavlink on instance 1", - "longDesc": "If enabled, MAVLink messages will be throttled according to `txbuf` field reported by radio_status. Requires a radio to send the mavlink message RADIO_STATUS.", + "shortDesc": "Throttle time constant factor for landing", + "longDesc": "Set this parameter to less than 1.0 to make the TECS throttle loop react faster during landing than during normal flight (i.e. giving efficiency and low motor wear at high altitudes but control accuracy during landing). During landing, the TECS throttle time constant (FW_T_THRO_CONST) is multiplied by this value.", "default": 1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "increment": 0.1, + "decimalPlaces": 1, + "minValue": 0.2, + "maxValue": 1 }, { - "name": "MAV_1_RATE", - "type": "Int32", - "group": "MAVLink", + "name": "FW_LND_TLALT", + "type": "Float", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Maximum MAVLink sending rate for instance 1", - "longDesc": "Configure the maximum sending rate for the MAVLink streams in Bytes/sec. If the configured streams exceed the maximum rate, the sending rate of each stream is automatically decreased. If this is set to 0 a value of half of the theoretical maximum bandwidth is used. This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on 8N1-configured links).", - "units": "B/s", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 2.14748e+09 + "shortDesc": "Landing throttle limit altitude (relative landing altitude)", + "longDesc": "Default of -1.0 lets the system default to applying throttle limiting at 2/3 of the flare altitude.", + "units": "m", + "default": -1, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": -1, + "maxValue": 30 }, { - "name": "MAV_2_CONFIG", + "name": "FW_LND_USETER", "type": "Int32", - "group": "MAVLink", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Serial Configuration for MAVLink (instance 2)", - "longDesc": "Configure on which serial port to run MAVLink.", + "shortDesc": "Use terrain estimate during landing", + "longDesc": "This is turned off by default and a waypoint or return altitude is normally used (or sea level for an arbitrary land position).", "default": 0, - "values": [ - { - "value": 0, - "description": "Disabled" - }, - { - "value": 6, - "description": "UART 6" - }, - { - "value": 101, - "description": "TELEM 1" - }, - { - "value": 102, - "description": "TELEM 2" - }, - { - "value": 103, - "description": "TELEM 3" - }, - { - "value": 104, - "description": "TELEM/SERIAL 4" - }, - { - "value": 201, - "description": "GPS 1" - }, - { - "value": 202, - "description": "GPS 2" - }, - { - "value": 203, - "description": "GPS 3" - }, - { - "value": 300, - "description": "Radio Controller" - } - ], - "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "MAV_2_FORWARD", - "type": "Int32", - "group": "MAVLink", + "name": "FW_MAN_P_MAX", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Enable MAVLink Message forwarding for instance 2", - "longDesc": "If enabled, forward incoming MAVLink messages to other MAVLink ports if the message is either broadcast or the target is not the autopilot. This allows for example a GCS to talk to a camera that is connected to the autopilot via MAVLink (on a different link than the GCS).", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Max manual pitch", + "longDesc": "Max pitch for manual control in attitude stabilized mode", + "units": "deg", + "default": 45, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 90 }, { - "name": "MAV_2_MODE", - "type": "Int32", - "group": "MAVLink", + "name": "FW_MAN_P_SC", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "MAVLink Mode for instance 2", - "longDesc": "The MAVLink Mode defines the set of streamed messages (for example the vehicle's attitude) and their sending rates.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Normal" - }, - { - "value": 1, - "description": "Custom" - }, - { - "value": 2, - "description": "Onboard" - }, - { - "value": 3, - "description": "OSD" - }, - { - "value": 4, - "description": "Magic" - }, - { - "value": 5, - "description": "Config" - }, - { - "value": 7, - "description": "Minimal" - }, - { - "value": 8, - "description": "External Vision" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Manual pitch scale", + "longDesc": "Scale factor applied to the desired pitch actuator command in full manual mode. This parameter allows to adjust the throws of the control surfaces.", + "units": "norm", + "default": 1, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 3.40282e+38 + }, + { + "name": "FW_MAN_R_MAX", + "type": "Float", + "group": "FW Attitude Control", + "category": "Standard", + "shortDesc": "Max manual roll", + "longDesc": "Max roll for manual control in attitude stabilized mode", + "units": "deg", + "default": 45, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 90 + }, + { + "name": "FW_MAN_R_SC", + "type": "Float", + "group": "FW Attitude Control", + "category": "Standard", + "shortDesc": "Manual roll scale", + "longDesc": "Scale factor applied to the desired roll actuator command in full manual mode. This parameter allows to adjust the throws of the control surfaces.", + "units": "norm", + "default": 1, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "MAV_2_RADIO_CTL", - "type": "Int32", - "group": "MAVLink", + "name": "FW_MAN_Y_SC", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Enable software throttling of mavlink on instance 2", - "longDesc": "If enabled, MAVLink messages will be throttled according to `txbuf` field reported by radio_status. Requires a radio to send the mavlink message RADIO_STATUS.", + "shortDesc": "Manual yaw scale", + "longDesc": "Scale factor applied to the desired yaw actuator command in full manual mode. This parameter allows to adjust the throws of the control surfaces.", + "units": "norm", "default": 1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "MAV_2_RATE", - "type": "Int32", - "group": "MAVLink", + "name": "FW_PR_FF", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Maximum MAVLink sending rate for instance 2", - "longDesc": "Configure the maximum sending rate for the MAVLink streams in Bytes/sec. If the configured streams exceed the maximum rate, the sending rate of each stream is automatically decreased. If this is set to 0 a value of half of the theoretical maximum bandwidth is used. This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on 8N1-configured links).", - "units": "B/s", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, + "shortDesc": "Pitch rate feed forward", + "longDesc": "Direct feed forward from rate setpoint to control surface output", + "units": "%/rad/s", + "default": 0.5, + "increment": 0.05, + "decimalPlaces": 2, "minValue": 0, - "maxValue": 2.14748e+09 + "maxValue": 10 }, { - "name": "MAV_BROADCAST", - "type": "Int32", - "group": "MAVLink", + "name": "FW_PR_I", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Broadcast heartbeats on local network", - "longDesc": "This allows a ground control station to automatically find the drone on the local network.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Never broadcast" - }, - { - "value": 1, - "description": "Always broadcast" - }, - { - "value": 2, - "description": "Only multicast" - } - ], + "shortDesc": "Pitch rate integrator gain", + "longDesc": "This gain defines how much control response will result out of a steady state error. It trims any constant error.", + "units": "%/rad", + "default": 0.1, + "increment": 0.005, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0.005, + "maxValue": 0.5 }, { - "name": "MAV_COMP_ID", - "type": "Int32", - "group": "MAVLink", + "name": "FW_PR_IMAX", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "MAVLink component ID", - "default": 1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 1, - "maxValue": 250 + "shortDesc": "Pitch rate integrator limit", + "longDesc": "The portion of the integrator part in the control surface deflection is limited to this value", + "default": 0.4, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "MAV_FWDEXTSP", - "type": "Int32", - "group": "MAVLink", + "name": "FW_PR_P", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Forward external setpoint messages", - "longDesc": "If set to 1 incoming external setpoint messages will be directly forwarded to the controllers if in offboard control mode", - "default": 1, + "shortDesc": "Pitch rate proportional gain", + "longDesc": "This defines how much the elevator input will be commanded depending on the current body angular rate error.", + "units": "%/rad/s", + "default": 0.08, + "increment": 0.005, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0.005, + "maxValue": 1 }, { - "name": "MAV_HASH_CHK_EN", - "type": "Int32", - "group": "MAVLink", + "name": "FW_PSP_OFF", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Parameter hash check", - "longDesc": "Disabling the parameter hash check functionality will make the mavlink instance stream parameters continuously.", - "default": 1, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Pitch setpoint offset", + "longDesc": "An airframe specific offset of the pitch setpoint in degrees, the value is added to the pitch setpoint and should correspond to the typical cruise speed of the airframe.", + "units": "deg", + "default": 0, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": -90, + "maxValue": 90 }, { - "name": "MAV_HB_FORW_EN", - "type": "Int32", - "group": "MAVLink", + "name": "FW_P_LIM_MAX", + "type": "Float", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Hearbeat message forwarding", - "longDesc": "The mavlink hearbeat message will not be forwarded if this parameter is set to 'disabled'. The main reason for disabling heartbeats to be forwarded is because they confuse dronekit.", - "default": 1, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Positive pitch limit", + "longDesc": "The maximum positive pitch the controller will output.", + "units": "deg", + "default": 45, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 60 }, { - "name": "MAV_ODOM_LP", - "type": "Int32", - "group": "MAVLink", + "name": "FW_P_LIM_MIN", + "type": "Float", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Activate ODOMETRY loopback", - "longDesc": "If set, it gets the data from 'vehicle_visual_odometry' instead of 'vehicle_odometry' serving as a loopback of the received ODOMETRY messages on the Mavlink receiver.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Negative pitch limit", + "longDesc": "The minimum negative pitch the controller will output.", + "units": "deg", + "default": -45, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": -60, + "maxValue": 0 }, { - "name": "MAV_PROTO_VER", - "type": "Int32", - "group": "MAVLink", + "name": "FW_P_RMAX_NEG", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "MAVLink protocol version", - "default": 0, - "values": [ - { - "value": 0, - "description": "Default to 1, switch to 2 if GCS sends version 2" - }, - { - "value": 1, - "description": "Always use version 1" - }, - { - "value": 2, - "description": "Always use version 2" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Maximum negative / down pitch rate", + "longDesc": "This limits the maximum pitch down up angular rate the controller will output (in degrees per second).", + "units": "deg/s", + "default": 60, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 90 }, { - "name": "MAV_RADIO_TOUT", - "type": "Int32", - "group": "MAVLink", + "name": "FW_P_RMAX_POS", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Timeout in seconds for the RADIO_STATUS reports coming in", - "longDesc": "If the connected radio stops reporting RADIO_STATUS for a certain time, a warning is triggered and, if MAV_X_RADIO_CTL is enabled, the software-flow control is reset.", + "shortDesc": "Maximum positive / up pitch rate", + "longDesc": "This limits the maximum pitch up angular rate the controller will output (in degrees per second).", + "units": "deg/s", + "default": 60, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 90 + }, + { + "name": "FW_P_TC", + "type": "Float", + "group": "FW Attitude Control", + "category": "Standard", + "shortDesc": "Attitude pitch time constant", + "longDesc": "This defines the latency between a pitch step input and the achieved setpoint (inverse to a P gain). Half a second is a good start value and fits for most average systems. Smaller systems may require smaller values, but as this will wear out servos faster, the value should only be decreased as needed.", "units": "s", - "default": 5, - "decimalPlaces": 3, - "minValue": 1, - "maxValue": 250 + "default": 0.4, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0.2, + "maxValue": 1 }, { - "name": "MAV_SIK_RADIO_ID", - "type": "Int32", - "group": "MAVLink", + "name": "FW_RATT_TH", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "MAVLink SiK Radio ID", - "longDesc": "When non-zero the MAVLink app will attempt to configure the SiK radio to this ID and re-set the parameter to 0. If the value is negative it will reset the complete radio config to factory defaults. Only applies if this mavlink instance is going through a SiK radio", - "default": 0, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 240 + "shortDesc": "Threshold for Rattitude mode", + "longDesc": "Manual input needed in order to override attitude control rate setpoints and instead pass manual stick inputs as rate setpoints", + "default": 0.8, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "MAV_SYS_ID", - "type": "Int32", - "group": "MAVLink", + "name": "FW_RLL_TO_YAW_FF", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "MAVLink system ID", - "default": 1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 1, - "maxValue": 250 + "shortDesc": "Roll control to yaw control feedforward gain", + "longDesc": "This gain can be used to counteract the \"adverse yaw\" effect for fixed wings. When the plane enters a roll it will tend to yaw the nose out of the turn. This gain enables the use of a yaw actuator (rudder, airbrakes, ...) to counteract this effect.", + "default": 0, + "increment": 0.01, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "MAV_TYPE", - "type": "Int32", - "group": "MAVLink", + "name": "FW_RR_FF", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "MAVLink airframe type", - "default": 2, - "values": [ - { - "value": 1, - "description": "Fixed wing aircraft" - }, - { - "value": 2, - "description": "Quadrotor" - }, - { - "value": 3, - "description": "Coaxial helicopter" - }, - { - "value": 4, - "description": "Normal helicopter with tail rotor" - }, - { - "value": 5, - "description": "Ground installation" - }, - { - "value": 6, - "description": "Operator control unit / ground control station" - }, - { - "value": 7, - "description": "Airship, controlled" - }, - { - "value": 8, - "description": "Free balloon, uncontrolled" - }, - { - "value": 9, - "description": "Rocket" - }, - { - "value": 10, - "description": "Ground rover" - }, - { - "value": 11, - "description": "Surface vessel, boat, ship" - }, - { - "value": 12, - "description": "Submarine" - }, - { - "value": 13, - "description": "Hexarotor" - }, - { - "value": 14, - "description": "Octorotor" - }, - { - "value": 15, - "description": "Tricopter" - }, - { - "value": 16, - "description": "Flapping wing" - }, - { - "value": 17, - "description": "Kite" - }, - { - "value": 18, - "description": "Onboard companion controller" - }, - { - "value": 19, - "description": "Two-rotor VTOL using control surfaces in vertical operation in addition. Tailsitter." - }, - { - "value": 20, - "description": "Quad-rotor VTOL using a V-shaped quad config in vertical operation. Tailsitter." - }, - { - "value": 21, - "description": "Tiltrotor VTOL" - }, - { - "value": 22, - "description": "VTOL reserved 2" - }, - { - "value": 23, - "description": "VTOL reserved 3" - }, - { - "value": 24, - "description": "VTOL reserved 4" - }, - { - "value": 25, - "description": "VTOL reserved 5" - }, - { - "value": 26, - "description": "Onboard gimbal" - }, - { - "value": 27, - "description": "Onboard ADSB peripheral" - } - ], - "decimalPlaces": 3, - "minValue": 1, - "maxValue": 27 + "shortDesc": "Roll rate feed forward", + "longDesc": "Direct feed forward from rate setpoint to control surface output. Use this to obtain a tigher response of the controller without introducing noise amplification.", + "units": "%/rad/s", + "default": 0.5, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 10 }, { - "name": "MAV_USEHILGPS", - "type": "Int32", - "group": "MAVLink", + "name": "FW_RR_I", + "type": "Float", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Use/Accept HIL GPS message even if not in HIL mode", - "longDesc": "If set to 1 incoming HIL GPS messages are parsed.", - "default": 0, + "shortDesc": "Roll rate integrator Gain", + "longDesc": "This gain defines how much control response will result out of a steady state error. It trims any constant error.", + "units": "%/rad", + "default": 0.1, + "increment": 0.005, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0.005, + "maxValue": 0.2 }, { - "name": "MC_ACRO_EXPO", + "name": "FW_RR_IMAX", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Acro mode Expo factor for Roll and Pitch", - "longDesc": "Exponential factor for tuning the input curve shape. 0 Purely linear input curve 1 Purely cubic input curve", - "default": 0.69, + "shortDesc": "Roll integrator anti-windup", + "longDesc": "The portion of the integrator part in the control surface deflection is limited to this value.", + "default": 0.2, + "increment": 0.05, "decimalPlaces": 2, "minValue": 0, "maxValue": 1 }, { - "name": "MC_ACRO_EXPO_Y", + "name": "FW_RR_P", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Acro mode Expo factor for Yaw", - "longDesc": "Exponential factor for tuning the input curve shape. 0 Purely linear input curve 1 Purely cubic input curve", - "default": 0.69, - "decimalPlaces": 2, - "minValue": 0, + "shortDesc": "Roll rate proportional Gain", + "longDesc": "This defines how much the aileron input will be commanded depending on the current body angular rate error.", + "units": "%/rad/s", + "default": 0.05, + "increment": 0.005, + "decimalPlaces": 3, + "minValue": 0.005, "maxValue": 1 }, { - "name": "MC_ACRO_P_MAX", + "name": "FW_RSP_OFF", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Max acro pitch rate default: 2 turns per second", + "shortDesc": "Roll setpoint offset", + "longDesc": "An airframe specific offset of the roll setpoint in degrees, the value is added to the roll setpoint and should correspond to the typical cruise speed of the airframe.", + "units": "deg", + "default": 0, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": -90, + "maxValue": 90 + }, + { + "name": "FW_R_LIM", + "type": "Float", + "group": "FW L1 Control", + "category": "Standard", + "shortDesc": "Controller roll limit", + "longDesc": "The maximum roll the controller will output.", + "units": "deg", + "default": 50, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 35, + "maxValue": 65 + }, + { + "name": "FW_R_RMAX", + "type": "Float", + "group": "FW Attitude Control", + "category": "Standard", + "shortDesc": "Maximum roll rate", + "longDesc": "This limits the maximum roll rate the controller will output (in degrees per second).", "units": "deg/s", - "default": 720, - "increment": 5, + "default": 70, + "increment": 0.5, "decimalPlaces": 1, "minValue": 0, - "maxValue": 1800 + "maxValue": 90 }, { - "name": "MC_ACRO_R_MAX", + "name": "FW_R_TC", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Max acro roll rate default: 2 turns per second", - "units": "deg/s", - "default": 720, - "increment": 5, + "shortDesc": "Attitude Roll Time Constant", + "longDesc": "This defines the latency between a roll step input and the achieved setpoint (inverse to a P gain). Half a second is a good start value and fits for most average systems. Smaller systems may require smaller values, but as this will wear out servos faster, the value should only be decreased as needed.", + "units": "s", + "default": 0.4, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0.4, + "maxValue": 1 + }, + { + "name": "FW_THR_ALT_SCL", + "type": "Float", + "group": "FW L1 Control", + "category": "Standard", + "shortDesc": "Scale throttle by pressure change", + "longDesc": "Automatically adjust throttle to account for decreased air density at higher altitudes. Start with a scale factor of 1.0 and adjust for different propulsion systems. When flying without airspeed sensor this will help to keep a constant performance over large altitude ranges. The default value of 0 will disable scaling.", + "default": 0, + "increment": 0.1, "decimalPlaces": 1, "minValue": 0, - "maxValue": 1800 + "maxValue": 10 }, { - "name": "MC_ACRO_SUPEXPO", + "name": "FW_THR_CRUISE", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Acro mode SuperExpo factor for Roll and Pitch", - "longDesc": "SuperExpo factor for refining the input curve shape tuned using MC_ACRO_EXPO. 0 Pure Expo function 0.7 resonable shape enhancement for intuitive stick feel 0.95 very strong bent input curve only near maxima have effect", - "default": 0.7, + "shortDesc": "Cruise throttle", + "longDesc": "This is the throttle setting required to achieve the desired cruise speed. Most airframes have a value of 0.5-0.7.", + "units": "norm", + "default": 0.6, + "increment": 0.01, "decimalPlaces": 2, "minValue": 0, - "maxValue": 0.95 + "maxValue": 1 }, { - "name": "MC_ACRO_SUPEXPOY", + "name": "FW_THR_IDLE", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Acro mode SuperExpo factor for Yaw", - "longDesc": "SuperExpo factor for refining the input curve shape tuned using MC_ACRO_EXPO_Y. 0 Pure Expo function 0.7 resonable shape enhancement for intuitive stick feel 0.95 very strong bent input curve only near maxima have effect", - "default": 0.7, + "shortDesc": "Idle throttle", + "longDesc": "This is the minimum throttle while on the ground For aircraft with internal combustion engine this parameter should be set above desired idle rpm.", + "units": "norm", + "default": 0.15, + "increment": 0.01, "decimalPlaces": 2, "minValue": 0, - "maxValue": 0.95 + "maxValue": 0.4 }, { - "name": "MC_ACRO_Y_MAX", + "name": "FW_THR_LND_MAX", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Max acro yaw rate default 1.5 turns per second", - "units": "deg/s", - "default": 540, - "increment": 5, - "decimalPlaces": 1, + "shortDesc": "Throttle limit during landing below throttle limit altitude", + "longDesc": "During the flare of the autonomous landing process, this value will be set as throttle limit when the aircraft altitude is below FW_LND_TLALT.", + "units": "norm", + "default": 1, + "increment": 0.01, + "decimalPlaces": 2, "minValue": 0, - "maxValue": 1800 - }, - { - "name": "MC_AIRMODE", - "type": "Int32", - "group": "Mixer Output", - "category": "Standard", - "shortDesc": "Multicopter air-mode", - "longDesc": "The air-mode enables the mixer to increase the total thrust of the multirotor in order to keep attitude and rate control even at low and high throttle. This function should be disabled during tuning as it will help the controller to diverge if the closed-loop is unstable (i.e. the vehicle is not tuned yet). Enabling air-mode for yaw requires the use of an arming switch.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Disabled" - }, - { - "value": 1, - "description": "Roll/Pitch" - }, - { - "value": 2, - "description": "Roll/Pitch/Yaw" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "MC_BAT_SCALE_EN", - "type": "Int32", - "group": "Multicopter Rate Control", - "category": "Standard", - "shortDesc": "Battery power level scaler", - "longDesc": "This compensates for voltage drop of the battery over time by attempting to normalize performance across the operating range of the battery. The copter should constantly behave as if it was fully charged with reduced max acceleration at lower battery percentages. i.e. if hover is at 0.5 throttle at 100% battery, it will still be 0.5 at 60% battery.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "maxValue": 1 }, { - "name": "MC_MAN_TILT_TAU", + "name": "FW_THR_MAX", "type": "Float", - "group": "Multicopter Position Control", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Manual tilt input filter time constant Setting this parameter to 0 disables the filter", - "units": "s", - "default": 0, + "shortDesc": "Throttle limit max", + "longDesc": "This is the maximum throttle % that can be used by the controller. For overpowered aircraft, this should be reduced to a value that provides sufficient thrust to climb at the maximum pitch angle PTCH_MAX.", + "units": "norm", + "default": 1, + "increment": 0.01, "decimalPlaces": 2, "minValue": 0, - "maxValue": 2 + "maxValue": 1 }, { - "name": "MC_PITCHRATE_D", + "name": "FW_THR_MIN", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Pitch rate D gain", - "longDesc": "Pitch rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again.", - "default": 0.003, - "increment": 0.0005, - "decimalPlaces": 4, + "shortDesc": "Throttle limit min", + "longDesc": "This is the minimum throttle % that can be used by the controller. For electric aircraft this will normally be set to zero, but can be set to a small non-zero value if a folding prop is fitted to prevent the prop from folding and unfolding repeatedly in-flight or to provide some aerodynamic drag from a turning prop to improve the descent rate. For aircraft with internal combustion engine this parameter should be set for desired idle rpm.", + "units": "norm", + "default": 0, + "increment": 0.01, + "decimalPlaces": 2, "minValue": 0, - "maxValue": 3.40282e+38 + "maxValue": 1 }, { - "name": "MC_PITCHRATE_FF", + "name": "FW_THR_SLEW_MAX", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW L1 Control", "category": "Standard", - "shortDesc": "Pitch rate feedforward", - "longDesc": "Improves tracking performance.", + "shortDesc": "Throttle max slew rate", + "longDesc": "Maximum slew rate for the commanded throttle", "default": 0, - "decimalPlaces": 4, + "decimalPlaces": 3, "minValue": 0, - "maxValue": 3.40282e+38 + "maxValue": 1 }, { - "name": "MC_PITCHRATE_I", + "name": "FW_T_CLMB_MAX", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Pitch rate I gain", - "longDesc": "Pitch rate integral gain. Can be set to compensate static thrust difference or gravity center offset.", - "default": 0.2, - "increment": 0.01, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 3.40282e+38 + "shortDesc": "Maximum climb rate", + "longDesc": "This is the best climb rate that the aircraft can achieve with the throttle set to THR_MAX and the airspeed set to the default value. For electric aircraft make sure this number can be achieved towards the end of flight when the battery voltage has reduced. The setting of this parameter can be checked by commanding a positive altitude change of 100m in loiter, RTL or guided mode. If the throttle required to climb is close to THR_MAX and the aircraft is maintaining airspeed, then this parameter is set correctly. If the airspeed starts to reduce, then the parameter is set to high, and if the throttle demand required to climb and maintain speed is noticeably less than FW_THR_MAX, then either FW_T_CLMB_MAX should be increased or FW_THR_MAX reduced.", + "units": "m/s", + "default": 5, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 15 }, { - "name": "MC_PITCHRATE_K", + "name": "FW_T_HRATE_FF", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Pitch rate controller gain", - "longDesc": "Global gain of the controller. This gain scales the P, I and D terms of the controller: output = MC_PITCHRATE_K * (MC_PITCHRATE_P * error + MC_PITCHRATE_I * error_integral + MC_PITCHRATE_D * error_derivative) Set MC_PITCHRATE_P=1 to implement a PID in the ideal form. Set MC_PITCHRATE_K=1 to implement a PID in the parallel form.", - "default": 1, - "increment": 0.0005, - "decimalPlaces": 4, - "minValue": 0.01, - "maxValue": 5 + "shortDesc": "Height rate feed forward", + "default": 0.8, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "MC_PITCHRATE_MAX", + "name": "FW_T_HRATE_P", "type": "Float", - "group": "Multicopter Attitude Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Max pitch rate", - "longDesc": "Limit for pitch rate in manual and auto modes (except acro). Has effect for large rotations in autonomous mode, to avoid large control output and mixer saturation. This is not only limited by the vehicle's properties, but also by the maximum measurement rate of the gyro.", - "units": "deg/s", - "default": 220, - "increment": 5, - "decimalPlaces": 1, + "shortDesc": "Height rate proportional factor", + "default": 0.05, + "increment": 0.05, + "decimalPlaces": 2, "minValue": 0, - "maxValue": 1800 + "maxValue": 1 }, { - "name": "MC_PITCHRATE_P", + "name": "FW_T_INTEG_GAIN", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Pitch rate P gain", - "longDesc": "Pitch rate proportional gain, i.e. control output for angular speed error 1 rad/s.", - "default": 0.15, - "increment": 0.01, - "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 0.6 + "shortDesc": "Integrator gain", + "longDesc": "This is the integrator gain on the control loop. Increasing this gain increases the speed at which speed and height offsets are trimmed out, but reduces damping and increases overshoot. Set this value to zero to completely disable all integrator action.", + "default": 0.1, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 2 }, { - "name": "MC_PITCH_P", + "name": "FW_T_PTCH_DAMP", "type": "Float", - "group": "Multicopter Attitude Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Pitch P gain", - "longDesc": "Pitch proportional gain, i.e. desired angular speed in rad/s for error 1 rad.", - "units": "1/s", - "default": 6.5, + "shortDesc": "Pitch damping factor", + "longDesc": "This is the damping gain for the pitch demand loop. Increase to add damping to correct for oscillations in height. The default value of 0.0 will work well provided the pitch to servo controller has been tuned properly.", + "default": 0, "increment": 0.1, - "decimalPlaces": 2, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 12 + "maxValue": 2 }, { - "name": "MC_PR_INT_LIM", + "name": "FW_T_RLL2THR", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Pitch rate integrator limit", - "longDesc": "Pitch rate integrator limit. Can be set to increase the amount of integrator available to counteract disturbances or reduced to improve settling time after large pitch moment trim changes.", - "default": 0.3, - "increment": 0.01, - "decimalPlaces": 2, + "shortDesc": "Roll -> Throttle feedforward", + "longDesc": "Increasing this gain turn increases the amount of throttle that will be used to compensate for the additional drag created by turning. Ideally this should be set to approximately 10 x the extra sink rate in m/s created by a 45 degree bank turn. Increase this gain if the aircraft initially loses energy in turns and reduce if the aircraft initially gains energy in turns. Efficient high aspect-ratio aircraft (eg powered sailplanes) can use a lower value, whereas inefficient low aspect-ratio models (eg delta wings) can use a higher value.", + "default": 15, + "increment": 0.5, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 3.40282e+38 + "maxValue": 20 }, { - "name": "MC_RATT_TH", + "name": "FW_T_SINK_MAX", "type": "Float", - "group": "Multicopter Attitude Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Threshold for Rattitude mode", - "longDesc": "Manual input needed in order to override attitude control rate setpoints and instead pass manual stick inputs as rate setpoints", - "default": 0.8, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 + "shortDesc": "Maximum descent rate", + "longDesc": "This sets the maximum descent rate that the controller will use. If this value is too large, the aircraft can over-speed on descent. This should be set to a value that can be achieved without exceeding the lower pitch angle limit and without over-speeding the aircraft.", + "units": "m/s", + "default": 5, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 15 + }, + { + "name": "FW_T_SINK_MIN", + "type": "Float", + "group": "FW TECS", + "category": "Standard", + "shortDesc": "Minimum descent rate", + "longDesc": "This is the sink rate of the aircraft with the throttle set to THR_MIN and flown at the same airspeed as used to measure FW_T_CLMB_MAX.", + "units": "m/s", + "default": 2, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 5 }, { - "name": "MC_ROLLRATE_D", + "name": "FW_T_SPDWEIGHT", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Roll rate D gain", - "longDesc": "Roll rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again.", - "default": 0.003, - "increment": 0.0005, - "decimalPlaces": 4, + "shortDesc": "Speed <--> Altitude priority", + "longDesc": "This parameter adjusts the amount of weighting that the pitch control applies to speed vs height errors. Setting it to 0.0 will cause the pitch control to control height and ignore speed errors. This will normally improve height accuracy but give larger airspeed errors. Setting it to 2.0 will cause the pitch control loop to control speed and ignore height errors. This will normally reduce airspeed errors, but give larger height errors. The default value of 1.0 allows the pitch control to simultaneously control height and speed. Note to Glider Pilots - set this parameter to 2.0 (The glider will adjust its pitch angle to maintain airspeed, ignoring changes in height).", + "default": 1, + "increment": 1, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 0.01 + "maxValue": 2 }, { - "name": "MC_ROLLRATE_FF", + "name": "FW_T_SPD_OMEGA", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Roll rate feedforward", - "longDesc": "Improves tracking performance.", - "default": 0, - "decimalPlaces": 4, - "minValue": 0, - "maxValue": 3.40282e+38 + "shortDesc": "Complementary filter \"omega\" parameter for speed", + "longDesc": "This is the cross-over frequency (in radians/second) of the complementary filter used to fuse longitudinal acceleration and airspeed to obtain an improved airspeed estimate. Increasing this frequency weights the solution more towards use of the airspeed sensor, whilst reducing it weights the solution more towards use of the accelerometer data.", + "units": "rad/s", + "default": 2, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 10 }, { - "name": "MC_ROLLRATE_I", + "name": "FW_T_SRATE_P", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Roll rate I gain", - "longDesc": "Roll rate integral gain. Can be set to compensate static thrust difference or gravity center offset.", - "default": 0.2, + "shortDesc": "Speed rate P factor", + "default": 0.02, "increment": 0.01, - "decimalPlaces": 3, + "decimalPlaces": 2, "minValue": 0, - "maxValue": 3.40282e+38 + "maxValue": 2 }, { - "name": "MC_ROLLRATE_K", + "name": "FW_T_THRO_CONST", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Roll rate controller gain", - "longDesc": "Global gain of the controller. This gain scales the P, I and D terms of the controller: output = MC_ROLLRATE_K * (MC_ROLLRATE_P * error + MC_ROLLRATE_I * error_integral + MC_ROLLRATE_D * error_derivative) Set MC_ROLLRATE_P=1 to implement a PID in the ideal form. Set MC_ROLLRATE_K=1 to implement a PID in the parallel form.", - "default": 1, - "increment": 0.0005, - "decimalPlaces": 4, - "minValue": 0.01, - "maxValue": 5 + "shortDesc": "TECS Throttle time constant", + "longDesc": "This is the time constant of the TECS throttle control algorithm (in seconds). Smaller values make it faster to respond, larger values make it slower to respond.", + "units": "s", + "default": 8, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 10 }, { - "name": "MC_ROLLRATE_MAX", + "name": "FW_T_THR_DAMP", "type": "Float", - "group": "Multicopter Attitude Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Max roll rate", - "longDesc": "Limit for roll rate in manual and auto modes (except acro). Has effect for large rotations in autonomous mode, to avoid large control output and mixer saturation. This is not only limited by the vehicle's properties, but also by the maximum measurement rate of the gyro.", - "units": "deg/s", - "default": 220, - "increment": 5, + "shortDesc": "Throttle damping factor", + "longDesc": "This is the damping gain for the throttle demand loop. Increase to add damping to correct for oscillations in speed and height.", + "default": 0.5, + "increment": 0.1, "decimalPlaces": 1, "minValue": 0, - "maxValue": 1800 + "maxValue": 2 }, { - "name": "MC_ROLLRATE_P", + "name": "FW_T_TIME_CONST", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Roll rate P gain", - "longDesc": "Roll rate proportional gain, i.e. control output for angular speed error 1 rad/s.", - "default": 0.15, - "increment": 0.01, - "decimalPlaces": 3, - "minValue": 0.01, - "maxValue": 0.5 + "shortDesc": "TECS time constant", + "longDesc": "This is the time constant of the TECS control algorithm (in seconds). Smaller values make it faster to respond, larger values make it slower to respond.", + "units": "s", + "default": 5, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 10 }, { - "name": "MC_ROLL_P", + "name": "FW_T_VERT_ACC", "type": "Float", - "group": "Multicopter Attitude Control", + "group": "FW TECS", "category": "Standard", - "shortDesc": "Roll P gain", - "longDesc": "Roll proportional gain, i.e. desired angular speed in rad/s for error 1 rad.", - "units": "1/s", - "default": 6.5, - "increment": 0.1, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 12 + "shortDesc": "Maximum vertical acceleration", + "longDesc": "This is the maximum vertical acceleration (in m/s/s) either up or down that the controller will use to correct speed or height errors. The default value of 7 m/s/s (equivalent to +- 0.7 g) allows for reasonably aggressive pitch changes if required to recover from under-speed conditions.", + "units": "m/s/s", + "default": 7, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 10 }, { - "name": "MC_RR_INT_LIM", + "name": "FW_WR_FF", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Roll rate integrator limit", - "longDesc": "Roll rate integrator limit. Can be set to increase the amount of integrator available to counteract disturbances or reduced to improve settling time after large roll moment trim changes.", - "default": 0.3, - "increment": 0.01, + "shortDesc": "Wheel steering rate feed forward", + "longDesc": "Direct feed forward from rate setpoint to control surface output", + "units": "%/rad/s", + "default": 0.2, + "increment": 0.05, "decimalPlaces": 2, "minValue": 0, - "maxValue": 3.40282e+38 + "maxValue": 10 }, { - "name": "MC_YAWRATE_D", + "name": "FW_WR_I", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Yaw rate D gain", - "longDesc": "Yaw rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again.", - "default": 0, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 3.40282e+38 + "shortDesc": "Wheel steering rate integrator gain", + "longDesc": "This gain defines how much control response will result out of a steady state error. It trims any constant error.", + "units": "%/rad", + "default": 0.1, + "increment": 0.005, + "decimalPlaces": 3, + "minValue": 0.005, + "maxValue": 0.5 }, { - "name": "MC_YAWRATE_FF", + "name": "FW_WR_IMAX", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Yaw rate feedforward", - "longDesc": "Improves tracking performance.", - "default": 0, - "increment": 0.01, - "decimalPlaces": 4, + "shortDesc": "Wheel steering rate integrator limit", + "longDesc": "The portion of the integrator part in the control surface deflection is limited to this value", + "default": 1, + "increment": 0.05, + "decimalPlaces": 2, "minValue": 0, - "maxValue": 3.40282e+38 + "maxValue": 1 }, { - "name": "MC_YAWRATE_I", + "name": "FW_WR_P", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Yaw rate I gain", - "longDesc": "Yaw rate integral gain. Can be set to compensate static thrust difference or gravity center offset.", - "default": 0.1, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 3.40282e+38 + "shortDesc": "Wheel steering rate proportional gain", + "longDesc": "This defines how much the wheel steering input will be commanded depending on the current body angular rate error.", + "units": "%/rad/s", + "default": 0.5, + "increment": 0.005, + "decimalPlaces": 3, + "minValue": 0.005, + "maxValue": 1 }, { - "name": "MC_YAWRATE_K", - "type": "Float", - "group": "Multicopter Rate Control", + "name": "FW_W_EN", + "type": "Int32", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Yaw rate controller gain", - "longDesc": "Global gain of the controller. This gain scales the P, I and D terms of the controller: output = MC_YAWRATE_K * (MC_YAWRATE_P * error + MC_YAWRATE_I * error_integral + MC_YAWRATE_D * error_derivative) Set MC_YAWRATE_P=1 to implement a PID in the ideal form. Set MC_YAWRATE_K=1 to implement a PID in the parallel form.", - "default": 1, - "increment": 0.0005, - "decimalPlaces": 4, - "minValue": 0, - "maxValue": 5 + "shortDesc": "Enable wheel steering controller", + "default": 0, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "MC_YAWRATE_MAX", + "name": "FW_W_RMAX", "type": "Float", - "group": "Multicopter Attitude Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Max yaw rate", + "shortDesc": "Maximum wheel steering rate", + "longDesc": "This limits the maximum wheel steering rate the controller will output (in degrees per second).", "units": "deg/s", - "default": 200, - "increment": 5, + "default": 30, + "increment": 0.5, "decimalPlaces": 1, "minValue": 0, - "maxValue": 1800 + "maxValue": 90 }, { - "name": "MC_YAWRATE_P", + "name": "FW_YR_FF", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Yaw rate P gain", - "longDesc": "Yaw rate proportional gain, i.e. control output for angular speed error 1 rad/s.", - "default": 0.2, - "increment": 0.01, + "shortDesc": "Yaw rate feed forward", + "longDesc": "Direct feed forward from rate setpoint to control surface output", + "units": "%/rad/s", + "default": 0.3, + "increment": 0.05, "decimalPlaces": 2, "minValue": 0, - "maxValue": 0.6 + "maxValue": 10 + }, + { + "name": "FW_YR_I", + "type": "Float", + "group": "FW Attitude Control", + "category": "Standard", + "shortDesc": "Yaw rate integrator gain", + "longDesc": "This gain defines how much control response will result out of a steady state error. It trims any constant error.", + "units": "%/rad", + "default": 0.1, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 50 }, { - "name": "MC_YAW_P", + "name": "FW_YR_IMAX", "type": "Float", - "group": "Multicopter Attitude Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Yaw P gain", - "longDesc": "Yaw proportional gain, i.e. desired angular speed in rad/s for error 1 rad.", - "units": "1/s", - "default": 2.8, - "increment": 0.1, + "shortDesc": "Yaw rate integrator limit", + "longDesc": "The portion of the integrator part in the control surface deflection is limited to this value", + "default": 0.2, + "increment": 0.05, "decimalPlaces": 2, "minValue": 0, - "maxValue": 5 + "maxValue": 1 }, { - "name": "MC_YAW_WEIGHT", + "name": "FW_YR_P", "type": "Float", - "group": "Multicopter Attitude Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Yaw weight", - "longDesc": "A fraction [0,1] deprioritizing yaw compared to roll and pitch in non-linear attitude control. Deprioritizing yaw is necessary because multicopters have much less control authority in yaw compared to the other axes and it makes sense because yaw is not critical for stable hovering or 3D navigation. For yaw control tuning use MC_YAW_P. This ratio has no inpact on the yaw gain.", - "units": "1/s", - "default": 0.4, - "increment": 0.1, - "decimalPlaces": 2, - "minValue": 0, + "shortDesc": "Yaw rate proportional gain", + "longDesc": "This defines how much the rudder input will be commanded depending on the current body angular rate error.", + "units": "%/rad/s", + "default": 0.05, + "increment": 0.005, + "decimalPlaces": 3, + "minValue": 0.005, "maxValue": 1 }, { - "name": "MC_YR_INT_LIM", + "name": "FW_Y_RMAX", "type": "Float", - "group": "Multicopter Rate Control", + "group": "FW Attitude Control", "category": "Standard", - "shortDesc": "Yaw rate integrator limit", - "longDesc": "Yaw rate integrator limit. Can be set to increase the amount of integrator available to counteract disturbances or reduced to improve settling time after large yaw moment trim changes.", - "default": 0.3, - "increment": 0.01, - "decimalPlaces": 2, + "shortDesc": "Maximum yaw rate", + "longDesc": "This limits the maximum yaw rate the controller will output (in degrees per second).", + "units": "deg/s", + "default": 50, + "increment": 0.5, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 3.40282e+38 + "maxValue": 90 }, { - "name": "MIS_ALTMODE", + "name": "GF_ACTION", "type": "Int32", - "group": "Mission", + "group": "Geofence", "category": "Standard", - "shortDesc": "Altitude setpoint mode", - "longDesc": "0: the system will follow a zero order hold altitude setpoint 1: the system will follow a first order hold altitude setpoint values follow the definition in enum mission_altitude_mode", + "shortDesc": "Geofence violation action", + "longDesc": "Note: Setting this value to 4 enables flight termination, which will kill the vehicle on violation of the fence. Due to the inherent danger of this, this function is disabled using a software circuit breaker, which needs to be reset to 0 to really shut down the system.", "default": 1, "values": [ { "value": 0, - "description": "Zero Order Hold" + "description": "None" }, { "value": 1, - "description": "First Order Hold" + "description": "Warning" + }, + { + "value": 2, + "description": "Hold mode" + }, + { + "value": 3, + "description": "Return mode" + }, + { + "value": 4, + "description": "Terminate" } ], "decimalPlaces": 3, "minValue": 0, - "maxValue": 1 + "maxValue": 4 }, { - "name": "MIS_DIST_1WP", - "type": "Float", - "group": "Mission", + "name": "GF_ALTMODE", + "type": "Int32", + "group": "Geofence", "category": "Standard", - "shortDesc": "Maximal horizontal distance from home to first waypoint", - "longDesc": "Failsafe check to prevent running mission stored from previous flight at a new takeoff location. Set a value of zero or less to disable. The mission will not be started if the current waypoint is more distant than MIS_DIS_1WP from the home position.", - "units": "m", - "default": 900, - "increment": 100, - "decimalPlaces": 1, + "shortDesc": "Geofence altitude mode", + "longDesc": "Select which altitude reference should be used 0 = WGS84, 1 = AMSL", + "default": 0, + "values": [ + { + "value": 0, + "description": "WGS84" + }, + { + "value": 1, + "description": "AMSL" + } + ], + "decimalPlaces": 3, "minValue": 0, - "maxValue": 10000 + "maxValue": 1 }, { - "name": "MIS_DIST_WPS", + "name": "GF_COUNT", + "type": "Int32", + "group": "Geofence", + "category": "Standard", + "shortDesc": "Geofence counter limit", + "longDesc": "Set how many subsequent position measurements outside of the fence are needed before geofence violation is triggered", + "default": -1, + "increment": 1, + "decimalPlaces": 0, + "minValue": -1, + "maxValue": 10 + }, + { + "name": "GF_MAX_HOR_DIST", "type": "Float", - "group": "Mission", + "group": "Geofence", "category": "Standard", - "shortDesc": "Maximal horizontal distance between waypoint", - "longDesc": "Failsafe check to prevent running missions which are way too big. Set a value of zero or less to disable. The mission will not be started if any distance between two subsequent waypoints is greater than MIS_DIST_WPS.", + "shortDesc": "Max horizontal distance in meters", + "longDesc": "Maximum horizontal distance in meters the vehicle can be from home before triggering a geofence action. Disabled if 0.", "units": "m", - "default": 900, - "increment": 100, - "decimalPlaces": 1, + "default": 0, + "increment": 1, + "decimalPlaces": 0, "minValue": 0, "maxValue": 10000 }, { - "name": "MIS_LTRMIN_ALT", + "name": "GF_MAX_VER_DIST", "type": "Float", - "group": "Mission", + "group": "Geofence", "category": "Standard", - "shortDesc": "Minimum Loiter altitude", - "longDesc": "This is the minimum altitude the system will always obey. The intent is to stay out of ground effect. set to -1, if there shouldn't be a minimum loiter altitude", + "shortDesc": "Max vertical distance in meters", + "longDesc": "Maximum vertical distance in meters the vehicle can be from home before triggering a geofence action. Disabled if 0.", "units": "m", - "default": -1, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": -1, - "maxValue": 80 + "default": 0, + "increment": 1, + "decimalPlaces": 0, + "minValue": 0, + "maxValue": 10000 }, { - "name": "MIS_MNT_YAW_CTL", + "name": "GF_SOURCE", "type": "Int32", - "group": "Mission", + "group": "Geofence", "category": "Standard", - "shortDesc": "Enable yaw control of the mount. (Only affects multicopters and ROI mission items)", - "longDesc": "If enabled, yaw commands will be sent to the mount and the vehicle will follow its heading towards the flight direction. If disabled, the vehicle will yaw towards the ROI.", + "shortDesc": "Geofence source", + "longDesc": "Select which position source should be used. Selecting GPS instead of global position makes sure that there is no dependence on the position estimator 0 = global position, 1 = GPS", "default": 0, "values": [ { "value": 0, - "description": "Disable" + "description": "GPOS" }, { "value": 1, - "description": "Enable" + "description": "GPS" } ], "decimalPlaces": 3, @@ -10152,278 +6079,317 @@ "maxValue": 1 }, { - "name": "MIS_TAKEOFF_ALT", + "name": "GND_L1_DAMPING", "type": "Float", - "group": "Mission", + "group": "Rover Position Control", "category": "Standard", - "shortDesc": "Take-off altitude", - "longDesc": "This is the minimum altitude the system will take off to.", + "shortDesc": "L1 damping", + "longDesc": "Damping factor for L1 control.", + "default": 0.75, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0.6, + "maxValue": 0.9 + }, + { + "name": "GND_L1_DIST", + "type": "Float", + "group": "Rover Position Control", + "category": "Standard", + "shortDesc": "L1 distance", + "longDesc": "This is the waypoint radius", "units": "m", - "default": 2.5, + "default": 5, + "increment": 0.1, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 100 + }, + { + "name": "GND_L1_PERIOD", + "type": "Float", + "group": "Rover Position Control", + "category": "Standard", + "shortDesc": "L1 period", + "longDesc": "This is the L1 distance and defines the tracking point ahead of the rover it's following. Using values around 2-5 for a traxxas stampede. Shorten slowly during tuning until response is sharp without oscillation.", + "units": "m", + "default": 10, "increment": 0.5, "decimalPlaces": 1, "minValue": 0, - "maxValue": 80 + "maxValue": 50 }, { - "name": "MIS_TAKEOFF_REQ", - "type": "Int32", - "group": "Mission", + "name": "GND_MAX_ANG", + "type": "Float", + "group": "Rover Position Control", "category": "Standard", - "shortDesc": "Take-off waypoint required", - "longDesc": "If set, the mission feasibility checker will check for a takeoff waypoint on the mission.", - "default": 0, + "shortDesc": "Maximum turn angle for Ackerman steering. At a control output of 0, the steering wheels are at 0 radians. At a control output of 1, the steering wheels are at GND_MAX_ANG radians", + "units": "rad", + "default": 0.7854, + "increment": 0.01, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 3.14159 + }, + { + "name": "GND_SPEED_D", + "type": "Float", + "group": "Rover Position Control", + "category": "Standard", + "shortDesc": "Speed proportional gain", + "longDesc": "This is the derivative gain for the speed closed loop controller", + "units": "%m/s", + "default": 0.001, + "increment": 0.005, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 50 + }, + { + "name": "GND_SPEED_I", + "type": "Float", + "group": "Rover Position Control", + "category": "Standard", + "shortDesc": "Speed Integral gain", + "longDesc": "This is the integral gain for the speed closed loop controller", + "units": "%m/s", + "default": 3, + "increment": 0.005, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 50 + }, + { + "name": "GND_SPEED_IMAX", + "type": "Float", + "group": "Rover Position Control", + "category": "Standard", + "shortDesc": "Speed integral maximum value", + "longDesc": "This is the maxim value the integral can reach to prevent wind-up.", + "units": "%m/s", + "default": 1, + "increment": 0.005, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0.005, + "maxValue": 50 }, { - "name": "MIS_YAW_ERR", + "name": "GND_SPEED_MAX", "type": "Float", - "group": "Mission", + "group": "Rover Position Control", "category": "Standard", - "shortDesc": "Max yaw error in degrees needed for waypoint heading acceptance", - "units": "deg", - "default": 12, - "increment": 1, + "shortDesc": "Maximum ground speed", + "units": "m/s", + "default": 10, + "increment": 0.5, "decimalPlaces": 1, "minValue": 0, - "maxValue": 90 + "maxValue": 40 }, { - "name": "MIS_YAW_TMT", + "name": "GND_SPEED_P", "type": "Float", - "group": "Mission", + "group": "Rover Position Control", "category": "Standard", - "shortDesc": "Time in seconds we wait on reaching target heading at a waypoint if it is forced", - "longDesc": "If set > 0 it will ignore the target heading for normal waypoint acceptance. If the waypoint forces the heading the timeout will matter. For example on VTOL forwards transition. Mainly useful for VTOLs that have less yaw authority and might not reach target yaw in wind. Disabled by default.", - "units": "s", - "default": -1, - "increment": 1, - "decimalPlaces": 1, - "minValue": -1, - "maxValue": 20 + "shortDesc": "Speed proportional gain", + "longDesc": "This is the proportional gain for the speed closed loop controller", + "units": "%m/s", + "default": 2, + "increment": 0.005, + "decimalPlaces": 3, + "minValue": 0.005, + "maxValue": 50 }, { - "name": "MKBLCTRL_TEST", - "type": "Int32", - "group": "MKBLCTRL Testmode", + "name": "GND_SPEED_THR_SC", + "type": "Float", + "group": "Rover Position Control", "category": "Standard", - "shortDesc": "Test mode (Identify) of MKBLCTRL Driver", - "default": 0, + "shortDesc": "Speed to throttle scaler", + "longDesc": "This is a gain to map the speed control output to the throttle linearly.", + "units": "%m/s", + "default": 1, + "increment": 0.005, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0.005, + "maxValue": 50 }, { - "name": "MNT_DO_STAB", - "type": "Int32", - "group": "Mount", + "name": "GND_SPEED_TRIM", + "type": "Float", + "group": "Rover Position Control", "category": "Standard", - "shortDesc": "Stabilize the mount (set to true for servo gimbal, false for passthrough). Does not affect MAVLINK_ROI input", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Trim ground speed", + "units": "m/s", + "default": 3, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 40 }, { - "name": "MNT_MAN_PITCH", + "name": "GND_SP_CTRL_MODE", "type": "Int32", - "group": "Mount", + "group": "Rover Position Control", "category": "Standard", - "shortDesc": "Auxiliary channel to control pitch (in AUX input or manual mode)", - "default": 0, + "shortDesc": "Control mode for speed", + "longDesc": "This allows the user to choose between closed loop gps speed or open loop cruise throttle speed", + "default": 1, "values": [ { "value": 0, - "description": "Disable" + "description": "open loop control" }, { "value": 1, - "description": "AUX1" - }, - { - "value": 2, - "description": "AUX2" - }, - { - "value": 3, - "description": "AUX3" - }, - { - "value": 4, - "description": "AUX4" - }, - { - "value": 5, - "description": "AUX5" - }, - { - "value": 6, - "description": "AUX6" + "description": "close the loop with gps speed" } ], "decimalPlaces": 3, "minValue": 0, - "maxValue": 6 + "maxValue": 1 }, { - "name": "MNT_MAN_ROLL", - "type": "Int32", - "group": "Mount", + "name": "GND_THR_CRUISE", + "type": "Float", + "group": "Rover Position Control", "category": "Standard", - "shortDesc": "Auxiliary channel to control roll (in AUX input or manual mode)", - "default": 0, - "values": [ - { - "value": 0, - "description": "Disable" - }, - { - "value": 1, - "description": "AUX1" - }, - { - "value": 2, - "description": "AUX2" - }, - { - "value": 3, - "description": "AUX3" - }, - { - "value": 4, - "description": "AUX4" - }, - { - "value": 5, - "description": "AUX5" - }, - { - "value": 6, - "description": "AUX6" - } - ], - "decimalPlaces": 3, + "shortDesc": "Cruise throttle", + "longDesc": "This is the throttle setting required to achieve the desired cruise speed. 10% is ok for a traxxas stampede vxl with ESC set to training mode", + "units": "norm", + "default": 0.1, + "increment": 0.01, + "decimalPlaces": 2, "minValue": 0, - "maxValue": 6 + "maxValue": 1 }, { - "name": "MNT_MAN_YAW", - "type": "Int32", - "group": "Mount", + "name": "GND_THR_IDLE", + "type": "Float", + "group": "Rover Position Control", "category": "Standard", - "shortDesc": "Auxiliary channel to control yaw (in AUX input or manual mode)", + "shortDesc": "Idle throttle", + "longDesc": "This is the minimum throttle while on the ground, it should be 0 for a rover", + "units": "norm", "default": 0, - "values": [ - { - "value": 0, - "description": "Disable" - }, - { - "value": 1, - "description": "AUX1" - }, - { - "value": 2, - "description": "AUX2" - }, - { - "value": 3, - "description": "AUX3" - }, - { - "value": 4, - "description": "AUX4" - }, - { - "value": 5, - "description": "AUX5" - }, - { - "value": 6, - "description": "AUX6" - } - ], - "decimalPlaces": 3, + "increment": 0.01, + "decimalPlaces": 2, "minValue": 0, - "maxValue": 6 + "maxValue": 0.4 }, { - "name": "MNT_MAV_COMPID", - "type": "Int32", - "group": "Mount", + "name": "GND_THR_MAX", + "type": "Float", + "group": "Rover Position Control", "category": "Standard", - "shortDesc": "Mavlink Component ID of the mount", - "longDesc": "If MNT_MODE_OUT is MAVLINK, mount configure/control commands will be sent with this component ID.", - "default": 154, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Throttle limit max", + "longDesc": "This is the maximum throttle % that can be used by the controller. For a Traxxas stampede vxl with the ESC set to training, 30 % is enough", + "units": "norm", + "default": 0.3, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "MNT_MAV_SYSID", - "type": "Int32", - "group": "Mount", + "name": "GND_THR_MIN", + "type": "Float", + "group": "Rover Position Control", "category": "Standard", - "shortDesc": "Mavlink System ID of the mount", - "longDesc": "If MNT_MODE_OUT is MAVLINK, mount configure/control commands will be sent with this target ID.", - "default": 1, + "shortDesc": "Throttle limit min", + "longDesc": "This is the minimum throttle % that can be used by the controller. Set to 0 for rover", + "units": "norm", + "default": 0, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 + }, + { + "name": "GND_WHEEL_BASE", + "type": "Float", + "group": "Rover Position Control", + "category": "Standard", + "shortDesc": "Distance from front axle to rear axle", + "units": "m", + "default": 2, + "increment": 0.01, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "MNT_MODE_IN", + "name": "GPS_<#>_CONFIG", "type": "Int32", - "group": "Mount", + "group": "GPS", "category": "Standard", - "shortDesc": "Mount input mode", - "longDesc": "RC uses the AUX input channels (see MNT_MAN_* parameters), MAVLINK_ROI uses the MAV_CMD_DO_SET_ROI Mavlink message, and MAVLINK_DO_MOUNT the MAV_CMD_DO_MOUNT_CONFIGURE and MAV_CMD_DO_MOUNT_CONTROL messages to control a mount.", - "default": -1, + "shortDesc": "Serial Configuration for Main GPS", + "longDesc": "Configure on which serial port to run Main GPS.", + "default": 201, "values": [ { - "value": -1, - "description": "DISABLED" + "value": 0, + "description": "Disabled" }, { - "value": 0, - "description": "AUTO" + "value": 6, + "description": "UART 6" }, { - "value": 1, - "description": "RC" + "value": 101, + "description": "TELEM 1" }, { - "value": 2, - "description": "MAVLINK_ROI" + "value": 102, + "description": "TELEM 2" }, { - "value": 3, - "description": "MAVLINK_DO_MOUNT" + "value": 103, + "description": "TELEM 3" + }, + { + "value": 104, + "description": "TELEM/SERIAL 4" + }, + { + "value": 201, + "description": "GPS 1" + }, + { + "value": 202, + "description": "GPS 2" + }, + { + "value": 203, + "description": "GPS 3" + }, + { + "value": 300, + "description": "Radio Controller" } ], "rebootRequired": true, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 3 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "MNT_MODE_OUT", + "name": "GPS_DUMP_COMM", "type": "Int32", - "group": "Mount", + "group": "GPS", "category": "Standard", - "shortDesc": "Mount output mode", - "longDesc": "AUX uses the mixer output Control Group #2. MAVLINK uses the MAV_CMD_DO_MOUNT_CONFIGURE and MAV_CMD_DO_MOUNT_CONTROL MavLink messages to control a mount (set MNT_MAV_SYSID & MNT_MAV_COMPID)", + "shortDesc": "Dump GPS communication to a file", + "longDesc": "If this is set to 1, all GPS communication data will be published via uORB, and written to the log file as gps_dump message.", "default": 0, "values": [ { "value": 0, - "description": "AUX" + "description": "Disable" }, { "value": 1, - "description": "MAVLINK" + "description": "Enable" } ], "decimalPlaces": 3, @@ -10431,1196 +6397,1348 @@ "maxValue": 1 }, { - "name": "MNT_OB_LOCK_MODE", - "type": "Float", - "group": "Mount", - "category": "Standard", - "shortDesc": "Mixer value for selecting a locking mode if required for the gimbal (only in AUX output mode)", - "default": 0, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 - }, - { - "name": "MNT_OB_NORM_MODE", - "type": "Float", - "group": "Mount", + "name": "GPS_UBX_DYNMODEL", + "type": "Int32", + "group": "GPS", "category": "Standard", - "shortDesc": "Mixer value for selecting normal mode if required by the gimbal (only in AUX output mode)", - "default": -1, + "shortDesc": "u-blox GPS dynamic platform model", + "longDesc": "u-blox receivers support different dynamic platform models to adjust the navigation engine to the expected application environment.", + "default": 7, + "values": [ + { + "value": 2, + "description": "stationary" + }, + { + "value": 4, + "description": "automotive" + }, + { + "value": 6, + "description": "airborne with <1g acceleration" + }, + { + "value": 7, + "description": "airborne with <2g acceleration" + }, + { + "value": 8, + "description": "airborne with <4g acceleration" + } + ], + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 - }, - { - "name": "MNT_OFF_PITCH", - "type": "Float", - "group": "Mount", - "category": "Standard", - "shortDesc": "Offset for pitch channel output in degrees", - "default": 0, - "decimalPlaces": 1, - "minValue": -360, - "maxValue": 360 - }, - { - "name": "MNT_OFF_ROLL", - "type": "Float", - "group": "Mount", - "category": "Standard", - "shortDesc": "Offset for roll channel output in degrees", - "default": 0, - "decimalPlaces": 1, - "minValue": -360, - "maxValue": 360 + "minValue": 0, + "maxValue": 9 }, { - "name": "MNT_OFF_YAW", + "name": "GPS_YAW_OFFSET", "type": "Float", - "group": "Mount", + "group": "GPS", "category": "Standard", - "shortDesc": "Offset for yaw channel output in degrees", + "shortDesc": "Heading/Yaw offset for dual antenna GPS", + "longDesc": "Heading offset angle for dual antenna GPS setups that support heading estimation. (currently only for the Trimble MB-Two). Set this to 0 if the antennas are parallel to the forward-facing direction of the vehicle and the first antenna is in front. The offset angle increases counterclockwise. Set this to 90 if the first antenna is placed on the right side and the second on the left side of the vehicle.", + "units": "deg", "default": 0, - "decimalPlaces": 1, - "minValue": -360, + "rebootRequired": true, + "decimalPlaces": 0, + "minValue": 0, "maxValue": 360 }, { - "name": "MNT_RANGE_PITCH", + "name": "HTE_ACC_GATE", "type": "Float", - "group": "Mount", + "group": "Hover Thrust Estimator", "category": "Standard", - "shortDesc": "Range of pitch channel output in degrees (only in AUX output mode)", - "default": 360, + "shortDesc": "Gate size for acceleration fusion", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "SD", + "default": 3, "decimalPlaces": 1, "minValue": 1, - "maxValue": 720 + "maxValue": 10 }, { - "name": "MNT_RANGE_ROLL", + "name": "HTE_HT_ERR_INIT", "type": "Float", - "group": "Mount", + "group": "Hover Thrust Estimator", "category": "Standard", - "shortDesc": "Range of roll channel output in degrees (only in AUX output mode)", - "default": 360, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 720 + "shortDesc": "1-sigma initial hover thrust uncertainty", + "longDesc": "Sets the number of standard deviations used by the innovation consistency test.", + "units": "normalized_thrust", + "default": 0.1, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 1 }, { - "name": "MNT_RANGE_YAW", + "name": "HTE_HT_NOISE", "type": "Float", - "group": "Mount", - "category": "Standard", - "shortDesc": "Range of yaw channel output in degrees (only in AUX output mode)", - "default": 360, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 720 - }, - { - "name": "MOT_ORDERING", - "type": "Int32", - "group": "Mixer Output", + "group": "Hover Thrust Estimator", "category": "Standard", - "shortDesc": "Motor Ordering", - "longDesc": "Determines the motor ordering. This can be used for example in combination with a 4-in-1 ESC that assumes a motor ordering which is different from PX4. ONLY supported for Quads. When changing this, make sure to test the motor response without props first.", - "default": 0, - "values": [ - { - "value": 0, - "description": "PX4" - }, - { - "value": 1, - "description": "Betaflight / Cleanflight" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Hover thrust process noise", + "longDesc": "Reduce to make the hover thrust estimate more stable, increase if the real hover thrust is expected to change quickly over time.", + "units": "normalized_thrust/s", + "default": 0.0005, + "decimalPlaces": 4, + "minValue": 0.0001, + "maxValue": 1 }, { - "name": "MOT_POLE_COUNT", - "type": "Int32", - "group": "DShot", + "name": "IMU_ACCEL_CUTOFF", + "type": "Float", + "group": "Sensors", "category": "Standard", - "shortDesc": "Number of magnetic poles of the motors", - "longDesc": "Specify the number of magnetic poles of the motors. It is required to compute the RPM value from the eRPM returned with the ESC telemetry. Either get the number from the motor spec sheet or count the magnets on the bell of the motor (not the stator magnets). Typical motors for 5 inch props have 14 poles.", - "default": 14, + "shortDesc": "Low pass filter cutoff frequency for accel", + "longDesc": "The cutoff frequency for the 2nd order butterworth filter on the primary accelerometer. This only affects the signal sent to the controllers, not the estimators. 0 disables the filter.", + "units": "Hz", + "default": 30, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 1000 }, { - "name": "MOT_SLEW_MAX", + "name": "IMU_DGYRO_CUTOFF", "type": "Float", - "group": "PWM Outputs", + "group": "Sensors", "category": "Standard", - "shortDesc": "Minimum motor rise time (slew rate limit)", - "longDesc": "Minimum time allowed for the motor input signal to pass through a range of 1000 PWM units. A value x means that the motor signal can only go from 1000 to 2000 PWM in maximum x seconds. Zero means that slew rate limiting is disabled.", - "units": "s/(1000*PWM)", + "shortDesc": "Cutoff frequency for angular acceleration (D-Term filter)", + "longDesc": "The cutoff frequency for the 2nd order butterworth filter used on the time derivative of the measured angular velocity, also known as the D-term filter in the rate controller. The D-term uses the derivative of the rate and thus is the most susceptible to noise. Therefore, using a D-term filter allows to increase IMU_GYRO_CUTOFF, which leads to reduced control latency and permits to increase the P gains. A value of 0 disables the filter.", + "units": "Hz", "default": 0, + "rebootRequired": true, "decimalPlaces": 3, "minValue": 0, - "maxValue": 3.40282e+38 - }, - { - "name": "MPC_ACC_DOWN_MAX", - "type": "Float", - "group": "Multicopter Position Control", - "category": "Standard", - "shortDesc": "Maximum vertical acceleration in velocity controlled modes down", - "units": "m/s/s", - "default": 3, - "increment": 1, - "decimalPlaces": 2, - "minValue": 2, - "maxValue": 15 + "maxValue": 1000 }, { - "name": "MPC_ACC_HOR", + "name": "IMU_GYRO_CUTOFF", "type": "Float", - "group": "Multicopter Position Control", + "group": "Sensors", "category": "Standard", - "shortDesc": "Acceleration for auto and for manual", - "longDesc": "Note: In manual, this parameter is only used in MPC_POS_MODE 1.", - "units": "m/s/s", - "default": 3, - "increment": 1, - "decimalPlaces": 2, - "minValue": 2, - "maxValue": 15 + "shortDesc": "Low pass filter cutoff frequency for gyro", + "longDesc": "The cutoff frequency for the 2nd order butterworth filter on the primary gyro. This only affects the angular velocity sent to the controllers, not the estimators. It applies also to the angular acceleration (D-Term filter), see IMU_DGYRO_CUTOFF. A value of 0 disables the filter.", + "units": "Hz", + "default": 30, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 1000 }, { - "name": "MPC_ACC_HOR_MAX", + "name": "IMU_GYRO_NF_BW", "type": "Float", - "group": "Multicopter Position Control", + "group": "Sensors", "category": "Standard", - "shortDesc": "Maximum horizontal acceleration for auto mode and for manual mode", - "longDesc": "Maximum deceleration for MPC_POS_MODE 1. Maximum acceleration and deceleration for MPC_POS_MODE 3.", - "units": "m/s/s", - "default": 5, - "increment": 1, - "decimalPlaces": 2, - "minValue": 2, - "maxValue": 15 + "shortDesc": "Notch filter bandwidth for gyro", + "longDesc": "The frequency width of the stop band for the 2nd order notch filter on the primary gyro. See \"IMU_GYRO_NF_FREQ\" to activate the filter and to set the notch frequency. Applies to both angular velocity and angular acceleration sent to the controllers.", + "units": "Hz", + "default": 20, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 100 }, { - "name": "MPC_ACC_UP_MAX", + "name": "IMU_GYRO_NF_FREQ", "type": "Float", - "group": "Multicopter Position Control", + "group": "Sensors", "category": "Standard", - "shortDesc": "Maximum vertical acceleration in velocity controlled modes upward", - "units": "m/s/s", - "default": 4, - "increment": 1, - "decimalPlaces": 2, - "minValue": 2, - "maxValue": 15 + "shortDesc": "Notch filter frequency for gyro", + "longDesc": "The center frequency for the 2nd order notch filter on the primary gyro. This filter can be enabled to avoid feedback amplification of structural resonances at a specific frequency. This only affects the signal sent to the controllers, not the estimators. Applies to both angular velocity and angular acceleration sent to the controllers. See \"IMU_GYRO_NF_BW\" to set the bandwidth of the filter. A value of 0 disables the filter.", + "units": "Hz", + "default": 0, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 1000 }, { - "name": "MPC_ALT_MODE", + "name": "IMU_GYRO_RATEMAX", "type": "Int32", - "group": "Multicopter Position Control", + "group": "Sensors", "category": "Standard", - "shortDesc": "Altitude control mode", - "longDesc": "Set to 0 to control height relative to the earth frame origin. This origin may move up and down in flight due to sensor drift. Set to 1 to control height relative to estimated distance to ground. The vehicle will move up and down with terrain height variation. Requires a distance to ground sensor. The height controller will revert to using height above origin if the distance to ground estimate becomes invalid as indicated by the local_position.distance_bottom_valid message being false. Set to 2 to control height relative to ground (requires a distance sensor) when stationary and relative to earth frame origin when moving horizontally. The speed threshold is controlled by the MPC_HOLD_MAX_XY parameter.", + "shortDesc": "Gyro control data maximum publication rate", + "longDesc": "This is the maximum rate the gyro control data (sensor_gyro) will be allowed to publish at. Set to 0 to disable and publish at the native sensor sample rate.", + "units": "Hz", "default": 0, "values": [ { "value": 0, - "description": "Altitude following" + "description": "0 (no limit)" }, { - "value": 1, - "description": "Terrain following" + "value": 50, + "description": "50 Hz" }, { - "value": 2, - "description": "Terrain hold" + "value": 250, + "description": "250 Hz" + }, + { + "value": 400, + "description": "400 Hz" + }, + { + "value": 1000, + "description": "1000 Hz" + }, + { + "value": 2000, + "description": "2000 Hz" } ], + "rebootRequired": true, "decimalPlaces": 3, "minValue": 0, - "maxValue": 2 - }, - { - "name": "MPC_DEC_HOR_SLOW", - "type": "Float", - "group": "Multicopter Position Control", - "category": "Standard", - "shortDesc": "Slow horizontal manual deceleration for manual mode", - "longDesc": "Note: This is only used when MPC_POS_MODE is set to 1.", - "units": "m/s/s", - "default": 5, - "increment": 1, - "decimalPlaces": 2, - "minValue": 0.5, - "maxValue": 10 + "maxValue": 2000 }, { - "name": "MPC_HOLD_DZ", - "type": "Float", - "group": "Multicopter Position Control", + "name": "IMU_INTEG_RATE", + "type": "Int32", + "group": "Sensors", "category": "Standard", - "shortDesc": "Deadzone of sticks where position hold is enabled", - "default": 0.1, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 + "shortDesc": "IMU integration rate", + "longDesc": "The rate at which raw IMU data is integrated to produce delta angles and delta velocities. Recommended to set this to a multiple of the estimator update period (currently 10 ms for ekf2).", + "units": "Hz", + "default": 200, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 100, + "maxValue": 1000 }, { - "name": "MPC_HOLD_MAX_XY", - "type": "Float", - "group": "Multicopter Position Control", + "name": "INA226_CONFIG", + "type": "Int32", + "group": "Sensors", "category": "Standard", - "shortDesc": "Maximum horizontal velocity for which position hold is enabled (use 0 to disable check)", - "units": "m/s", - "default": 0.8, - "decimalPlaces": 2, + "shortDesc": "INA226 Power Monitor Config", + "units": "u", + "default": 18139, + "increment": 1, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 3 + "maxValue": 65535 }, { - "name": "MPC_HOLD_MAX_Z", + "name": "INA226_CURRENT", "type": "Float", - "group": "Multicopter Position Control", + "group": "Sensors", "category": "Standard", - "shortDesc": "Maximum vertical velocity for which position hold is enabled (use 0 to disable check)", - "units": "m/s", - "default": 0.6, + "shortDesc": "INA226 Power Monitor Max Current", + "default": 164, + "increment": 0.1, "decimalPlaces": 2, - "minValue": 0, - "maxValue": 3 - }, - { - "name": "MPC_JERK_AUTO", - "type": "Float", - "group": "Multicopter Position Control", - "category": "Standard", - "shortDesc": "Jerk limit in auto mode", - "longDesc": "Limit the maximum jerk of the vehicle (how fast the acceleration can change). A lower value leads to smoother vehicle motions, but it also limits its agility.", - "units": "m/s/s/s", - "default": 4, - "increment": 1, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 80 + "minValue": 0.1, + "maxValue": 200 }, { - "name": "MPC_JERK_MAX", + "name": "INA226_SHUNT", "type": "Float", - "group": "Multicopter Position Control", + "group": "Sensors", "category": "Standard", - "shortDesc": "Maximum jerk limit", - "longDesc": "Limit the maximum jerk of the vehicle (how fast the acceleration can change). A lower value leads to smoother vehicle motions, but it also limits its agility (how fast it can change directions or break). Setting this to the maximum value essentially disables the limit. Note: This is only used when MPC_POS_MODE is set to a smoothing mode 1 or 3.", - "units": "m/s/s/s", - "default": 8, - "increment": 1, - "decimalPlaces": 2, - "minValue": 0.5, - "maxValue": 500 + "shortDesc": "INA226 Power Monitor Shunt", + "default": 0.0005, + "increment": 1e-09, + "decimalPlaces": 10, + "minValue": 1e-09, + "maxValue": 0.1 }, { - "name": "MPC_JERK_MIN", - "type": "Float", - "group": "Multicopter Position Control", + "name": "ISBD_CONFIG", + "type": "Int32", + "group": "Iridium SBD", "category": "Standard", - "shortDesc": "Velocity-based jerk limit", - "longDesc": "If this is not zero, a velocity-based maximum jerk limit is used: the applied jerk limit linearly increases with the vehicle's velocity between MPC_JERK_MIN (zero velocity) and MPC_JERK_MAX (maximum velocity). This means that the vehicle's motions are smooth for low velocities, but still allows fast direction changes or breaking at higher velocities. Set this to zero to use a fixed maximum jerk limit (MPC_JERK_MAX). Note: This is only used when MPC_POS_MODE is set to 1.", - "units": "m/s/s/s", - "default": 8, - "increment": 1, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 30 + "shortDesc": "Serial Configuration for Iridium (with MAVLink)", + "longDesc": "Configure on which serial port to run Iridium (with MAVLink).", + "default": 0, + "values": [ + { + "value": 0, + "description": "Disabled" + }, + { + "value": 6, + "description": "UART 6" + }, + { + "value": 101, + "description": "TELEM 1" + }, + { + "value": 102, + "description": "TELEM 2" + }, + { + "value": 103, + "description": "TELEM 3" + }, + { + "value": 104, + "description": "TELEM/SERIAL 4" + }, + { + "value": 201, + "description": "GPS 1" + }, + { + "value": 202, + "description": "GPS 2" + }, + { + "value": 203, + "description": "GPS 3" + }, + { + "value": 300, + "description": "Radio Controller" + } + ], + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "MPC_LAND_ALT1", - "type": "Float", - "group": "Multicopter Position Control", + "name": "ISBD_READ_INT", + "type": "Int32", + "group": "Iridium SBD", "category": "Standard", - "shortDesc": "Altitude for 1. step of slow landing (descend)", - "longDesc": "Below this altitude: - descending velocity gets limited to a value between \"MPC_Z_VEL_MAX\" and \"MPC_LAND_SPEED\" - horizontal velocity gets limited to a value between \"MPC_VEL_MANUAL\" and \"MPC_LAND_VEL_XY\" for a smooth descent and landing experience. Value needs to be higher than \"MPC_LAND_ALT2\"", - "units": "m", - "default": 5, - "decimalPlaces": 1, + "shortDesc": "Satellite radio read interval. Only required to be nonzero if data is not sent using a ring call", + "units": "s", + "default": 0, + "decimalPlaces": 3, "minValue": 0, - "maxValue": 122 + "maxValue": 5000 }, { - "name": "MPC_LAND_ALT2", - "type": "Float", - "group": "Multicopter Position Control", + "name": "ISBD_SBD_TIMEOUT", + "type": "Int32", + "group": "Iridium SBD", "category": "Standard", - "shortDesc": "Altitude for 2. step of slow landing (landing)", - "longDesc": "Below this altitude descending and horizontal velocities get limited to \"MPC_LAND_SPEED\" and \"MPC_LAND_VEL_XY\", respectively. Value needs to be lower than \"MPC_LAND_ALT1\"", - "units": "m", - "default": 2, - "decimalPlaces": 1, + "shortDesc": "Iridium SBD session timeout", + "units": "s", + "default": 60, + "decimalPlaces": 3, "minValue": 0, - "maxValue": 122 + "maxValue": 300 }, { - "name": "MPC_LAND_RC_HELP", + "name": "ISBD_STACK_TIME", "type": "Int32", - "group": "Miscellaneous", + "group": "Iridium SBD", "category": "Standard", - "shortDesc": "Enable user assisted descent speed for autonomous land routine. When enabled, descent speed will be equal to MPC_LAND_SPEED at half throttle, MPC_Z_VEL_MAX_DN at zero throttle, and 0.5 * MPC_LAND_SPEED at full throttle", + "shortDesc": "Time [ms] the Iridium driver will wait for additional mavlink messages to combine them into one SBD message Value 0 turns the functionality off", + "units": "ms", "default": 0, - "values": [ - { - "value": 0, - "description": "Fixed descent speed of MPC_LAND_SPEED" - }, - { - "value": 1, - "description": "User assisted descent speed" - } - ], "decimalPlaces": 3, "minValue": 0, - "maxValue": 1 + "maxValue": 500 }, { - "name": "MPC_LAND_SPEED", - "type": "Float", - "group": "Multicopter Position Control", + "name": "LAUN_ALL_ON", + "type": "Int32", + "group": "FW Launch detection", "category": "Standard", - "shortDesc": "Landing descend rate", - "units": "m/s", - "default": 0.7, - "decimalPlaces": 1, - "minValue": 0.6, - "maxValue": 3.40282e+38 + "shortDesc": "Launch detection", + "default": 0, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "MPC_LAND_VEL_XY", + "name": "LAUN_CAT_A", "type": "Float", - "group": "Multicopter Position Control", + "group": "FW Launch detection", "category": "Standard", - "shortDesc": "Maximum horizontal position mode velocity when close to ground/home altitude Set the value higher than the otherwise expected maximum to disable any slowdown", - "units": "m/s", - "default": 10, + "shortDesc": "Catapult accelerometer threshold", + "longDesc": "LAUN_CAT_A for LAUN_CAT_T serves as threshold to trigger launch detection.", + "units": "m/s/s", + "default": 30, + "increment": 0.5, "decimalPlaces": 1, "minValue": 0, "maxValue": 3.40282e+38 }, { - "name": "MPC_MANTHR_MIN", - "type": "Float", - "group": "Multicopter Position Control", - "category": "Standard", - "shortDesc": "Minimum manual thrust", - "longDesc": "Minimum vertical thrust. It's recommended to set it > 0 to avoid free fall with zero thrust. With MC_AIRMODE set to 1, this can safely be set to 0.", - "units": "norm", - "default": 0.08, - "increment": 0.01, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "MPC_MAN_TILT_MAX", + "name": "LAUN_CAT_MDEL", "type": "Float", - "group": "Multicopter Position Control", + "group": "FW Launch detection", "category": "Standard", - "shortDesc": "Maximal tilt angle in manual or altitude mode", - "units": "deg", - "default": 35, + "shortDesc": "Motor delay", + "longDesc": "Delay between starting attitude control and powering up the throttle (giving throttle control to the controller) Before this timespan is up the throttle will be set to FW_THR_IDLE, set to 0 to deactivate", + "units": "s", + "default": 0, + "increment": 0.5, "decimalPlaces": 1, "minValue": 0, - "maxValue": 90 + "maxValue": 10 }, { - "name": "MPC_MAN_Y_MAX", + "name": "LAUN_CAT_PMAX", "type": "Float", - "group": "Multicopter Position Control", + "group": "FW Launch detection", "category": "Standard", - "shortDesc": "Max manual yaw rate", - "units": "deg/s", - "default": 150, + "shortDesc": "Maximum pitch before the throttle is powered up (during motor delay phase)", + "longDesc": "This is an extra limit for the maximum pitch which is imposed in the phase before the throttle turns on. This allows to limit the maximum pitch angle during a bungee launch (make the launch less steep).", + "units": "deg", + "default": 30, + "increment": 0.5, "decimalPlaces": 1, "minValue": 0, - "maxValue": 400 + "maxValue": 45 }, { - "name": "MPC_MAN_Y_TAU", + "name": "LAUN_CAT_T", "type": "Float", - "group": "Multicopter Position Control", + "group": "FW Launch detection", "category": "Standard", - "shortDesc": "Manual yaw rate input filter time constant Setting this parameter to 0 disables the filter", + "shortDesc": "Catapult time threshold", + "longDesc": "LAUN_CAT_A for LAUN_CAT_T serves as threshold to trigger launch detection.", "units": "s", - "default": 0.08, + "default": 0.05, + "increment": 0.05, "decimalPlaces": 2, "minValue": 0, "maxValue": 5 }, { - "name": "MPC_POS_MODE", + "name": "LED_RGB1_MAXBRT", "type": "Int32", - "group": "Multicopter Position Control", + "group": "System", "category": "Standard", - "shortDesc": "Manual-Position control sub-mode", - "longDesc": "The supported sub-modes are: 0 Simple position control where sticks map directly to velocity setpoints without smoothing. Useful for velocity control tuning. 1 Smooth position control with maximum acceleration and jerk limits based on slew-rates. 3 Smooth position control with maximum acceleration and jerk limits based on jerk optimized trajectory generator (different algorithm than 1).", - "default": 3, - "values": [ - { - "value": 0, - "description": "Simple position control" - }, - { - "value": 1, - "description": "Smooth position control" - }, - { - "value": 3, - "description": "Smooth position control (Jerk optimized)" - } - ], + "shortDesc": "RGB Led brightness limit", + "longDesc": "Set to 0 to disable, 1 for minimum brightness up to 31 (max)", + "default": 31, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 31 }, { - "name": "MPC_SPOOLUP_TIME", - "type": "Float", - "group": "Multicopter Position Control", + "name": "LED_RGB_MAXBRT", + "type": "Int32", + "group": "System", "category": "Standard", - "shortDesc": "Enforced delay between arming and takeoff", - "longDesc": "For altitude controlled modes the time from arming the motors until a takeoff is possible gets forced to be at least MPC_SPOOLUP_TIME seconds to ensure the motors and propellers can sppol up and reach idle speed before getting commanded to spin faster. This delay is particularly useful for vehicles with slow motor spin-up e.g. because of large propellers.", - "units": "s", - "default": 1, + "shortDesc": "RGB Led brightness limit", + "longDesc": "Set to 0 to disable, 1 for minimum brightness up to 15 (max)", + "default": 15, "decimalPlaces": 3, "minValue": 0, - "maxValue": 10 + "maxValue": 15 }, { - "name": "MPC_THR_CURVE", + "name": "LIGHT_EN_BLINKM", "type": "Int32", - "group": "Multicopter Position Control", + "group": "Peripheral", "category": "Standard", - "shortDesc": "Thrust curve in Manual Mode", - "longDesc": "This parameter defines how the throttle stick input is mapped to commanded thrust in Manual/Stabilized flight mode. In case the default is used ('Rescale to hover thrust'), the stick input is linearly rescaled, such that a centered stick corresponds to the hover throttle (see MPC_THR_HOVER). Select 'No Rescale' to directly map the stick 1:1 to the output. This can be useful in case the hover thrust is very low and the default would lead to too much distortion (e.g. if hover thrust is set to 20%, 80% of the upper thrust range is squeezed into the upper half of the stick range). Note: In case MPC_THR_HOVER is set to 50%, the modes 0 and 1 are the same.", + "shortDesc": "BlinkM LED", "default": 0, - "values": [ - { - "value": 0, - "description": "Rescale to hover thrust" - }, - { - "value": 1, - "description": "No Rescale" - } - ], + "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "MPC_THR_HOVER", + "name": "LNDFW_AIRSPD_MAX", + "type": "Float", + "group": "Land Detector", + "category": "Standard", + "shortDesc": "Airspeed max", + "longDesc": "Maximum airspeed allowed in the landed state (m/s)", + "units": "m/s", + "default": 8, + "decimalPlaces": 1, + "minValue": 4, + "maxValue": 20 + }, + { + "name": "LNDFW_VEL_XY_MAX", + "type": "Float", + "group": "Land Detector", + "category": "Standard", + "shortDesc": "Fixedwing max horizontal velocity", + "longDesc": "Maximum horizontal velocity allowed in the landed state (m/s)", + "units": "m/s", + "default": 5, + "decimalPlaces": 1, + "minValue": 0.5, + "maxValue": 10 + }, + { + "name": "LNDFW_VEL_Z_MAX", + "type": "Float", + "group": "Land Detector", + "category": "Standard", + "shortDesc": "Fixedwing max climb rate", + "longDesc": "Maximum vertical velocity allowed in the landed state (m/s up and down)", + "units": "m/s", + "default": 3, + "decimalPlaces": 1, + "minValue": 0.1, + "maxValue": 20 + }, + { + "name": "LNDFW_XYACC_MAX", + "type": "Float", + "group": "Land Detector", + "category": "Standard", + "shortDesc": "Fixedwing max horizontal acceleration", + "longDesc": "Maximum horizontal (x,y body axes) acceleration allowed in the landed state (m/s^2)", + "units": "m/s^2", + "default": 8, + "decimalPlaces": 1, + "minValue": 2, + "maxValue": 15 + }, + { + "name": "LNDMC_ALT_MAX", + "type": "Float", + "group": "Land Detector", + "category": "Standard", + "shortDesc": "Maximum altitude for multicopters", + "longDesc": "The system will obey this limit as a hard altitude limit. This setting will be consolidated with the GF_MAX_VER_DIST parameter. A negative value indicates no altitude limitation.", + "units": "m", + "default": -1, + "decimalPlaces": 2, + "minValue": -1, + "maxValue": 10000 + }, + { + "name": "LNDMC_FFALL_THR", "type": "Float", - "group": "Multicopter Position Control", + "group": "Land Detector", "category": "Standard", - "shortDesc": "Hover thrust", - "longDesc": "Vertical thrust required to hover. This value is mapped to center stick for manual throttle control. With this value set to the thrust required to hover, transition from manual to Altitude or Position mode while hovering will occur with the throttle stick near center, which is then interpreted as (near) zero demand for vertical speed. This parameter is also important for the landing detection to work correctly.", - "units": "norm", - "default": 0.5, - "increment": 0.01, + "shortDesc": "Multicopter specific force threshold", + "longDesc": "Multicopter threshold on the specific force measured by accelerometers in m/s^2 for free-fall detection", + "units": "m/s^2", + "default": 2, "decimalPlaces": 2, "minValue": 0.1, - "maxValue": 0.8 + "maxValue": 10 }, { - "name": "MPC_THR_MAX", + "name": "LNDMC_FFALL_TTRI", "type": "Float", - "group": "Multicopter Position Control", + "group": "Land Detector", "category": "Standard", - "shortDesc": "Maximum thrust in auto thrust control", - "longDesc": "Limit max allowed thrust", - "units": "norm", - "default": 1, - "increment": 0.01, + "shortDesc": "Multicopter free-fall trigger time", + "longDesc": "Seconds (decimal) that freefall conditions have to met before triggering a freefall. Minimal value is limited by LAND_DETECTOR_UPDATE_RATE=50Hz in landDetector.h", + "units": "s", + "default": 0.3, "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 + "minValue": 0.02, + "maxValue": 5 }, { - "name": "MPC_THR_MIN", + "name": "LNDMC_LOW_T_THR", "type": "Float", - "group": "Multicopter Position Control", + "group": "Land Detector", "category": "Standard", - "shortDesc": "Minimum thrust in auto thrust control", - "longDesc": "It's recommended to set it > 0 to avoid free fall with zero thrust.", + "shortDesc": "Low throttle detection threshold", + "longDesc": "Defines the commanded throttle value below which the land detector considers the vehicle to have \"low thrust\". This is one condition that is used to detect the ground contact state. The value is calculated as val = (MPC_THR_HOVER - MPC_THR_MIN) * LNDMC_LOW_T_THR + MPC_THR_MIN Increase this value if the system takes long time to detect landing.", "units": "norm", - "default": 0.12, - "increment": 0.01, + "default": 0.3, "decimalPlaces": 2, - "minValue": 0.05, - "maxValue": 1 + "minValue": 0.1, + "maxValue": 0.9 }, { - "name": "MPC_TILTMAX_AIR", + "name": "LNDMC_ROT_MAX", "type": "Float", - "group": "Multicopter Position Control", + "group": "Land Detector", "category": "Standard", - "shortDesc": "Maximum tilt angle in air", - "longDesc": "Limits maximum tilt in AUTO and POSCTRL modes during flight.", - "units": "deg", - "default": 45, + "shortDesc": "Multicopter max rotation", + "longDesc": "Maximum allowed angular velocity around each axis allowed in the landed state.", + "units": "deg/s", + "default": 20, "decimalPlaces": 1, - "minValue": 20, - "maxValue": 89 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "MPC_TILTMAX_LND", + "name": "LNDMC_XY_VEL_MAX", "type": "Float", - "group": "Multicopter Position Control", + "group": "Land Detector", "category": "Standard", - "shortDesc": "Maximum tilt during landing", - "longDesc": "Limits maximum tilt angle on landing.", - "units": "deg", - "default": 12, + "shortDesc": "Multicopter max horizontal velocity", + "longDesc": "Maximum horizontal velocity allowed in the landed state (m/s)", + "units": "m/s", + "default": 1.5, "decimalPlaces": 1, - "minValue": 10, - "maxValue": 89 + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "MPC_TKO_RAMP_T", + "name": "LNDMC_Z_VEL_MAX", "type": "Float", - "group": "Multicopter Position Control", + "group": "Land Detector", "category": "Standard", - "shortDesc": "Position control smooth takeoff ramp time constant", - "longDesc": "Increasing this value will make automatic and manual takeoff slower. If it's too slow the drone might scratch the ground and tip over. A time constant of 0 disables the ramp", - "default": 3, + "shortDesc": "Multicopter max climb rate", + "longDesc": "Maximum vertical velocity allowed in the landed state (m/s up and down)", + "units": "m/s", + "default": 0.5, + "decimalPlaces": 1, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 + }, + { + "name": "LND_FLIGHT_T_HI", + "type": "Int32", + "group": "Land Detector", + "category": "System", + "shortDesc": "Total flight time in microseconds", + "longDesc": "Total flight time of this autopilot. Higher 32 bits of the value. Flight time in microseconds = (LND_FLIGHT_T_HI << 32) | LND_FLIGHT_T_LO.", + "default": 0, + "volatile": true, "decimalPlaces": 3, "minValue": 0, - "maxValue": 5 + "maxValue": 2.14748e+09 }, { - "name": "MPC_TKO_SPEED", + "name": "LND_FLIGHT_T_LO", + "type": "Int32", + "group": "Land Detector", + "category": "System", + "shortDesc": "Total flight time in microseconds", + "longDesc": "Total flight time of this autopilot. Lower 32 bits of the value. Flight time in microseconds = (LND_FLIGHT_T_HI << 32) | LND_FLIGHT_T_LO.", + "default": 0, + "volatile": true, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 2.14748e+09 + }, + { + "name": "LPE_ACC_XY", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Takeoff climb rate", - "units": "m/s", - "default": 1.5, + "shortDesc": "Accelerometer xy noise density", + "longDesc": "Data sheet noise density = 150ug/sqrt(Hz) = 0.0015 m/s^2/sqrt(Hz) Larger than data sheet to account for tilt error.", + "units": "m/s^2/sqrt(Hz)", + "default": 0.012, + "decimalPlaces": 4, + "minValue": 1e-05, + "maxValue": 2 + }, + { + "name": "LPE_ACC_Z", + "type": "Float", + "group": "Local Position Estimator", + "category": "Standard", + "shortDesc": "Accelerometer z noise density", + "longDesc": "Data sheet noise density = 150ug/sqrt(Hz) = 0.0015 m/s^2/sqrt(Hz)", + "units": "m/s^2/sqrt(Hz)", + "default": 0.02, + "decimalPlaces": 4, + "minValue": 1e-05, + "maxValue": 2 + }, + { + "name": "LPE_BAR_Z", + "type": "Float", + "group": "Local Position Estimator", + "category": "Standard", + "shortDesc": "Barometric presssure altitude z standard deviation", + "units": "m", + "default": 3, "decimalPlaces": 2, + "minValue": 0.01, + "maxValue": 100 + }, + { + "name": "LPE_EPH_MAX", + "type": "Float", + "group": "Local Position Estimator", + "category": "Standard", + "shortDesc": "Max EPH allowed for GPS initialization", + "units": "m", + "default": 3, + "decimalPlaces": 3, "minValue": 1, "maxValue": 5 }, { - "name": "MPC_USE_HTE", + "name": "LPE_EPV_MAX", + "type": "Float", + "group": "Local Position Estimator", + "category": "Standard", + "shortDesc": "Max EPV allowed for GPS initialization", + "units": "m", + "default": 5, + "decimalPlaces": 3, + "minValue": 1, + "maxValue": 5 + }, + { + "name": "LPE_FAKE_ORIGIN", "type": "Int32", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Hover thrust source selector", - "longDesc": "Set false to use the fixed parameter MPC_THR_HOVER Set true to use the value computed by the hover thrust estimator", - "default": 1, + "shortDesc": "Enable publishing of a fake global position (e.g for AUTO missions using Optical Flow) by initializing the estimator to the LPE_LAT/LON parameters when global information is unavailable", + "default": 0, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 1 }, { - "name": "MPC_VELD_LP", + "name": "LPE_FGYRO_HP", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Low pass filter cut freq. for numerical velocity derivative", + "shortDesc": "Flow gyro high pass filter cut off frequency", "units": "Hz", - "default": 5, - "decimalPlaces": 2, + "default": 0.001, + "decimalPlaces": 3, "minValue": 0, - "maxValue": 10 + "maxValue": 2 }, { - "name": "MPC_VEL_MANUAL", + "name": "LPE_FLW_OFF_Z", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Maximum horizontal velocity setpoint for manual controlled mode If velocity setpoint larger than MPC_XY_VEL_MAX is set, then the setpoint will be capped to MPC_XY_VEL_MAX", - "units": "m/s", - "default": 10, - "increment": 1, - "decimalPlaces": 2, - "minValue": 3, - "maxValue": 20 + "shortDesc": "Optical flow z offset from center", + "units": "m", + "default": 0, + "decimalPlaces": 3, + "minValue": -1, + "maxValue": 1 }, { - "name": "MPC_XY_CRUISE", + "name": "LPE_FLW_QMIN", + "type": "Int32", + "group": "Local Position Estimator", + "category": "Standard", + "shortDesc": "Optical flow minimum quality threshold", + "default": 150, + "decimalPlaces": 0, + "minValue": 0, + "maxValue": 255 + }, + { + "name": "LPE_FLW_R", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Maximum horizontal velocity in mission", - "longDesc": "Normal horizontal velocity in AUTO modes (includes also RTL / hold / etc.) and endpoint for position stabilized mode (POSCTRL).", - "units": "m/s", - "default": 5, - "increment": 1, - "decimalPlaces": 2, - "minValue": 3, - "maxValue": 20 + "shortDesc": "Optical flow rotation (roll/pitch) noise gain", + "units": "m/s / (rad)", + "default": 7, + "decimalPlaces": 3, + "minValue": 0.1, + "maxValue": 10 + }, + { + "name": "LPE_FLW_RR", + "type": "Float", + "group": "Local Position Estimator", + "category": "Standard", + "shortDesc": "Optical flow angular velocity noise gain", + "units": "m/s / (rad/s)", + "default": 7, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 10 }, { - "name": "MPC_XY_MAN_EXPO", + "name": "LPE_FLW_SCALE", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Manual position control stick exponential curve sensitivity", - "longDesc": "The higher the value the less sensitivity the stick has around zero while still reaching the maximum value with full stick deflection. 0 Purely linear input curve (default) 1 Purely cubic input curve", - "default": 0.6, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 + "shortDesc": "Optical flow scale", + "units": "m", + "default": 1.3, + "decimalPlaces": 3, + "minValue": 0.1, + "maxValue": 10 }, { - "name": "MPC_XY_P", - "type": "Float", - "group": "Multicopter Position Control", + "name": "LPE_FUSION", + "type": "Int32", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Proportional gain for horizontal position error", - "default": 0.95, - "decimalPlaces": 2, + "shortDesc": "Integer bitmask controlling data fusion", + "longDesc": "Set bits in the following positions to enable: 0 : Set to true to fuse GPS data if available, also requires GPS for altitude init 1 : Set to true to fuse optical flow data if available 2 : Set to true to fuse vision position 3 : Set to true to enable landing target 4 : Set to true to fuse land detector 5 : Set to true to publish AGL as local position down component 6 : Set to true to enable flow gyro compensation 7 : Set to true to enable baro fusion default (145 - GPS, baro, land detector)", + "default": 145, + "decimalPlaces": 3, "minValue": 0, - "maxValue": 2 + "maxValue": 255 }, { - "name": "MPC_XY_TRAJ_P", + "name": "LPE_GPS_DELAY", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Proportional gain for horizontal trajectory position error", - "default": 0.5, - "decimalPlaces": 1, - "minValue": 0.1, - "maxValue": 1 + "shortDesc": "GPS delay compensaton", + "units": "sec", + "default": 0.29, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 0.4 }, { - "name": "MPC_XY_VEL_D_ACC", + "name": "LPE_GPS_VXY", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Differential gain for horizontal velocity error. Small values help reduce fast oscillations. If value is too big oscillations will appear again", - "longDesc": "defined as correction acceleration in m/s^2 per m/s^2 velocity derivative", - "default": 0.2, + "shortDesc": "GPS xy velocity standard deviation. EPV used if greater than this value", + "units": "m/s", + "default": 0.25, "decimalPlaces": 3, - "minValue": 0.1, + "minValue": 0.01, "maxValue": 2 }, { - "name": "MPC_XY_VEL_I_ACC", + "name": "LPE_GPS_VZ", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Integral gain for horizontal velocity error", - "longDesc": "defined as correction acceleration in m/s^2 per m velocity integral Non-zero value allows to eliminate steady state errors in the presence of disturbances like wind.", - "default": 0.4, + "shortDesc": "GPS z velocity standard deviation", + "units": "m/s", + "default": 0.25, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 60 + "minValue": 0.01, + "maxValue": 2 }, { - "name": "MPC_XY_VEL_MAX", + "name": "LPE_GPS_XY", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Maximum horizontal velocity", - "longDesc": "Maximum horizontal velocity in AUTO mode. If higher speeds are commanded in a mission they will be capped to this velocity.", - "units": "m/s", - "default": 12, - "increment": 1, + "shortDesc": "Minimum GPS xy standard deviation, uses reported EPH if greater", + "units": "m", + "default": 1, "decimalPlaces": 2, - "minValue": 0, - "maxValue": 20 + "minValue": 0.01, + "maxValue": 5 }, { - "name": "MPC_XY_VEL_P_ACC", + "name": "LPE_GPS_Z", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Proportional gain for horizontal velocity error", - "longDesc": "defined as correction acceleration in m/s^2 per m/s velocity error", - "default": 1.8, + "shortDesc": "Minimum GPS z standard deviation, uses reported EPV if greater", + "units": "m", + "default": 3, "decimalPlaces": 2, - "minValue": 1.2, - "maxValue": 3 + "minValue": 0.01, + "maxValue": 200 }, { - "name": "MPC_YAWRAUTO_MAX", + "name": "LPE_LAND_VXY", "type": "Float", - "group": "Multicopter Attitude Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Max yaw rate in auto mode", - "longDesc": "Limit the rate of change of the yaw setpoint in autonomous mode to avoid large control output and mixer saturation.", - "units": "deg/s", - "default": 45, - "increment": 5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 360 + "shortDesc": "Land detector xy velocity standard deviation", + "units": "m/s", + "default": 0.05, + "decimalPlaces": 3, + "minValue": 0.01, + "maxValue": 10 }, { - "name": "MPC_YAW_EXPO", + "name": "LPE_LAND_Z", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Manual control stick yaw rotation exponential curve", - "longDesc": "The higher the value the less sensitivity the stick has around zero while still reaching the maximum value with full stick deflection. 0 Purely linear input curve (default) 1 Purely cubic input curve", - "default": 0.6, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1 + "shortDesc": "Land detector z standard deviation", + "units": "m", + "default": 0.03, + "decimalPlaces": 3, + "minValue": 0.001, + "maxValue": 10 }, { - "name": "MPC_YAW_MODE", - "type": "Int32", - "group": "Mission", + "name": "LPE_LAT", + "type": "Float", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Yaw mode", - "longDesc": "Specifies the heading in Auto.", - "default": 0, - "values": [ - { - "value": 0, - "description": "towards waypoint" - }, - { - "value": 1, - "description": "towards home" - }, - { - "value": 2, - "description": "away from home" - }, - { - "value": 3, - "description": "along trajectory" - }, - { - "value": 4, - "description": "towards waypoint (yaw first)" - } - ], - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 4 + "shortDesc": "Local origin latitude for nav w/o GPS", + "units": "deg", + "default": 47.3977, + "decimalPlaces": 8, + "minValue": -90, + "maxValue": 90 }, { - "name": "MPC_Z_MAN_EXPO", + "name": "LPE_LDR_OFF_Z", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Manual control stick vertical exponential curve", - "longDesc": "The higher the value the less sensitivity the stick has around zero while still reaching the maximum value with full stick deflection. 0 Purely linear input curve (default) 1 Purely cubic input curve", - "default": 0.6, - "decimalPlaces": 2, - "minValue": 0, + "shortDesc": "Lidar z offset from center of vehicle +down", + "units": "m", + "default": 0, + "decimalPlaces": 3, + "minValue": -1, "maxValue": 1 }, { - "name": "MPC_Z_P", + "name": "LPE_LDR_Z", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Proportional gain for vertical position error", - "default": 1, - "decimalPlaces": 2, - "minValue": 0, - "maxValue": 1.5 + "shortDesc": "Lidar z standard deviation", + "units": "m", + "default": 0.03, + "decimalPlaces": 3, + "minValue": 0.01, + "maxValue": 1 }, { - "name": "MPC_Z_VEL_D_ACC", + "name": "LPE_LON", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Differential gain for vertical velocity error", - "longDesc": "defined as correction acceleration in m/s^2 per m/s^2 velocity derivative", - "default": 0, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 2 + "shortDesc": "Local origin longitude for nav w/o GPS", + "units": "deg", + "default": 8.54559, + "decimalPlaces": 8, + "minValue": -180, + "maxValue": 180 }, { - "name": "MPC_Z_VEL_I_ACC", + "name": "LPE_LT_COV", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Integral gain for vertical velocity error", - "longDesc": "defined as correction acceleration in m/s^2 per m velocity integral Non zero value allows hovering thrust estimation on stabilized or autonomous takeoff.", - "default": 2, - "decimalPlaces": 3, - "minValue": 0.2, - "maxValue": 2 + "shortDesc": "Minimum landing target standard covariance, uses reported covariance if greater", + "units": "m^2", + "default": 0.0001, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 10 }, { - "name": "MPC_Z_VEL_MAX_DN", + "name": "LPE_PN_B", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Maximum vertical descent velocity", - "longDesc": "Maximum vertical velocity in AUTO mode and endpoint for stabilized modes (ALTCTRL, POSCTRL).", - "units": "m/s", - "default": 1, - "decimalPlaces": 3, - "minValue": 0.5, - "maxValue": 4 + "shortDesc": "Accel bias propagation noise density", + "units": "(m/s^2)/s/sqrt(Hz)", + "default": 0.001, + "decimalPlaces": 8, + "minValue": 0, + "maxValue": 1 }, { - "name": "MPC_Z_VEL_MAX_UP", + "name": "LPE_PN_P", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Maximum vertical ascent velocity", - "longDesc": "Maximum vertical velocity in AUTO mode and endpoint for stabilized modes (ALTCTRL, POSCTRL).", - "units": "m/s", - "default": 3, - "decimalPlaces": 1, - "minValue": 0.5, - "maxValue": 8 + "shortDesc": "Position propagation noise density", + "longDesc": "Increase to trust measurements more. Decrease to trust model more.", + "units": "m/s/sqrt(Hz)", + "default": 0.1, + "decimalPlaces": 8, + "minValue": 0, + "maxValue": 1 }, { - "name": "MPC_Z_VEL_P_ACC", + "name": "LPE_PN_T", "type": "Float", - "group": "Multicopter Position Control", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Proportional gain for vertical velocity error", - "longDesc": "defined as correction acceleration in m/s^2 per m/s velocity error", - "default": 4, - "decimalPlaces": 2, - "minValue": 2, - "maxValue": 8 + "shortDesc": "Terrain random walk noise density, hilly/outdoor (0.1), flat/Indoor (0.001)", + "units": "(m/s)/(sqrt(hz))", + "default": 0.001, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 1 }, { - "name": "NAV_ACC_RAD", + "name": "LPE_PN_V", "type": "Float", - "group": "Mission", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Acceptance Radius", - "longDesc": "Default acceptance radius, overridden by acceptance radius of waypoint if set. For fixed wing the L1 turning distance is used for horizontal acceptance.", - "units": "m", - "default": 10, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0.05, - "maxValue": 200 + "shortDesc": "Velocity propagation noise density", + "longDesc": "Increase to trust measurements more. Decrease to trust model more.", + "units": "(m/s)/s/sqrt(Hz)", + "default": 0.1, + "decimalPlaces": 8, + "minValue": 0, + "maxValue": 1 }, { - "name": "NAV_AH_ALT", + "name": "LPE_SNR_OFF_Z", "type": "Float", - "group": "Data Link Loss", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Airfield home alt", - "longDesc": "Altitude of airfield home waypoint", + "shortDesc": "Sonar z offset from center of vehicle +down", "units": "m", - "default": 600, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": -50, - "maxValue": 3.40282e+38 + "default": 0, + "decimalPlaces": 3, + "minValue": -1, + "maxValue": 1 }, { - "name": "NAV_AH_LAT", - "type": "Int32", - "group": "Data Link Loss", + "name": "LPE_SNR_Z", + "type": "Float", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Airfield home Lat", - "longDesc": "Latitude of airfield home waypoint", - "units": "deg * 1e7", - "default": -2.65848e+08, + "shortDesc": "Sonar z standard deviation", + "units": "m", + "default": 0.05, "decimalPlaces": 3, - "minValue": -9e+08, - "maxValue": 9e+08 + "minValue": 0.01, + "maxValue": 1 }, { - "name": "NAV_AH_LON", - "type": "Int32", - "group": "Data Link Loss", + "name": "LPE_T_MAX_GRADE", + "type": "Float", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Airfield home Lon", - "longDesc": "Longitude of airfield home waypoint", - "units": "deg * 1e7", - "default": 1.51842e+09, + "shortDesc": "Terrain maximum percent grade, hilly/outdoor (100 = 45 deg), flat/Indoor (0 = 0 deg) Used to calculate increased terrain random walk nosie due to movement", + "units": "%", + "default": 1, "decimalPlaces": 3, - "minValue": -1.8e+09, - "maxValue": 1.8e+09 + "minValue": 0, + "maxValue": 100 }, { - "name": "NAV_DLL_ACT", - "type": "Int32", - "group": "Mission", + "name": "LPE_VIC_P", + "type": "Float", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Set data link loss failsafe mode", - "longDesc": "The data link loss failsafe will only be entered after a timeout, set by COM_DL_LOSS_T in seconds. Once the timeout occurs the selected action will be executed.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Disabled" - }, - { - "value": 1, - "description": "Hold mode" - }, - { - "value": 2, - "description": "Return mode" - }, - { - "value": 3, - "description": "Land mode" - }, - { - "value": 5, - "description": "Terminate" - }, - { - "value": 6, - "description": "Lockdown" - } - ], - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Vicon position standard deviation", + "units": "m", + "default": 0.001, + "decimalPlaces": 4, + "minValue": 0.0001, + "maxValue": 1 }, { - "name": "NAV_FORCE_VT", - "type": "Int32", - "group": "Mission", + "name": "LPE_VIS_DELAY", + "type": "Float", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Force VTOL mode takeoff and land", - "default": 1, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Vision delay compensaton", + "longDesc": "Set to zero to enable automatic compensation from measurement timestamps", + "units": "sec", + "default": 0.1, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 0.1 }, { - "name": "NAV_FT_DST", + "name": "LPE_VIS_XY", "type": "Float", - "group": "Follow target", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Distance to follow target from", - "longDesc": "The distance in meters to follow the target at", - "units": "meters", - "default": 8, + "shortDesc": "Vision xy standard deviation", + "units": "m", + "default": 0.1, "decimalPlaces": 3, - "minValue": 1, - "maxValue": 3.40282e+38 + "minValue": 0.01, + "maxValue": 1 }, { - "name": "NAV_FT_FS", - "type": "Int32", - "group": "Follow target", + "name": "LPE_VIS_Z", + "type": "Float", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Side to follow target from", - "longDesc": "The side to follow the target from (front right = 0, behind = 1, front = 2, front left = 3)", - "units": "n/a", - "default": 1, + "shortDesc": "Vision z standard deviation", + "units": "m", + "default": 0.5, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 3 + "minValue": 0.01, + "maxValue": 100 }, { - "name": "NAV_FT_RS", + "name": "LPE_VXY_PUB", "type": "Float", - "group": "Follow target", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "Dynamic filtering algorithm responsiveness to target movement lower numbers increase the responsiveness to changing long lat but also ignore less noise", - "units": "n/a", - "default": 0.5, - "decimalPlaces": 2, - "minValue": 0, + "shortDesc": "Required velocity xy standard deviation to publish position", + "units": "m/s", + "default": 0.3, + "decimalPlaces": 3, + "minValue": 0.01, "maxValue": 1 }, { - "name": "NAV_FW_ALTL_RAD", + "name": "LPE_X_LP", "type": "Float", - "group": "Mission", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "FW Altitude Acceptance Radius before a landing", - "longDesc": "Altitude acceptance used for the last waypoint before a fixed-wing landing. This is usually smaller than the standard vertical acceptance because close to the ground higher accuracy is required.", - "units": "m", + "shortDesc": "Cut frequency for state publication", + "units": "Hz", "default": 5, - "decimalPlaces": 1, - "minValue": 0.05, - "maxValue": 200 + "decimalPlaces": 0, + "minValue": 5, + "maxValue": 1000 }, { - "name": "NAV_FW_ALT_RAD", + "name": "LPE_Z_PUB", "type": "Float", - "group": "Mission", + "group": "Local Position Estimator", "category": "Standard", - "shortDesc": "FW Altitude Acceptance Radius", - "longDesc": "Acceptance radius for fixedwing altitude.", + "shortDesc": "Required z standard deviation to publish altitude/ terrain", "units": "m", - "default": 10, - "increment": 0.5, + "default": 1, "decimalPlaces": 1, - "minValue": 0.05, - "maxValue": 200 - }, - { - "name": "NAV_GPSF_LT", - "type": "Float", - "group": "GPS Failure Navigation", - "category": "Standard", - "shortDesc": "Loiter time", - "longDesc": "The time in seconds the system should do open loop loiter and wait for GPS recovery before it goes into flight termination. Set to 0 to disable.", - "units": "s", - "default": 0, - "increment": 1, - "decimalPlaces": 0, - "minValue": 0, - "maxValue": 3600 + "minValue": 0.3, + "maxValue": 5 }, { - "name": "NAV_GPSF_P", + "name": "LTEST_ACC_UNC", "type": "Float", - "group": "GPS Failure Navigation", + "group": "Landing target Estimator", "category": "Standard", - "shortDesc": "Fixed pitch angle", - "longDesc": "Pitch in degrees during the open loop loiter", - "units": "deg", - "default": 0, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": -30, - "maxValue": 30 + "shortDesc": "Acceleration uncertainty", + "longDesc": "Variance of acceleration measurement used for landing target position prediction. Higher values results in tighter following of the measurements and more lenient outlier rejection", + "units": "(m/s^2)^2", + "default": 10, + "decimalPlaces": 2, + "minValue": 0.01, + "maxValue": 3.40282e+38 }, { - "name": "NAV_GPSF_R", + "name": "LTEST_MEAS_UNC", "type": "Float", - "group": "GPS Failure Navigation", + "group": "Landing target Estimator", "category": "Standard", - "shortDesc": "Fixed bank angle", - "longDesc": "Roll in degrees during the loiter", - "units": "deg", - "default": 15, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 30 + "shortDesc": "Landing target measurement uncertainty", + "longDesc": "Variance of the landing target measurement from the driver. Higher values results in less agressive following of the measurement and a smoother output as well as fewer rejected measurements.", + "units": "tan(rad)^2", + "default": 0.005, + "decimalPlaces": 4, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 }, { - "name": "NAV_GPSF_TR", - "type": "Float", - "group": "GPS Failure Navigation", + "name": "LTEST_MODE", + "type": "Int32", + "group": "Landing target Estimator", "category": "Standard", - "shortDesc": "Thrust", - "longDesc": "Thrust value which is set during the open loop loiter", - "units": "norm", + "shortDesc": "Landing target mode", + "longDesc": "Configure the mode of the landing target. Depending on the mode, the landing target observations are used differently to aid position estimation. Mode Moving: The landing target may be moving around while in the field of view of the vehicle. Landing target measurements are not used to aid positioning. Mode Stationary: The landing target is stationary. Measured velocity w.r.t. the landing target is used to aid velocity estimation.", "default": 0, - "increment": 0.05, - "decimalPlaces": 2, + "values": [ + { + "value": 0, + "description": "Moving" + }, + { + "value": 1, + "description": "Stationary" + } + ], + "decimalPlaces": 3, "minValue": 0, "maxValue": 1 }, { - "name": "NAV_LOITER_RAD", + "name": "LTEST_POS_UNC_IN", "type": "Float", - "group": "Mission", + "group": "Landing target Estimator", "category": "Standard", - "shortDesc": "Loiter radius (FW only)", - "longDesc": "Default value of loiter radius for missions, Hold mode, Return mode, etc. (fixedwing only).", - "units": "m", - "default": 50, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 25, - "maxValue": 1000 + "shortDesc": "Initial landing target position uncertainty", + "longDesc": "Initial variance of the relative landing target position in x and y direction", + "units": "m^2", + "default": 0.1, + "decimalPlaces": 3, + "minValue": 0.001, + "maxValue": 3.40282e+38 }, { - "name": "NAV_MC_ALT_RAD", + "name": "LTEST_SCALE_X", "type": "Float", - "group": "Mission", + "group": "Landing target Estimator", "category": "Standard", - "shortDesc": "MC Altitude Acceptance Radius", - "longDesc": "Acceptance radius for multicopter altitude.", - "units": "m", - "default": 0.8, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0.05, - "maxValue": 200 + "shortDesc": "Scale factor for sensor measurements in sensor x axis", + "longDesc": "Landing target x measurements are scaled by this factor before being used", + "default": 1, + "decimalPlaces": 3, + "minValue": 0.01, + "maxValue": 3.40282e+38 }, { - "name": "NAV_MIN_FT_HT", + "name": "LTEST_SCALE_Y", "type": "Float", - "group": "Follow target", + "group": "Landing target Estimator", "category": "Standard", - "shortDesc": "Minimum follow target altitude", - "longDesc": "The minimum height in meters relative to home for following a target", - "units": "meters", - "default": 8, + "shortDesc": "Scale factor for sensor measurements in sensor y axis", + "longDesc": "Landing target y measurements are scaled by this factor before being used", + "default": 1, "decimalPlaces": 3, - "minValue": 8, + "minValue": 0.01, "maxValue": 3.40282e+38 }, { - "name": "NAV_RCL_ACT", + "name": "LTEST_VEL_UNC_IN", + "type": "Float", + "group": "Landing target Estimator", + "category": "Standard", + "shortDesc": "Initial landing target velocity uncertainty", + "longDesc": "Initial variance of the relative landing target velocity in x and y direction", + "units": "(m/s)^2", + "default": 0.1, + "decimalPlaces": 3, + "minValue": 0.001, + "maxValue": 3.40282e+38 + }, + { + "name": "MAV_<#>_CONFIG", "type": "Int32", - "group": "Mission", + "group": "MAVLink", "category": "Standard", - "shortDesc": "Set RC loss failsafe mode", - "longDesc": "The RC loss failsafe will only be entered after a timeout, set by COM_RC_LOSS_T in seconds. If RC input checks have been disabled by setting the COM_RC_IN_MODE param it will not be triggered.", - "default": 2, + "shortDesc": "Serial Configuration for MAVLink (instance 0)", + "longDesc": "Configure on which serial port to run MAVLink.", + "default": 101, "values": [ { "value": 0, "description": "Disabled" }, + { + "value": 6, + "description": "UART 6" + }, + { + "value": 101, + "description": "TELEM 1" + }, + { + "value": 102, + "description": "TELEM 2" + }, + { + "value": 103, + "description": "TELEM 3" + }, + { + "value": 104, + "description": "TELEM/SERIAL 4" + }, + { + "value": 201, + "description": "GPS 1" + }, + { + "value": 202, + "description": "GPS 2" + }, + { + "value": 203, + "description": "GPS 3" + }, + { + "value": 300, + "description": "Radio Controller" + } + ], + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "MAV_<#>_FORWARD", + "type": "Int32", + "group": "MAVLink", + "category": "Standard", + "shortDesc": "Enable MAVLink Message forwarding for instance 0", + "longDesc": "If enabled, forward incoming MAVLink messages to other MAVLink ports if the message is either broadcast or the target is not the autopilot. This allows for example a GCS to talk to a camera that is connected to the autopilot via MAVLink (on a different link than the GCS).", + "default": 1, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "MAV_<#>_MODE", + "type": "Int32", + "group": "MAVLink", + "category": "Standard", + "shortDesc": "MAVLink Mode for instance 0", + "longDesc": "The MAVLink Mode defines the set of streamed messages (for example the vehicle's attitude) and their sending rates.", + "default": 0, + "values": [ + { + "value": 0, + "description": "Normal" + }, { "value": 1, - "description": "Hold mode" + "description": "Custom" }, { "value": 2, - "description": "Return mode" + "description": "Onboard" }, { "value": 3, - "description": "Land mode" + "description": "OSD" + }, + { + "value": 4, + "description": "Magic" }, { "value": 5, - "description": "Terminate" + "description": "Config" }, { - "value": 6, - "description": "Lockdown" + "value": 7, + "description": "Minimal" + }, + { + "value": 8, + "description": "External Vision" } ], + "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "NAV_TRAFF_AVOID", + "name": "MAV_<#>_RADIO_CTL", "type": "Int32", - "group": "Mission", + "group": "MAVLink", "category": "Standard", - "shortDesc": "Set traffic avoidance mode", - "longDesc": "Enabling this will allow the system to respond to transponder data from e.g. ADSB transponders", + "shortDesc": "Enable software throttling of mavlink on instance 0", + "longDesc": "If enabled, MAVLink messages will be throttled according to `txbuf` field reported by radio_status. Requires a radio to send the mavlink message RADIO_STATUS.", "default": 1, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "MAV_<#>_RATE", + "type": "Int32", + "group": "MAVLink", + "category": "Standard", + "shortDesc": "Maximum MAVLink sending rate for instance 0", + "longDesc": "Configure the maximum sending rate for the MAVLink streams in Bytes/sec. If the configured streams exceed the maximum rate, the sending rate of each stream is automatically decreased. If this is set to 0 a value of half of the theoretical maximum bandwidth is used. This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on 8N1-configured links).", + "units": "B/s", + "default": 1200, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 2.14748e+09 + }, + { + "name": "MAV_BROADCAST", + "type": "Int32", + "group": "MAVLink", + "category": "Standard", + "shortDesc": "Broadcast heartbeats on local network", + "longDesc": "This allows a ground control station to automatically find the drone on the local network.", + "default": 0, "values": [ { "value": 0, - "description": "Disabled" + "description": "Never broadcast" }, { "value": 1, - "description": "Warn only" + "description": "Always broadcast" }, { "value": 2, - "description": "Return mode" - }, - { - "value": 3, - "description": "Land mode" - }, - { - "value": 4, - "description": "Position Hold mode" + "description": "Only multicast" } ], "decimalPlaces": 3, @@ -11628,4578 +7746,4287 @@ "maxValue": 2.14748e+09 }, { - "name": "NAV_TRAFF_A_RADM", - "type": "Float", - "group": "Mission", + "name": "MAV_COMP_ID", + "type": "Int32", + "group": "MAVLink", "category": "Standard", - "shortDesc": "Set NAV TRAFFIC AVOID RADIUS MANNED", - "longDesc": "Defines the Radius where NAV TRAFFIC AVOID is Called For Manned Aviation", - "units": "m", - "default": 500, + "shortDesc": "MAVLink component ID", + "default": 1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 500, - "maxValue": 3.40282e+38 + "minValue": 1, + "maxValue": 250 }, { - "name": "NAV_TRAFF_A_RADU", - "type": "Float", - "group": "Mission", + "name": "MAV_FWDEXTSP", + "type": "Int32", + "group": "MAVLink", "category": "Standard", - "shortDesc": "Set NAV TRAFFIC AVOID RADIUS", - "longDesc": "Defines the Radius where NAV TRAFFIC AVOID is Called For Unmanned Aviation", - "units": "m", - "default": 10, + "shortDesc": "Forward external setpoint messages", + "longDesc": "If set to 1 incoming external setpoint messages will be directly forwarded to the controllers if in offboard control mode", + "default": 1, "decimalPlaces": 3, - "minValue": 10, - "maxValue": 500 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "OSD_ATXXXX_CFG", + "name": "MAV_HASH_CHK_EN", "type": "Int32", - "group": "OSD", + "group": "MAVLink", "category": "Standard", - "shortDesc": "Enable/Disable the ATXXX OSD Chip", - "longDesc": "Configure the ATXXXX OSD Chip (mounted on the OmnibusF4SD board) and select the transmission standard.", + "shortDesc": "Parameter hash check", + "longDesc": "Disabling the parameter hash check functionality will make the mavlink instance stream parameters continuously.", + "default": 1, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "MAV_HB_FORW_EN", + "type": "Int32", + "group": "MAVLink", + "category": "Standard", + "shortDesc": "Hearbeat message forwarding", + "longDesc": "The mavlink hearbeat message will not be forwarded if this parameter is set to 'disabled'. The main reason for disabling heartbeats to be forwarded is because they confuse dronekit.", + "default": 1, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "MAV_ODOM_LP", + "type": "Int32", + "group": "MAVLink", + "category": "Standard", + "shortDesc": "Activate ODOMETRY loopback", + "longDesc": "If set, it gets the data from 'vehicle_visual_odometry' instead of 'vehicle_odometry' serving as a loopback of the received ODOMETRY messages on the Mavlink receiver.", + "default": 0, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "MAV_PROTO_VER", + "type": "Int32", + "group": "MAVLink", + "category": "Standard", + "shortDesc": "MAVLink protocol version", "default": 0, "values": [ { "value": 0, - "description": "Disabled" + "description": "Default to 1, switch to 2 if GCS sends version 2" }, { "value": 1, - "description": "NTSC" + "description": "Always use version 1" }, { "value": 2, - "description": "PAL" + "description": "Always use version 2" } ], - "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "PCF8583_ADDR", + "name": "MAV_RADIO_TOUT", "type": "Int32", - "group": "Sensors", + "group": "MAVLink", "category": "Standard", - "shortDesc": "PCF8583 rotorfreq (i2c) i2c address", - "default": 80, - "values": [ - { - "value": 80, - "description": "Address 0x50 (80)" - }, - { - "value": 81, - "description": "Address 0x51 (81)" - } - ], + "shortDesc": "Timeout in seconds for the RADIO_STATUS reports coming in", + "longDesc": "If the connected radio stops reporting RADIO_STATUS for a certain time, a warning is triggered and, if MAV_X_RADIO_CTL is enabled, the software-flow control is reset.", + "units": "s", + "default": 5, + "decimalPlaces": 3, + "minValue": 1, + "maxValue": 250 + }, + { + "name": "MAV_SIK_RADIO_ID", + "type": "Int32", + "group": "MAVLink", + "category": "Standard", + "shortDesc": "MAVLink SiK Radio ID", + "longDesc": "When non-zero the MAVLink app will attempt to configure the SiK radio to this ID and re-set the parameter to 0. If the value is negative it will reset the complete radio config to factory defaults. Only applies if this mavlink instance is going through a SiK radio", + "default": 0, + "decimalPlaces": 3, + "minValue": -1, + "maxValue": 240 + }, + { + "name": "MAV_SYS_ID", + "type": "Int32", + "group": "MAVLink", + "category": "Standard", + "shortDesc": "MAVLink system ID", + "default": 1, "rebootRequired": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 1, + "maxValue": 250 }, { - "name": "PCF8583_MAGNET", + "name": "MAV_TYPE", "type": "Int32", - "group": "Sensors", + "group": "MAVLink", "category": "Standard", - "shortDesc": "PCF8583 rotorfreq (i2c) pulse count", - "longDesc": "Nmumber of signals per rotation of actuator", + "shortDesc": "MAVLink airframe type", "default": 2, - "rebootRequired": true, + "values": [ + { + "value": 1, + "description": "Fixed wing aircraft" + }, + { + "value": 2, + "description": "Quadrotor" + }, + { + "value": 3, + "description": "Coaxial helicopter" + }, + { + "value": 4, + "description": "Normal helicopter with tail rotor" + }, + { + "value": 5, + "description": "Ground installation" + }, + { + "value": 6, + "description": "Operator control unit / ground control station" + }, + { + "value": 7, + "description": "Airship, controlled" + }, + { + "value": 8, + "description": "Free balloon, uncontrolled" + }, + { + "value": 9, + "description": "Rocket" + }, + { + "value": 10, + "description": "Ground rover" + }, + { + "value": 11, + "description": "Surface vessel, boat, ship" + }, + { + "value": 12, + "description": "Submarine" + }, + { + "value": 13, + "description": "Hexarotor" + }, + { + "value": 14, + "description": "Octorotor" + }, + { + "value": 15, + "description": "Tricopter" + }, + { + "value": 16, + "description": "Flapping wing" + }, + { + "value": 17, + "description": "Kite" + }, + { + "value": 18, + "description": "Onboard companion controller" + }, + { + "value": 19, + "description": "Two-rotor VTOL using control surfaces in vertical operation in addition. Tailsitter." + }, + { + "value": 20, + "description": "Quad-rotor VTOL using a V-shaped quad config in vertical operation. Tailsitter." + }, + { + "value": 21, + "description": "Tiltrotor VTOL" + }, + { + "value": 22, + "description": "VTOL reserved 2" + }, + { + "value": 23, + "description": "VTOL reserved 3" + }, + { + "value": 24, + "description": "VTOL reserved 4" + }, + { + "value": 25, + "description": "VTOL reserved 5" + }, + { + "value": 26, + "description": "Onboard gimbal" + }, + { + "value": 27, + "description": "Onboard ADSB peripheral" + } + ], "decimalPlaces": 3, "minValue": 1, - "maxValue": 2.14748e+09 - }, - { - "name": "PCF8583_POOL", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "PCF8583 rotorfreq (i2c) pool interval How often the sensor is readout", - "units": "us", - "default": 1e+06, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "maxValue": 27 }, { - "name": "PCF8583_RESET", + "name": "MAV_USEHILGPS", "type": "Int32", - "group": "Sensors", + "group": "MAVLink", "category": "Standard", - "shortDesc": "PCF8583 rotorfreq (i2c) pulse reset value", - "longDesc": "Internal device counter is reset to 0 when overun this value, counter is able to store upto 6 digits reset of counter takes some time - measurement with reset has worse accurancy. 0 means reset counter after every measurement.", - "default": 500000, - "rebootRequired": true, + "shortDesc": "Use/Accept HIL GPS message even if not in HIL mode", + "longDesc": "If set to 1 incoming HIL GPS messages are parsed.", + "default": 0, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "PLD_BTOUT", - "type": "Float", - "group": "Precision Land", - "category": "Standard", - "shortDesc": "Landing Target Timeout", - "longDesc": "Time after which the landing target is considered lost without any new measurements.", - "units": "s", - "default": 5, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 50 - }, - { - "name": "PLD_FAPPR_ALT", + "name": "MC_ACRO_EXPO", "type": "Float", - "group": "Precision Land", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Final approach altitude", - "longDesc": "Allow final approach (without horizontal positioning) if losing landing target closer than this to the ground.", - "units": "m", - "default": 0.1, - "increment": 0.1, + "shortDesc": "Acro mode Expo factor for Roll and Pitch", + "longDesc": "Exponential factor for tuning the input curve shape. 0 Purely linear input curve 1 Purely cubic input curve", + "default": 0.69, "decimalPlaces": 2, "minValue": 0, - "maxValue": 10 + "maxValue": 1 }, { - "name": "PLD_HACC_RAD", + "name": "MC_ACRO_EXPO_Y", "type": "Float", - "group": "Precision Land", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Horizontal acceptance radius", - "longDesc": "Start descending if closer above landing target than this.", - "units": "m", - "default": 0.2, - "increment": 0.1, + "shortDesc": "Acro mode Expo factor for Yaw", + "longDesc": "Exponential factor for tuning the input curve shape. 0 Purely linear input curve 1 Purely cubic input curve", + "default": 0.69, "decimalPlaces": 2, "minValue": 0, - "maxValue": 10 - }, - { - "name": "PLD_MAX_SRCH", - "type": "Int32", - "group": "Precision Land", - "category": "Standard", - "shortDesc": "Maximum number of search attempts", - "longDesc": "Maximum number of times to seach for the landing target if it is lost during the precision landing.", - "default": 3, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "maxValue": 1 }, { - "name": "PLD_SRCH_ALT", + "name": "MC_ACRO_P_MAX", "type": "Float", - "group": "Precision Land", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Search altitude", - "longDesc": "Altitude above home to which to climb when searching for the landing target.", - "units": "m", - "default": 10, - "increment": 0.1, + "shortDesc": "Max acro pitch rate default: 2 turns per second", + "units": "deg/s", + "default": 720, + "increment": 5, "decimalPlaces": 1, "minValue": 0, - "maxValue": 100 + "maxValue": 1800 }, { - "name": "PLD_SRCH_TOUT", + "name": "MC_ACRO_R_MAX", "type": "Float", - "group": "Precision Land", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Search timeout", - "longDesc": "Time allowed to search for the landing target before falling back to normal landing.", - "units": "s", - "default": 10, - "increment": 0.1, + "shortDesc": "Max acro roll rate default: 2 turns per second", + "units": "deg/s", + "default": 720, + "increment": 5, "decimalPlaces": 1, "minValue": 0, - "maxValue": 100 - }, - { - "name": "PWM_AUX_DIS1", - "type": "Int32", - "group": "PWM Outputs", - "category": "Standard", - "shortDesc": "Set the disarmed PWM for the auxiliary 1 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 - }, - { - "name": "PWM_AUX_DIS2", - "type": "Int32", - "group": "PWM Outputs", - "category": "Standard", - "shortDesc": "Set the disarmed PWM for the auxiliary 2 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 - }, - { - "name": "PWM_AUX_DIS3", - "type": "Int32", - "group": "PWM Outputs", - "category": "Standard", - "shortDesc": "Set the disarmed PWM for the auxiliary 3 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 - }, - { - "name": "PWM_AUX_DIS4", - "type": "Int32", - "group": "PWM Outputs", - "category": "Standard", - "shortDesc": "Set the disarmed PWM for the auxiliary 4 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 - }, - { - "name": "PWM_AUX_DIS5", - "type": "Int32", - "group": "PWM Outputs", - "category": "Standard", - "shortDesc": "Set the disarmed PWM for the auxiliary 5 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 - }, - { - "name": "PWM_AUX_DIS6", - "type": "Int32", - "group": "PWM Outputs", - "category": "Standard", - "shortDesc": "Set the disarmed PWM for the auxiliary 6 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "maxValue": 1800 }, { - "name": "PWM_AUX_DIS7", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_ACRO_SUPEXPO", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the disarmed PWM for the auxiliary 7 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Acro mode SuperExpo factor for Roll and Pitch", + "longDesc": "SuperExpo factor for refining the input curve shape tuned using MC_ACRO_EXPO. 0 Pure Expo function 0.7 resonable shape enhancement for intuitive stick feel 0.95 very strong bent input curve only near maxima have effect", + "default": 0.7, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 0.95 }, { - "name": "PWM_AUX_DIS8", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_ACRO_SUPEXPOY", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the disarmed PWM for the auxiliary 8 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Acro mode SuperExpo factor for Yaw", + "longDesc": "SuperExpo factor for refining the input curve shape tuned using MC_ACRO_EXPO_Y. 0 Pure Expo function 0.7 resonable shape enhancement for intuitive stick feel 0.95 very strong bent input curve only near maxima have effect", + "default": 0.7, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 0.95 }, { - "name": "PWM_AUX_DISARMED", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_ACRO_Y_MAX", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the disarmed PWM for auxiliary outputs", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. The main use of this parameter is to silence ESCs when they are disarmed.", - "units": "us", - "default": 1500, - "rebootRequired": true, - "decimalPlaces": 3, + "shortDesc": "Max acro yaw rate default 1.5 turns per second", + "units": "deg/s", + "default": 540, + "increment": 5, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 2200 + "maxValue": 1800 }, { - "name": "PWM_AUX_FAIL1", + "name": "MC_AIRMODE", "type": "Int32", - "group": "PWM Outputs", + "group": "Mixer Output", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the auxiliary 1 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Multicopter air-mode", + "longDesc": "The air-mode enables the mixer to increase the total thrust of the multirotor in order to keep attitude and rate control even at low and high throttle. This function should be disabled during tuning as it will help the controller to diverge if the closed-loop is unstable (i.e. the vehicle is not tuned yet). Enabling air-mode for yaw requires the use of an arming switch.", + "default": 0, + "values": [ + { + "value": 0, + "description": "Disabled" + }, + { + "value": 1, + "description": "Roll/Pitch" + }, + { + "value": 2, + "description": "Roll/Pitch/Yaw" + } + ], "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "PWM_AUX_FAIL2", + "name": "MC_BAT_SCALE_EN", "type": "Int32", - "group": "PWM Outputs", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the auxiliary 2 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Battery power level scaler", + "longDesc": "This compensates for voltage drop of the battery over time by attempting to normalize performance across the operating range of the battery. The copter should constantly behave as if it was fully charged with reduced max acceleration at lower battery percentages. i.e. if hover is at 0.5 throttle at 100% battery, it will still be 0.5 at 60% battery.", + "default": 0, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "PWM_AUX_FAIL3", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_MAN_TILT_TAU", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the auxiliary 3 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Manual tilt input filter time constant Setting this parameter to 0 disables the filter", + "units": "s", + "default": 0, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 2 }, { - "name": "PWM_AUX_FAIL4", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_PITCHRATE_D", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the auxiliary 4 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Pitch rate D gain", + "longDesc": "Pitch rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again.", + "default": 0.003, + "increment": 0.0005, + "decimalPlaces": 4, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_AUX_FAIL5", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_PITCHRATE_FF", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the auxiliary 5 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Pitch rate feedforward", + "longDesc": "Improves tracking performance.", + "default": 0, + "decimalPlaces": 4, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_AUX_FAIL6", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_PITCHRATE_I", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the auxiliary 6 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Pitch rate I gain", + "longDesc": "Pitch rate integral gain. Can be set to compensate static thrust difference or gravity center offset.", + "default": 0.2, + "increment": 0.01, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_AUX_FAIL7", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_PITCHRATE_K", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the auxiliary 7 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Pitch rate controller gain", + "longDesc": "Global gain of the controller. This gain scales the P, I and D terms of the controller: output = MC_PITCHRATE_K * (MC_PITCHRATE_P * error + MC_PITCHRATE_I * error_integral + MC_PITCHRATE_D * error_derivative) Set MC_PITCHRATE_P=1 to implement a PID in the ideal form. Set MC_PITCHRATE_K=1 to implement a PID in the parallel form.", + "default": 1, + "increment": 0.0005, + "decimalPlaces": 4, + "minValue": 0.01, + "maxValue": 5 }, { - "name": "PWM_AUX_FAIL8", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_PITCHRATE_MAX", + "type": "Float", + "group": "Multicopter Attitude Control", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the auxiliary 8 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Max pitch rate", + "longDesc": "Limit for pitch rate in manual and auto modes (except acro). Has effect for large rotations in autonomous mode, to avoid large control output and mixer saturation. This is not only limited by the vehicle's properties, but also by the maximum measurement rate of the gyro.", + "units": "deg/s", + "default": 220, + "increment": 5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 1800 }, { - "name": "PWM_AUX_MAX", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_PITCHRATE_P", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the maximum PWM for the auxiliary outputs", - "longDesc": "Set to 2000 for industry default or 2100 to increase servo travel.", - "units": "us", - "default": 2000, - "rebootRequired": true, + "shortDesc": "Pitch rate P gain", + "longDesc": "Pitch rate proportional gain, i.e. control output for angular speed error 1 rad/s.", + "default": 0.15, + "increment": 0.01, "decimalPlaces": 3, - "minValue": 1600, - "maxValue": 2200 + "minValue": 0.01, + "maxValue": 0.6 }, { - "name": "PWM_AUX_MAX1", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_PITCH_P", + "type": "Float", + "group": "Multicopter Attitude Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the auxiliary 1 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Pitch P gain", + "longDesc": "Pitch proportional gain, i.e. desired angular speed in rad/s for error 1 rad.", + "units": "1/s", + "default": 6.5, + "increment": 0.1, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 12 }, { - "name": "PWM_AUX_MAX2", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_PR_INT_LIM", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the auxiliary 2 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Pitch rate integrator limit", + "longDesc": "Pitch rate integrator limit. Can be set to increase the amount of integrator available to counteract disturbances or reduced to improve settling time after large pitch moment trim changes.", + "default": 0.3, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_AUX_MAX3", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_RATT_TH", + "type": "Float", + "group": "Multicopter Attitude Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the auxiliary 3 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Threshold for Rattitude mode", + "longDesc": "Manual input needed in order to override attitude control rate setpoints and instead pass manual stick inputs as rate setpoints", + "default": 0.8, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 + }, + { + "name": "MC_ROLLRATE_D", + "type": "Float", + "group": "Multicopter Rate Control", + "category": "Standard", + "shortDesc": "Roll rate D gain", + "longDesc": "Roll rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again.", + "default": 0.003, + "increment": 0.0005, + "decimalPlaces": 4, + "minValue": 0, + "maxValue": 0.01 }, { - "name": "PWM_AUX_MAX4", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_ROLLRATE_FF", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the auxiliary 4 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Roll rate feedforward", + "longDesc": "Improves tracking performance.", + "default": 0, + "decimalPlaces": 4, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_AUX_MAX5", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_ROLLRATE_I", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the auxiliary 5 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Roll rate I gain", + "longDesc": "Roll rate integral gain. Can be set to compensate static thrust difference or gravity center offset.", + "default": 0.2, + "increment": 0.01, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_AUX_MAX6", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_ROLLRATE_K", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the auxiliary 6 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Roll rate controller gain", + "longDesc": "Global gain of the controller. This gain scales the P, I and D terms of the controller: output = MC_ROLLRATE_K * (MC_ROLLRATE_P * error + MC_ROLLRATE_I * error_integral + MC_ROLLRATE_D * error_derivative) Set MC_ROLLRATE_P=1 to implement a PID in the ideal form. Set MC_ROLLRATE_K=1 to implement a PID in the parallel form.", + "default": 1, + "increment": 0.0005, + "decimalPlaces": 4, + "minValue": 0.01, + "maxValue": 5 }, { - "name": "PWM_AUX_MAX7", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_ROLLRATE_MAX", + "type": "Float", + "group": "Multicopter Attitude Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the auxiliary 7 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Max roll rate", + "longDesc": "Limit for roll rate in manual and auto modes (except acro). Has effect for large rotations in autonomous mode, to avoid large control output and mixer saturation. This is not only limited by the vehicle's properties, but also by the maximum measurement rate of the gyro.", + "units": "deg/s", + "default": 220, + "increment": 5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 1800 }, { - "name": "PWM_AUX_MAX8", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_ROLLRATE_P", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the auxiliary 8 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Roll rate P gain", + "longDesc": "Roll rate proportional gain, i.e. control output for angular speed error 1 rad/s.", + "default": 0.15, + "increment": 0.01, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": 0.01, + "maxValue": 0.5 }, { - "name": "PWM_AUX_MIN", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_ROLL_P", + "type": "Float", + "group": "Multicopter Attitude Control", "category": "Standard", - "shortDesc": "Set the minimum PWM for the auxiliary outputs", - "longDesc": "Set to 1000 for industry default or 900 to increase servo travel.", - "units": "us", - "default": 1000, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1400 + "shortDesc": "Roll P gain", + "longDesc": "Roll proportional gain, i.e. desired angular speed in rad/s for error 1 rad.", + "units": "1/s", + "default": 6.5, + "increment": 0.1, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 12 }, { - "name": "PWM_AUX_MIN1", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_RR_INT_LIM", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the auxiliary 1 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Roll rate integrator limit", + "longDesc": "Roll rate integrator limit. Can be set to increase the amount of integrator available to counteract disturbances or reduced to improve settling time after large roll moment trim changes.", + "default": 0.3, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_AUX_MIN2", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_YAWRATE_D", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the auxiliary 2 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Yaw rate D gain", + "longDesc": "Yaw rate differential gain. Small values help reduce fast oscillations. If value is too big oscillations will appear again.", + "default": 0, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_AUX_MIN3", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_YAWRATE_FF", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the auxiliary 3 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Yaw rate feedforward", + "longDesc": "Improves tracking performance.", + "default": 0, + "increment": 0.01, + "decimalPlaces": 4, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_AUX_MIN4", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_YAWRATE_I", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the auxiliary 4 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Yaw rate I gain", + "longDesc": "Yaw rate integral gain. Can be set to compensate static thrust difference or gravity center offset.", + "default": 0.1, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_AUX_MIN5", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_YAWRATE_K", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the auxiliary 5 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Yaw rate controller gain", + "longDesc": "Global gain of the controller. This gain scales the P, I and D terms of the controller: output = MC_YAWRATE_K * (MC_YAWRATE_P * error + MC_YAWRATE_I * error_integral + MC_YAWRATE_D * error_derivative) Set MC_YAWRATE_P=1 to implement a PID in the ideal form. Set MC_YAWRATE_K=1 to implement a PID in the parallel form.", + "default": 1, + "increment": 0.0005, + "decimalPlaces": 4, + "minValue": 0, + "maxValue": 5 }, { - "name": "PWM_AUX_MIN6", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_YAWRATE_MAX", + "type": "Float", + "group": "Multicopter Attitude Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the auxiliary 6 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Max yaw rate", + "units": "deg/s", + "default": 200, + "increment": 5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 1800 }, { - "name": "PWM_AUX_MIN7", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_YAWRATE_P", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the auxiliary 7 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Yaw rate P gain", + "longDesc": "Yaw rate proportional gain, i.e. control output for angular speed error 1 rad/s.", + "default": 0.2, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 0.6 }, { - "name": "PWM_AUX_MIN8", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_YAW_P", + "type": "Float", + "group": "Multicopter Attitude Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the auxiliary 8 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Yaw P gain", + "longDesc": "Yaw proportional gain, i.e. desired angular speed in rad/s for error 1 rad.", + "units": "1/s", + "default": 2.8, + "increment": 0.1, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 5 }, { - "name": "PWM_AUX_RATE", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_YAW_WEIGHT", + "type": "Float", + "group": "Multicopter Attitude Control", "category": "Standard", - "shortDesc": "Set the PWM output frequency for the auxiliary outputs", - "longDesc": "Set to 400 for industry default or 1000 for high frequency ESCs. Set to 0 for Oneshot125.", - "units": "Hz", - "default": 50, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2000 + "shortDesc": "Yaw weight", + "longDesc": "A fraction [0,1] deprioritizing yaw compared to roll and pitch in non-linear attitude control. Deprioritizing yaw is necessary because multicopters have much less control authority in yaw compared to the other axes and it makes sense because yaw is not critical for stable hovering or 3D navigation. For yaw control tuning use MC_YAW_P. This ratio has no inpact on the yaw gain.", + "units": "1/s", + "default": 0.4, + "increment": 0.1, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "PWM_AUX_REV1", - "type": "Int32", - "group": "PWM Outputs", + "name": "MC_YR_INT_LIM", + "type": "Float", + "group": "Multicopter Rate Control", "category": "Standard", - "shortDesc": "Invert direction of auxiliary output channel 1", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Yaw rate integrator limit", + "longDesc": "Yaw rate integrator limit. Can be set to increase the amount of integrator available to counteract disturbances or reduced to improve settling time after large yaw moment trim changes.", + "default": 0.3, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_AUX_REV2", + "name": "MIS_ALTMODE", "type": "Int32", - "group": "PWM Outputs", + "group": "Mission", "category": "Standard", - "shortDesc": "Invert direction of auxiliary output channel 2", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, + "shortDesc": "Altitude setpoint mode", + "longDesc": "0: the system will follow a zero order hold altitude setpoint 1: the system will follow a first order hold altitude setpoint values follow the definition in enum mission_altitude_mode", + "default": 1, + "values": [ + { + "value": 0, + "description": "Zero Order Hold" + }, + { + "value": 1, + "description": "First Order Hold" + } + ], "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 1 }, { - "name": "PWM_AUX_REV3", - "type": "Int32", - "group": "PWM Outputs", + "name": "MIS_DIST_1WP", + "type": "Float", + "group": "Mission", "category": "Standard", - "shortDesc": "Invert direction of auxiliary output channel 3", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Maximal horizontal distance from home to first waypoint", + "longDesc": "Failsafe check to prevent running mission stored from previous flight at a new takeoff location. Set a value of zero or less to disable. The mission will not be started if the current waypoint is more distant than MIS_DIS_1WP from the home position.", + "units": "m", + "default": 900, + "increment": 100, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 10000 }, { - "name": "PWM_AUX_REV4", - "type": "Int32", - "group": "PWM Outputs", + "name": "MIS_DIST_WPS", + "type": "Float", + "group": "Mission", "category": "Standard", - "shortDesc": "Invert direction of auxiliary output channel 4", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Maximal horizontal distance between waypoint", + "longDesc": "Failsafe check to prevent running missions which are way too big. Set a value of zero or less to disable. The mission will not be started if any distance between two subsequent waypoints is greater than MIS_DIST_WPS.", + "units": "m", + "default": 900, + "increment": 100, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 10000 }, { - "name": "PWM_AUX_REV5", - "type": "Int32", - "group": "PWM Outputs", + "name": "MIS_LTRMIN_ALT", + "type": "Float", + "group": "Mission", "category": "Standard", - "shortDesc": "Invert direction of auxiliary output channel 5", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Minimum Loiter altitude", + "longDesc": "This is the minimum altitude the system will always obey. The intent is to stay out of ground effect. set to -1, if there shouldn't be a minimum loiter altitude", + "units": "m", + "default": -1, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": -1, + "maxValue": 80 }, { - "name": "PWM_AUX_REV6", + "name": "MIS_MNT_YAW_CTL", "type": "Int32", - "group": "PWM Outputs", + "group": "Mission", "category": "Standard", - "shortDesc": "Invert direction of auxiliary output channel 6", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", + "shortDesc": "Enable yaw control of the mount. (Only affects multicopters and ROI mission items)", + "longDesc": "If enabled, yaw commands will be sent to the mount and the vehicle will follow its heading towards the flight direction. If disabled, the vehicle will yaw towards the ROI.", "default": 0, + "values": [ + { + "value": 0, + "description": "Disable" + }, + { + "value": 1, + "description": "Enable" + } + ], "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 1 }, { - "name": "PWM_AUX_REV7", - "type": "Int32", - "group": "PWM Outputs", + "name": "MIS_TAKEOFF_ALT", + "type": "Float", + "group": "Mission", "category": "Standard", - "shortDesc": "Invert direction of auxiliary output channel 7", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Take-off altitude", + "longDesc": "This is the minimum altitude the system will take off to.", + "units": "m", + "default": 2.5, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 80 }, { - "name": "PWM_AUX_REV8", + "name": "MIS_TAKEOFF_REQ", "type": "Int32", - "group": "PWM Outputs", + "group": "Mission", "category": "Standard", - "shortDesc": "Invert direction of auxiliary output channel 8", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", + "shortDesc": "Take-off waypoint required", + "longDesc": "If set, the mission feasibility checker will check for a takeoff waypoint on the mission.", "default": 0, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "PWM_AUX_TRIM1", + "name": "MIS_YAW_ERR", "type": "Float", - "group": "PWM Outputs", + "group": "Mission", "category": "Standard", - "shortDesc": "Trim value for auxiliary output channel 1", - "longDesc": "Set to normalized offset", - "default": 0, - "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "shortDesc": "Max yaw error in degrees needed for waypoint heading acceptance", + "units": "deg", + "default": 12, + "increment": 1, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 90 }, { - "name": "PWM_AUX_TRIM2", + "name": "MIS_YAW_TMT", "type": "Float", - "group": "PWM Outputs", + "group": "Mission", "category": "Standard", - "shortDesc": "Trim value for auxiliary output channel 2", - "longDesc": "Set to normalized offset", - "default": 0, - "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "shortDesc": "Time in seconds we wait on reaching target heading at a waypoint if it is forced", + "longDesc": "If set > 0 it will ignore the target heading for normal waypoint acceptance. If the waypoint forces the heading the timeout will matter. For example on VTOL forwards transition. Mainly useful for VTOLs that have less yaw authority and might not reach target yaw in wind. Disabled by default.", + "units": "s", + "default": -1, + "increment": 1, + "decimalPlaces": 1, + "minValue": -1, + "maxValue": 20 }, { - "name": "PWM_AUX_TRIM3", - "type": "Float", - "group": "PWM Outputs", + "name": "MKBLCTRL_TEST", + "type": "Int32", + "group": "MKBLCTRL Testmode", "category": "Standard", - "shortDesc": "Trim value for auxiliary output channel 3", - "longDesc": "Set to normalized offset", + "shortDesc": "Test mode (Identify) of MKBLCTRL Driver", "default": 0, - "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "PWM_AUX_TRIM4", - "type": "Float", - "group": "PWM Outputs", + "name": "MNT_DO_STAB", + "type": "Int32", + "group": "Mount", "category": "Standard", - "shortDesc": "Trim value for auxiliary output channel 4", - "longDesc": "Set to normalized offset", + "shortDesc": "Stabilize the mount (set to true for servo gimbal, false for passthrough). Does not affect MAVLINK_ROI input", "default": 0, - "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "PWM_AUX_TRIM5", - "type": "Float", - "group": "PWM Outputs", + "name": "MNT_MAN_PITCH", + "type": "Int32", + "group": "Mount", "category": "Standard", - "shortDesc": "Trim value for auxiliary output channel 5", - "longDesc": "Set to normalized offset", + "shortDesc": "Auxiliary channel to control pitch (in AUX input or manual mode)", "default": 0, - "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "values": [ + { + "value": 0, + "description": "Disable" + }, + { + "value": 1, + "description": "AUX1" + }, + { + "value": 2, + "description": "AUX2" + }, + { + "value": 3, + "description": "AUX3" + }, + { + "value": 4, + "description": "AUX4" + }, + { + "value": 5, + "description": "AUX5" + }, + { + "value": 6, + "description": "AUX6" + } + ], + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 6 }, { - "name": "PWM_AUX_TRIM6", - "type": "Float", - "group": "PWM Outputs", + "name": "MNT_MAN_ROLL", + "type": "Int32", + "group": "Mount", "category": "Standard", - "shortDesc": "Trim value for auxiliary output channel 6", - "longDesc": "Set to normalized offset", + "shortDesc": "Auxiliary channel to control roll (in AUX input or manual mode)", "default": 0, - "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "values": [ + { + "value": 0, + "description": "Disable" + }, + { + "value": 1, + "description": "AUX1" + }, + { + "value": 2, + "description": "AUX2" + }, + { + "value": 3, + "description": "AUX3" + }, + { + "value": 4, + "description": "AUX4" + }, + { + "value": 5, + "description": "AUX5" + }, + { + "value": 6, + "description": "AUX6" + } + ], + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 6 }, { - "name": "PWM_AUX_TRIM7", - "type": "Float", - "group": "PWM Outputs", + "name": "MNT_MAN_YAW", + "type": "Int32", + "group": "Mount", "category": "Standard", - "shortDesc": "Trim value for auxiliary output channel 7", - "longDesc": "Set to normalized offset", + "shortDesc": "Auxiliary channel to control yaw (in AUX input or manual mode)", "default": 0, - "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "values": [ + { + "value": 0, + "description": "Disable" + }, + { + "value": 1, + "description": "AUX1" + }, + { + "value": 2, + "description": "AUX2" + }, + { + "value": 3, + "description": "AUX3" + }, + { + "value": 4, + "description": "AUX4" + }, + { + "value": 5, + "description": "AUX5" + }, + { + "value": 6, + "description": "AUX6" + } + ], + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 6 }, { - "name": "PWM_AUX_TRIM8", - "type": "Float", - "group": "PWM Outputs", + "name": "MNT_MAV_COMPID", + "type": "Int32", + "group": "Mount", "category": "Standard", - "shortDesc": "Trim value for auxiliary output channel 8", - "longDesc": "Set to normalized offset", - "default": 0, - "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "shortDesc": "Mavlink Component ID of the mount", + "longDesc": "If MNT_MODE_OUT is MAVLINK, mount configure/control commands will be sent with this component ID.", + "default": 154, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "PWM_DISARMED", + "name": "MNT_MAV_SYSID", "type": "Int32", - "group": "PWM Outputs", + "group": "Mount", "category": "Standard", - "shortDesc": "Set the disarmed PWM for the main outputs", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. The main use of this parameter is to silence ESCs when they are disarmed.", - "units": "us", - "default": 900, - "rebootRequired": true, + "shortDesc": "Mavlink System ID of the mount", + "longDesc": "If MNT_MODE_OUT is MAVLINK, mount configure/control commands will be sent with this target ID.", + "default": 1, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "PWM_MAIN_DIS1", + "name": "MNT_MODE_IN", "type": "Int32", - "group": "PWM Outputs", + "group": "Mount", "category": "Standard", - "shortDesc": "Set the disarmed PWM for the main 1 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_DISARMED will be used", - "units": "us", + "shortDesc": "Mount input mode", + "longDesc": "RC uses the AUX input channels (see MNT_MAN_* parameters), MAVLINK_ROI uses the MAV_CMD_DO_SET_ROI Mavlink message, and MAVLINK_DO_MOUNT the MAV_CMD_DO_MOUNT_CONFIGURE and MAV_CMD_DO_MOUNT_CONTROL messages to control a mount.", "default": -1, + "values": [ + { + "value": -1, + "description": "DISABLED" + }, + { + "value": 0, + "description": "AUTO" + }, + { + "value": 1, + "description": "RC" + }, + { + "value": 2, + "description": "MAVLINK_ROI" + }, + { + "value": 3, + "description": "MAVLINK_DO_MOUNT" + } + ], "rebootRequired": true, "decimalPlaces": 3, "minValue": -1, - "maxValue": 2200 + "maxValue": 3 + }, + { + "name": "MNT_MODE_OUT", + "type": "Int32", + "group": "Mount", + "category": "Standard", + "shortDesc": "Mount output mode", + "longDesc": "AUX uses the mixer output Control Group #2. MAVLINK uses the MAV_CMD_DO_MOUNT_CONFIGURE and MAV_CMD_DO_MOUNT_CONTROL MavLink messages to control a mount (set MNT_MAV_SYSID & MNT_MAV_COMPID)", + "default": 0, + "values": [ + { + "value": 0, + "description": "AUX" + }, + { + "value": 1, + "description": "MAVLINK" + } + ], + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 1 }, { - "name": "PWM_MAIN_DIS2", - "type": "Int32", - "group": "PWM Outputs", + "name": "MNT_OB_LOCK_MODE", + "type": "Float", + "group": "Mount", "category": "Standard", - "shortDesc": "Set the disarmed PWM for the main 2 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Mixer value for selecting a locking mode if required for the gimbal (only in AUX output mode)", + "default": 0, "decimalPlaces": 3, "minValue": -1, - "maxValue": 2200 + "maxValue": 1 }, { - "name": "PWM_MAIN_DIS3", - "type": "Int32", - "group": "PWM Outputs", + "name": "MNT_OB_NORM_MODE", + "type": "Float", + "group": "Mount", "category": "Standard", - "shortDesc": "Set the disarmed PWM for the main 3 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_DISARMED will be used", - "units": "us", + "shortDesc": "Mixer value for selecting normal mode if required by the gimbal (only in AUX output mode)", "default": -1, - "rebootRequired": true, "decimalPlaces": 3, "minValue": -1, - "maxValue": 2200 + "maxValue": 1 }, { - "name": "PWM_MAIN_DIS4", - "type": "Int32", - "group": "PWM Outputs", + "name": "MNT_OFF_PITCH", + "type": "Float", + "group": "Mount", "category": "Standard", - "shortDesc": "Set the disarmed PWM for the main 4 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Offset for pitch channel output in degrees", + "default": 0, + "decimalPlaces": 1, + "minValue": -360, + "maxValue": 360 }, { - "name": "PWM_MAIN_DIS5", - "type": "Int32", - "group": "PWM Outputs", + "name": "MNT_OFF_ROLL", + "type": "Float", + "group": "Mount", "category": "Standard", - "shortDesc": "Set the disarmed PWM for the main 5 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Offset for roll channel output in degrees", + "default": 0, + "decimalPlaces": 1, + "minValue": -360, + "maxValue": 360 }, { - "name": "PWM_MAIN_DIS6", - "type": "Int32", - "group": "PWM Outputs", + "name": "MNT_OFF_YAW", + "type": "Float", + "group": "Mount", "category": "Standard", - "shortDesc": "Set the disarmed PWM for the main 6 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Offset for yaw channel output in degrees", + "default": 0, + "decimalPlaces": 1, + "minValue": -360, + "maxValue": 360 }, { - "name": "PWM_MAIN_DIS7", - "type": "Int32", - "group": "PWM Outputs", + "name": "MNT_RANGE_PITCH", + "type": "Float", + "group": "Mount", "category": "Standard", - "shortDesc": "Set the disarmed PWM for the main 7 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Range of pitch channel output in degrees (only in AUX output mode)", + "default": 360, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 720 }, { - "name": "PWM_MAIN_DIS8", - "type": "Int32", - "group": "PWM Outputs", + "name": "MNT_RANGE_ROLL", + "type": "Float", + "group": "Mount", "category": "Standard", - "shortDesc": "Set the disarmed PWM for the main 8 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_DISARMED will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Range of roll channel output in degrees (only in AUX output mode)", + "default": 360, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 720 }, { - "name": "PWM_MAIN_FAIL1", - "type": "Int32", - "group": "PWM Outputs", + "name": "MNT_RANGE_YAW", + "type": "Float", + "group": "Mount", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the main 1 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Range of yaw channel output in degrees (only in AUX output mode)", + "default": 360, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 720 }, { - "name": "PWM_MAIN_FAIL2", + "name": "MOT_ORDERING", "type": "Int32", - "group": "PWM Outputs", + "group": "Mixer Output", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the main 2 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Motor Ordering", + "longDesc": "Determines the motor ordering. This can be used for example in combination with a 4-in-1 ESC that assumes a motor ordering which is different from PX4. ONLY supported for Quads. When changing this, make sure to test the motor response without props first.", + "default": 0, + "values": [ + { + "value": 0, + "description": "PX4" + }, + { + "value": 1, + "description": "Betaflight / Cleanflight" + } + ], "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "PWM_MAIN_FAIL3", + "name": "MOT_POLE_COUNT", "type": "Int32", - "group": "PWM Outputs", + "group": "DShot", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the main 3 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Number of magnetic poles of the motors", + "longDesc": "Specify the number of magnetic poles of the motors. It is required to compute the RPM value from the eRPM returned with the ESC telemetry. Either get the number from the motor spec sheet or count the magnets on the bell of the motor (not the stator magnets). Typical motors for 5 inch props have 14 poles.", + "default": 14, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "PWM_MAIN_FAIL4", - "type": "Int32", + "name": "MOT_SLEW_MAX", + "type": "Float", "group": "PWM Outputs", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the main 4 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Minimum motor rise time (slew rate limit)", + "longDesc": "Minimum time allowed for the motor input signal to pass through a range of 1000 PWM units. A value x means that the motor signal can only go from 1000 to 2000 PWM in maximum x seconds. Zero means that slew rate limiting is disabled.", + "units": "s/(1000*PWM)", + "default": 0, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_MAIN_FAIL5", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_ACC_DOWN_MAX", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the main 5 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Maximum vertical acceleration in velocity controlled modes down", + "units": "m/s/s", + "default": 3, + "increment": 1, + "decimalPlaces": 2, + "minValue": 2, + "maxValue": 15 + }, + { + "name": "MPC_ACC_HOR", + "type": "Float", + "group": "Multicopter Position Control", + "category": "Standard", + "shortDesc": "Acceleration for auto and for manual", + "longDesc": "Note: In manual, this parameter is only used in MPC_POS_MODE 1.", + "units": "m/s/s", + "default": 3, + "increment": 1, + "decimalPlaces": 2, + "minValue": 2, + "maxValue": 15 + }, + { + "name": "MPC_ACC_HOR_MAX", + "type": "Float", + "group": "Multicopter Position Control", + "category": "Standard", + "shortDesc": "Maximum horizontal acceleration for auto mode and for manual mode", + "longDesc": "Maximum deceleration for MPC_POS_MODE 1. Maximum acceleration and deceleration for MPC_POS_MODE 3.", + "units": "m/s/s", + "default": 5, + "increment": 1, + "decimalPlaces": 2, + "minValue": 2, + "maxValue": 15 + }, + { + "name": "MPC_ACC_UP_MAX", + "type": "Float", + "group": "Multicopter Position Control", + "category": "Standard", + "shortDesc": "Maximum vertical acceleration in velocity controlled modes upward", + "units": "m/s/s", + "default": 4, + "increment": 1, + "decimalPlaces": 2, + "minValue": 2, + "maxValue": 15 }, { - "name": "PWM_MAIN_FAIL6", + "name": "MPC_ALT_MODE", "type": "Int32", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the main 6 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Altitude control mode", + "longDesc": "Set to 0 to control height relative to the earth frame origin. This origin may move up and down in flight due to sensor drift. Set to 1 to control height relative to estimated distance to ground. The vehicle will move up and down with terrain height variation. Requires a distance to ground sensor. The height controller will revert to using height above origin if the distance to ground estimate becomes invalid as indicated by the local_position.distance_bottom_valid message being false. Set to 2 to control height relative to ground (requires a distance sensor) when stationary and relative to earth frame origin when moving horizontally. The speed threshold is controlled by the MPC_HOLD_MAX_XY parameter.", + "default": 0, + "values": [ + { + "value": 0, + "description": "Altitude following" + }, + { + "value": 1, + "description": "Terrain following" + }, + { + "value": 2, + "description": "Terrain hold" + } + ], "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": 0, + "maxValue": 2 }, { - "name": "PWM_MAIN_FAIL7", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_DEC_HOR_SLOW", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the main 7 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Slow horizontal manual deceleration for manual mode", + "longDesc": "Note: This is only used when MPC_POS_MODE is set to 1.", + "units": "m/s/s", + "default": 5, + "increment": 1, + "decimalPlaces": 2, + "minValue": 0.5, + "maxValue": 10 }, { - "name": "PWM_MAIN_FAIL8", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_HOLD_DZ", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the failsafe PWM for the main 8 output", - "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Deadzone of sticks where position hold is enabled", + "default": 0.1, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "PWM_MAIN_MAX1", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_HOLD_MAX_XY", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the main 1 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Maximum horizontal velocity for which position hold is enabled (use 0 to disable check)", + "units": "m/s", + "default": 0.8, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 3 }, { - "name": "PWM_MAIN_MAX2", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_HOLD_MAX_Z", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the main 2 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Maximum vertical velocity for which position hold is enabled (use 0 to disable check)", + "units": "m/s", + "default": 0.6, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 3 }, { - "name": "PWM_MAIN_MAX3", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_JERK_AUTO", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the main 3 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Jerk limit in auto mode", + "longDesc": "Limit the maximum jerk of the vehicle (how fast the acceleration can change). A lower value leads to smoother vehicle motions, but it also limits its agility.", + "units": "m/s/s/s", + "default": 4, + "increment": 1, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 80 }, { - "name": "PWM_MAIN_MAX4", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_JERK_MAX", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the main 4 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Maximum jerk limit", + "longDesc": "Limit the maximum jerk of the vehicle (how fast the acceleration can change). A lower value leads to smoother vehicle motions, but it also limits its agility (how fast it can change directions or break). Setting this to the maximum value essentially disables the limit. Note: This is only used when MPC_POS_MODE is set to a smoothing mode 1 or 3.", + "units": "m/s/s/s", + "default": 8, + "increment": 1, + "decimalPlaces": 2, + "minValue": 0.5, + "maxValue": 500 }, { - "name": "PWM_MAIN_MAX5", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_JERK_MIN", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the main 5 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Velocity-based jerk limit", + "longDesc": "If this is not zero, a velocity-based maximum jerk limit is used: the applied jerk limit linearly increases with the vehicle's velocity between MPC_JERK_MIN (zero velocity) and MPC_JERK_MAX (maximum velocity). This means that the vehicle's motions are smooth for low velocities, but still allows fast direction changes or breaking at higher velocities. Set this to zero to use a fixed maximum jerk limit (MPC_JERK_MAX). Note: This is only used when MPC_POS_MODE is set to 1.", + "units": "m/s/s/s", + "default": 8, + "increment": 1, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 30 }, { - "name": "PWM_MAIN_MAX6", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_LAND_ALT1", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the main 6 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Altitude for 1. step of slow landing (descend)", + "longDesc": "Below this altitude: - descending velocity gets limited to a value between \"MPC_Z_VEL_MAX\" and \"MPC_LAND_SPEED\" - horizontal velocity gets limited to a value between \"MPC_VEL_MANUAL\" and \"MPC_LAND_VEL_XY\" for a smooth descent and landing experience. Value needs to be higher than \"MPC_LAND_ALT2\"", + "units": "m", + "default": 5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 122 }, { - "name": "PWM_MAIN_MAX7", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_LAND_ALT2", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the max PWM value for the main 7 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Altitude for 2. step of slow landing (landing)", + "longDesc": "Below this altitude descending and horizontal velocities get limited to \"MPC_LAND_SPEED\" and \"MPC_LAND_VEL_XY\", respectively. Value needs to be lower than \"MPC_LAND_ALT1\"", + "units": "m", + "default": 2, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 122 }, { - "name": "PWM_MAIN_MAX8", + "name": "MPC_LAND_RC_HELP", "type": "Int32", - "group": "PWM Outputs", + "group": "Miscellaneous", "category": "Standard", - "shortDesc": "Set the max PWM value for the main 8 output", - "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MAX will be used", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Enable user assisted descent speed for autonomous land routine. When enabled, descent speed will be equal to MPC_LAND_SPEED at half throttle, MPC_Z_VEL_MAX_DN at zero throttle, and 0.5 * MPC_LAND_SPEED at full throttle", + "default": 0, + "values": [ + { + "value": 0, + "description": "Fixed descent speed of MPC_LAND_SPEED" + }, + { + "value": 1, + "description": "User assisted descent speed" + } + ], "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": 0, + "maxValue": 1 }, { - "name": "PWM_MAIN_MIN1", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_LAND_SPEED", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the main 1 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Landing descend rate", + "units": "m/s", + "default": 0.7, + "decimalPlaces": 1, + "minValue": 0.6, + "maxValue": 3.40282e+38 }, { - "name": "PWM_MAIN_MIN2", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_LAND_VEL_XY", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the main 2 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Maximum horizontal position mode velocity when close to ground/home altitude Set the value higher than the otherwise expected maximum to disable any slowdown", + "units": "m/s", + "default": 10, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 3.40282e+38 }, { - "name": "PWM_MAIN_MIN3", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_MANTHR_MIN", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the main 3 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Minimum manual thrust", + "longDesc": "Minimum vertical thrust. It's recommended to set it > 0 to avoid free fall with zero thrust. With MC_AIRMODE set to 1, this can safely be set to 0.", + "units": "norm", + "default": 0.08, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "PWM_MAIN_MIN4", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_MAN_TILT_MAX", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the main 4 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Maximal tilt angle in manual or altitude mode", + "units": "deg", + "default": 35, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 90 }, { - "name": "PWM_MAIN_MIN5", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_MAN_Y_MAX", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the main 5 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Max manual yaw rate", + "units": "deg/s", + "default": 150, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 400 }, { - "name": "PWM_MAIN_MIN6", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_MAN_Y_TAU", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the main 6 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "shortDesc": "Manual yaw rate input filter time constant Setting this parameter to 0 disables the filter", + "units": "s", + "default": 0.08, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 5 }, { - "name": "PWM_MAIN_MIN7", + "name": "MPC_POS_MODE", "type": "Int32", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the main 7 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Manual-Position control sub-mode", + "longDesc": "The supported sub-modes are: 0 Simple position control where sticks map directly to velocity setpoints without smoothing. Useful for velocity control tuning. 1 Smooth position control with maximum acceleration and jerk limits based on slew-rates. 3 Smooth position control with maximum acceleration and jerk limits based on jerk optimized trajectory generator (different algorithm than 1).", + "default": 3, + "values": [ + { + "value": 0, + "description": "Simple position control" + }, + { + "value": 1, + "description": "Smooth position control" + }, + { + "value": 3, + "description": "Smooth position control (Jerk optimized)" + } + ], "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "PWM_MAIN_MIN8", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_SPOOLUP_TIME", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the min PWM value for the main 8 output", - "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_MIN will be used", - "units": "us", - "default": -1, - "rebootRequired": true, + "shortDesc": "Enforced delay between arming and takeoff", + "longDesc": "For altitude controlled modes the time from arming the motors until a takeoff is possible gets forced to be at least MPC_SPOOLUP_TIME seconds to ensure the motors and propellers can sppol up and reach idle speed before getting commanded to spin faster. This delay is particularly useful for vehicles with slow motor spin-up e.g. because of large propellers.", + "units": "s", + "default": 1, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2200 + "minValue": 0, + "maxValue": 10 }, { - "name": "PWM_MAIN_REV1", + "name": "MPC_THR_CURVE", "type": "Int32", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Invert direction of main output channel 1", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", + "shortDesc": "Thrust curve in Manual Mode", + "longDesc": "This parameter defines how the throttle stick input is mapped to commanded thrust in Manual/Stabilized flight mode. In case the default is used ('Rescale to hover thrust'), the stick input is linearly rescaled, such that a centered stick corresponds to the hover throttle (see MPC_THR_HOVER). Select 'No Rescale' to directly map the stick 1:1 to the output. This can be useful in case the hover thrust is very low and the default would lead to too much distortion (e.g. if hover thrust is set to 20%, 80% of the upper thrust range is squeezed into the upper half of the stick range). Note: In case MPC_THR_HOVER is set to 50%, the modes 0 and 1 are the same.", "default": 0, + "values": [ + { + "value": 0, + "description": "Rescale to hover thrust" + }, + { + "value": 1, + "description": "No Rescale" + } + ], "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "PWM_MAIN_REV2", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_THR_HOVER", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Invert direction of main output channel 2", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Hover thrust", + "longDesc": "Vertical thrust required to hover. This value is mapped to center stick for manual throttle control. With this value set to the thrust required to hover, transition from manual to Altitude or Position mode while hovering will occur with the throttle stick near center, which is then interpreted as (near) zero demand for vertical speed. This parameter is also important for the landing detection to work correctly.", + "units": "norm", + "default": 0.5, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0.1, + "maxValue": 0.8 }, { - "name": "PWM_MAIN_REV3", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_THR_MAX", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Invert direction of main output channel 3", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Maximum thrust in auto thrust control", + "longDesc": "Limit max allowed thrust", + "units": "norm", + "default": 1, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "PWM_MAIN_REV4", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_THR_MIN", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Invert direction of main output channel 4", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Minimum thrust in auto thrust control", + "longDesc": "It's recommended to set it > 0 to avoid free fall with zero thrust.", + "units": "norm", + "default": 0.12, + "increment": 0.01, + "decimalPlaces": 2, + "minValue": 0.05, + "maxValue": 1 + }, + { + "name": "MPC_TILTMAX_AIR", + "type": "Float", + "group": "Multicopter Position Control", + "category": "Standard", + "shortDesc": "Maximum tilt angle in air", + "longDesc": "Limits maximum tilt in AUTO and POSCTRL modes during flight.", + "units": "deg", + "default": 45, + "decimalPlaces": 1, + "minValue": 20, + "maxValue": 89 }, { - "name": "PWM_MAIN_REV5", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_TILTMAX_LND", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Invert direction of main output channel 5", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Maximum tilt during landing", + "longDesc": "Limits maximum tilt angle on landing.", + "units": "deg", + "default": 12, + "decimalPlaces": 1, + "minValue": 10, + "maxValue": 89 }, { - "name": "PWM_MAIN_REV6", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_TKO_RAMP_T", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Invert direction of main output channel 6", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, + "shortDesc": "Position control smooth takeoff ramp time constant", + "longDesc": "Increasing this value will make automatic and manual takeoff slower. If it's too slow the drone might scratch the ground and tip over. A time constant of 0 disables the ramp", + "default": 3, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 5 }, { - "name": "PWM_MAIN_REV7", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_TKO_SPEED", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Invert direction of main output channel 7", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "shortDesc": "Takeoff climb rate", + "units": "m/s", + "default": 1.5, + "decimalPlaces": 2, + "minValue": 1, + "maxValue": 5 }, { - "name": "PWM_MAIN_REV8", + "name": "MPC_USE_HTE", "type": "Int32", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Invert direction of main output channel 8", - "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", - "default": 0, + "shortDesc": "Hover thrust source selector", + "longDesc": "Set false to use the fixed parameter MPC_THR_HOVER Set true to use the value computed by the hover thrust estimator", + "default": 1, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "PWM_MAIN_TRIM1", + "name": "MPC_VELD_LP", "type": "Float", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Trim value for main output channel 1", - "longDesc": "Set to normalized offset", - "default": 0, + "shortDesc": "Low pass filter cut freq. for numerical velocity derivative", + "units": "Hz", + "default": 5, "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "minValue": 0, + "maxValue": 10 }, { - "name": "PWM_MAIN_TRIM2", + "name": "MPC_VEL_MANUAL", "type": "Float", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Trim value for main output channel 2", - "longDesc": "Set to normalized offset", - "default": 0, + "shortDesc": "Maximum horizontal velocity setpoint for manual controlled mode If velocity setpoint larger than MPC_XY_VEL_MAX is set, then the setpoint will be capped to MPC_XY_VEL_MAX", + "units": "m/s", + "default": 10, + "increment": 1, "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "minValue": 3, + "maxValue": 20 }, { - "name": "PWM_MAIN_TRIM3", + "name": "MPC_XY_CRUISE", "type": "Float", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Trim value for main output channel 3", - "longDesc": "Set to normalized offset", - "default": 0, + "shortDesc": "Maximum horizontal velocity in mission", + "longDesc": "Normal horizontal velocity in AUTO modes (includes also RTL / hold / etc.) and endpoint for position stabilized mode (POSCTRL).", + "units": "m/s", + "default": 5, + "increment": 1, "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "minValue": 3, + "maxValue": 20 }, { - "name": "PWM_MAIN_TRIM4", + "name": "MPC_XY_MAN_EXPO", "type": "Float", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Trim value for main output channel 4", - "longDesc": "Set to normalized offset", - "default": 0, + "shortDesc": "Manual position control stick exponential curve sensitivity", + "longDesc": "The higher the value the less sensitivity the stick has around zero while still reaching the maximum value with full stick deflection. 0 Purely linear input curve (default) 1 Purely cubic input curve", + "default": 0.6, "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "minValue": 0, + "maxValue": 1 }, { - "name": "PWM_MAIN_TRIM5", + "name": "MPC_XY_P", "type": "Float", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Trim value for main output channel 5", - "longDesc": "Set to normalized offset", - "default": 0, + "shortDesc": "Proportional gain for horizontal position error", + "default": 0.95, "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "minValue": 0, + "maxValue": 2 }, { - "name": "PWM_MAIN_TRIM6", + "name": "MPC_XY_TRAJ_P", "type": "Float", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Trim value for main output channel 6", - "longDesc": "Set to normalized offset", - "default": 0, - "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "shortDesc": "Proportional gain for horizontal trajectory position error", + "default": 0.5, + "decimalPlaces": 1, + "minValue": 0.1, + "maxValue": 1 }, { - "name": "PWM_MAIN_TRIM7", + "name": "MPC_XY_VEL_D_ACC", "type": "Float", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Trim value for main output channel 7", - "longDesc": "Set to normalized offset", - "default": 0, - "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "shortDesc": "Differential gain for horizontal velocity error. Small values help reduce fast oscillations. If value is too big oscillations will appear again", + "longDesc": "defined as correction acceleration in m/s^2 per m/s^2 velocity derivative", + "default": 0.2, + "decimalPlaces": 3, + "minValue": 0.1, + "maxValue": 2 }, { - "name": "PWM_MAIN_TRIM8", + "name": "MPC_XY_VEL_I_ACC", "type": "Float", - "group": "PWM Outputs", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Trim value for main output channel 8", - "longDesc": "Set to normalized offset", - "default": 0, + "shortDesc": "Integral gain for horizontal velocity error", + "longDesc": "defined as correction acceleration in m/s^2 per m velocity integral Non-zero value allows to eliminate steady state errors in the presence of disturbances like wind.", + "default": 0.4, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 60 + }, + { + "name": "MPC_XY_VEL_MAX", + "type": "Float", + "group": "Multicopter Position Control", + "category": "Standard", + "shortDesc": "Maximum horizontal velocity", + "longDesc": "Maximum horizontal velocity in AUTO mode. If higher speeds are commanded in a mission they will be capped to this velocity.", + "units": "m/s", + "default": 12, + "increment": 1, "decimalPlaces": 2, - "minValue": -0.2, - "maxValue": 0.2 + "minValue": 0, + "maxValue": 20 }, { - "name": "PWM_MAX", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_XY_VEL_P_ACC", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the maximum PWM for the main outputs", - "longDesc": "Set to 2000 for industry default or 2100 to increase servo travel.", - "units": "us", - "default": 2000, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 1600, - "maxValue": 2200 + "shortDesc": "Proportional gain for horizontal velocity error", + "longDesc": "defined as correction acceleration in m/s^2 per m/s velocity error", + "default": 1.8, + "decimalPlaces": 2, + "minValue": 1.2, + "maxValue": 3 }, { - "name": "PWM_MIN", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_YAWRAUTO_MAX", + "type": "Float", + "group": "Multicopter Attitude Control", "category": "Standard", - "shortDesc": "Set the minimum PWM for the main outputs", - "longDesc": "Set to 1000 for industry default or 900 to increase servo travel.", - "units": "us", - "default": 1000, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1400 + "shortDesc": "Max yaw rate in auto mode", + "longDesc": "Limit the rate of change of the yaw setpoint in autonomous mode to avoid large control output and mixer saturation.", + "units": "deg/s", + "default": 45, + "increment": 5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 360 }, { - "name": "PWM_RATE", - "type": "Int32", - "group": "PWM Outputs", + "name": "MPC_YAW_EXPO", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Set the PWM output frequency for the main outputs", - "longDesc": "Set to 400 for industry default or 1000 for high frequency ESCs. Set to 0 for Oneshot125.", - "units": "Hz", - "default": 400, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 2000 + "shortDesc": "Manual control stick yaw rotation exponential curve", + "longDesc": "The higher the value the less sensitivity the stick has around zero while still reaching the maximum value with full stick deflection. 0 Purely linear input curve (default) 1 Purely cubic input curve", + "default": 0.6, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "PWM_SBUS_MODE", + "name": "MPC_YAW_MODE", "type": "Int32", - "group": "PWM Outputs", + "group": "Mission", "category": "Standard", - "shortDesc": "S.BUS out", - "longDesc": "Set to 1 to enable S.BUS version 1 output instead of RSSI.", + "shortDesc": "Yaw mode", + "longDesc": "Specifies the heading in Auto.", "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "RBCLW_ADDRESS", - "type": "Int32", - "group": "Roboclaw driver", - "category": "Standard", - "shortDesc": "Address of the Roboclaw", - "longDesc": "The Roboclaw can be configured to have an address from 0x80 to 0x87, inclusive. It must be configured to match this parameter.", - "default": 128, "values": [ { - "value": 128, - "description": "0x80" - }, - { - "value": 129, - "description": "0x81" - }, - { - "value": 130, - "description": "0x82" - }, - { - "value": 131, - "description": "0x83" + "value": 0, + "description": "towards waypoint" }, { - "value": 132, - "description": "0x84" + "value": 1, + "description": "towards home" }, { - "value": 133, - "description": "0x85" + "value": 2, + "description": "away from home" }, { - "value": 134, - "description": "0x86" + "value": 3, + "description": "along trajectory" }, { - "value": 135, - "description": "0x87" + "value": 4, + "description": "towards waypoint (yaw first)" } ], "decimalPlaces": 3, - "minValue": 128, - "maxValue": 135 + "minValue": 0, + "maxValue": 4 }, { - "name": "RBCLW_BAUD", - "type": "Int32", - "group": "Roboclaw driver", + "name": "MPC_Z_MAN_EXPO", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Roboclaw serial baud rate", - "longDesc": "Baud rate of the serial communication with the Roboclaw. The Roboclaw must be configured to match this rate.", - "default": 2400, - "values": [ - { - "value": 2400, - "description": "2400 baud" - }, - { - "value": 9600, - "description": "9600 baud" - }, - { - "value": 19200, - "description": "19200 baud" - }, - { - "value": 38400, - "description": "38400 baud" - }, - { - "value": 57600, - "description": "57600 baud" - }, - { - "value": 115200, - "description": "115200 baud" - }, - { - "value": 230400, - "description": "230400 baud" - }, - { - "value": 460800, - "description": "460800 baud" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 2400, - "maxValue": 460800 + "shortDesc": "Manual control stick vertical exponential curve", + "longDesc": "The higher the value the less sensitivity the stick has around zero while still reaching the maximum value with full stick deflection. 0 Purely linear input curve (default) 1 Purely cubic input curve", + "default": 0.6, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "RBCLW_COUNTS_REV", - "type": "Int32", - "group": "Roboclaw driver", + "name": "MPC_Z_P", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Encoder counts per revolution", - "longDesc": "Number of encoder counts for one revolution. The roboclaw treats analog encoders (potentiometers) as having 2047 counts per rev. The default value of 1200 corresponds to the default configuration of the Aion R1 rover.", - "default": 1200, + "shortDesc": "Proportional gain for vertical position error", + "default": 1, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1.5 + }, + { + "name": "MPC_Z_VEL_D_ACC", + "type": "Float", + "group": "Multicopter Position Control", + "category": "Standard", + "shortDesc": "Differential gain for vertical velocity error", + "longDesc": "defined as correction acceleration in m/s^2 per m/s^2 velocity derivative", + "default": 0, "decimalPlaces": 3, - "minValue": 1, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 2 }, { - "name": "RBCLW_READ_PER", - "type": "Int32", - "group": "Roboclaw driver", + "name": "MPC_Z_VEL_I_ACC", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Encoder read period", - "longDesc": "How long to wait, in Milliseconds, between reading wheel encoder values over Uart from the Roboclaw", - "units": "ms", - "default": 10, + "shortDesc": "Integral gain for vertical velocity error", + "longDesc": "defined as correction acceleration in m/s^2 per m velocity integral Non zero value allows hovering thrust estimation on stabilized or autonomous takeoff.", + "default": 2, "decimalPlaces": 3, - "minValue": 1, - "maxValue": 1000 + "minValue": 0.2, + "maxValue": 2 }, { - "name": "RBCLW_SER_CFG", - "type": "Int32", - "group": "Roboclaw", + "name": "MPC_Z_VEL_MAX_DN", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Serial Configuration for Roboclaw Driver", - "longDesc": "Configure on which serial port to run Roboclaw Driver.", - "default": 0, - "values": [ - { - "value": 0, - "description": "Disabled" - }, - { - "value": 6, - "description": "UART 6" - }, - { - "value": 101, - "description": "TELEM 1" - }, - { - "value": 102, - "description": "TELEM 2" - }, - { - "value": 103, - "description": "TELEM 3" - }, - { - "value": 104, - "description": "TELEM/SERIAL 4" - }, - { - "value": 201, - "description": "GPS 1" - }, - { - "value": 202, - "description": "GPS 2" - }, - { - "value": 203, - "description": "GPS 3" - }, - { - "value": 300, - "description": "Radio Controller" - } - ], - "rebootRequired": true, + "shortDesc": "Maximum vertical descent velocity", + "longDesc": "Maximum vertical velocity in AUTO mode and endpoint for stabilized modes (ALTCTRL, POSCTRL).", + "units": "m/s", + "default": 1, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0.5, + "maxValue": 4 }, { - "name": "RBCLW_WRITE_PER", - "type": "Int32", - "group": "Roboclaw driver", + "name": "MPC_Z_VEL_MAX_UP", + "type": "Float", + "group": "Multicopter Position Control", "category": "Standard", - "shortDesc": "Uart write period", - "longDesc": "How long to wait, in Milliseconds, between writing actuator controls over Uart to the Roboclaw", - "units": "ms", + "shortDesc": "Maximum vertical ascent velocity", + "longDesc": "Maximum vertical velocity in AUTO mode and endpoint for stabilized modes (ALTCTRL, POSCTRL).", + "units": "m/s", + "default": 3, + "decimalPlaces": 1, + "minValue": 0.5, + "maxValue": 8 + }, + { + "name": "MPC_Z_VEL_P_ACC", + "type": "Float", + "group": "Multicopter Position Control", + "category": "Standard", + "shortDesc": "Proportional gain for vertical velocity error", + "longDesc": "defined as correction acceleration in m/s^2 per m/s velocity error", + "default": 4, + "decimalPlaces": 2, + "minValue": 2, + "maxValue": 8 + }, + { + "name": "NAV_ACC_RAD", + "type": "Float", + "group": "Mission", + "category": "Standard", + "shortDesc": "Acceptance Radius", + "longDesc": "Default acceptance radius, overridden by acceptance radius of waypoint if set. For fixed wing the L1 turning distance is used for horizontal acceptance.", + "units": "m", "default": 10, - "decimalPlaces": 3, - "minValue": 1, - "maxValue": 1000 + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0.05, + "maxValue": 200 }, { - "name": "RC10_DZ", + "name": "NAV_AH_ALT", "type": "Float", - "group": "Radio Calibration", + "group": "Data Link Loss", "category": "Standard", - "shortDesc": "RC channel 10 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 0, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "shortDesc": "Airfield home alt", + "longDesc": "Altitude of airfield home waypoint", + "units": "m", + "default": 600, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": -50, + "maxValue": 3.40282e+38 }, { - "name": "RC10_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "NAV_AH_LAT", + "type": "Int32", + "group": "Data Link Loss", "category": "Standard", - "shortDesc": "RC channel 10 maximum", - "longDesc": "Maximum value for this channel.", - "units": "us", - "default": 2000, + "shortDesc": "Airfield home Lat", + "longDesc": "Latitude of airfield home waypoint", + "units": "deg * 1e7", + "default": -2.65848e+08, "decimalPlaces": 3, - "minValue": 1500, - "maxValue": 2200 + "minValue": -9e+08, + "maxValue": 9e+08 }, { - "name": "RC10_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "NAV_AH_LON", + "type": "Int32", + "group": "Data Link Loss", "category": "Standard", - "shortDesc": "RC channel 10 minimum", - "longDesc": "Minimum value for this channel.", - "units": "us", - "default": 1000, + "shortDesc": "Airfield home Lon", + "longDesc": "Longitude of airfield home waypoint", + "units": "deg * 1e7", + "default": 1.51842e+09, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": -1.8e+09, + "maxValue": 1.8e+09 }, { - "name": "RC10_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "NAV_DLL_ACT", + "type": "Int32", + "group": "Mission", "category": "Standard", - "shortDesc": "RC channel 10 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, + "shortDesc": "Set data link loss failsafe mode", + "longDesc": "The data link loss failsafe will only be entered after a timeout, set by COM_DL_LOSS_T in seconds. Once the timeout occurs the selected action will be executed.", + "default": 0, "values": [ { - "value": -1, - "description": "Reverse" + "value": 0, + "description": "Disabled" }, { "value": 1, - "description": "Normal" + "description": "Hold mode" + }, + { + "value": 2, + "description": "Return mode" + }, + { + "value": 3, + "description": "Land mode" + }, + { + "value": 5, + "description": "Terminate" + }, + { + "value": 6, + "description": "Lockdown" } ], "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC10_TRIM", - "type": "Float", - "group": "Radio Calibration", + "name": "NAV_FORCE_VT", + "type": "Int32", + "group": "Mission", "category": "Standard", - "shortDesc": "RC channel 10 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", - "units": "us", - "default": 1500, + "shortDesc": "Force VTOL mode takeoff and land", + "default": 1, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC11_DZ", + "name": "NAV_FT_DST", "type": "Float", - "group": "Radio Calibration", + "group": "Follow target", "category": "Standard", - "shortDesc": "RC channel 11 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 0, + "shortDesc": "Distance to follow target from", + "longDesc": "The distance in meters to follow the target at", + "units": "meters", + "default": 8, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "minValue": 1, + "maxValue": 3.40282e+38 }, { - "name": "RC11_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "NAV_FT_FS", + "type": "Int32", + "group": "Follow target", "category": "Standard", - "shortDesc": "RC channel 11 maximum", - "longDesc": "Maximum value for this channel.", - "units": "us", - "default": 2000, + "shortDesc": "Side to follow target from", + "longDesc": "The side to follow the target from (front right = 0, behind = 1, front = 2, front left = 3)", + "units": "n/a", + "default": 1, "decimalPlaces": 3, - "minValue": 1500, - "maxValue": 2200 + "minValue": 0, + "maxValue": 3 }, { - "name": "RC11_MIN", + "name": "NAV_FT_RS", "type": "Float", - "group": "Radio Calibration", + "group": "Follow target", "category": "Standard", - "shortDesc": "RC channel 11 minimum", - "longDesc": "Minimum value for this channel.", - "units": "us", - "default": 1000, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "shortDesc": "Dynamic filtering algorithm responsiveness to target movement lower numbers increase the responsiveness to changing long lat but also ignore less noise", + "units": "n/a", + "default": 0.5, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "RC11_REV", + "name": "NAV_FW_ALTL_RAD", "type": "Float", - "group": "Radio Calibration", + "group": "Mission", "category": "Standard", - "shortDesc": "RC channel 11 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 + "shortDesc": "FW Altitude Acceptance Radius before a landing", + "longDesc": "Altitude acceptance used for the last waypoint before a fixed-wing landing. This is usually smaller than the standard vertical acceptance because close to the ground higher accuracy is required.", + "units": "m", + "default": 5, + "decimalPlaces": 1, + "minValue": 0.05, + "maxValue": 200 }, { - "name": "RC11_TRIM", + "name": "NAV_FW_ALT_RAD", "type": "Float", - "group": "Radio Calibration", + "group": "Mission", "category": "Standard", - "shortDesc": "RC channel 11 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", - "units": "us", - "default": 1500, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 2200 + "shortDesc": "FW Altitude Acceptance Radius", + "longDesc": "Acceptance radius for fixedwing altitude.", + "units": "m", + "default": 10, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0.05, + "maxValue": 200 }, { - "name": "RC12_DZ", + "name": "NAV_GPSF_LT", "type": "Float", - "group": "Radio Calibration", + "group": "GPS Failure Navigation", "category": "Standard", - "shortDesc": "RC channel 12 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", + "shortDesc": "Loiter time", + "longDesc": "The time in seconds the system should do open loop loiter and wait for GPS recovery before it goes into flight termination. Set to 0 to disable.", + "units": "s", "default": 0, - "decimalPlaces": 3, + "increment": 1, + "decimalPlaces": 0, "minValue": 0, - "maxValue": 100 - }, - { - "name": "RC12_MAX", - "type": "Float", - "group": "Radio Calibration", - "category": "Standard", - "shortDesc": "RC channel 12 maximum", - "longDesc": "Maximum value for this channel.", - "units": "us", - "default": 2000, - "decimalPlaces": 3, - "minValue": 1500, - "maxValue": 2200 + "maxValue": 3600 }, { - "name": "RC12_MIN", + "name": "NAV_GPSF_P", "type": "Float", - "group": "Radio Calibration", + "group": "GPS Failure Navigation", "category": "Standard", - "shortDesc": "RC channel 12 minimum", - "longDesc": "Minimum value for this channel.", - "units": "us", - "default": 1000, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "shortDesc": "Fixed pitch angle", + "longDesc": "Pitch in degrees during the open loop loiter", + "units": "deg", + "default": 0, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": -30, + "maxValue": 30 }, { - "name": "RC12_REV", + "name": "NAV_GPSF_R", "type": "Float", - "group": "Radio Calibration", + "group": "GPS Failure Navigation", "category": "Standard", - "shortDesc": "RC channel 12 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 + "shortDesc": "Fixed bank angle", + "longDesc": "Roll in degrees during the loiter", + "units": "deg", + "default": 15, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 30 }, { - "name": "RC12_TRIM", + "name": "NAV_GPSF_TR", "type": "Float", - "group": "Radio Calibration", + "group": "GPS Failure Navigation", "category": "Standard", - "shortDesc": "RC channel 12 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", - "units": "us", - "default": 1500, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 2200 + "shortDesc": "Thrust", + "longDesc": "Thrust value which is set during the open loop loiter", + "units": "norm", + "default": 0, + "increment": 0.05, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 1 }, { - "name": "RC13_DZ", + "name": "NAV_LOITER_RAD", "type": "Float", - "group": "Radio Calibration", + "group": "Mission", "category": "Standard", - "shortDesc": "RC channel 13 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 0, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "shortDesc": "Loiter radius (FW only)", + "longDesc": "Default value of loiter radius for missions, Hold mode, Return mode, etc. (fixedwing only).", + "units": "m", + "default": 50, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 25, + "maxValue": 1000 }, { - "name": "RC13_MAX", + "name": "NAV_MC_ALT_RAD", "type": "Float", - "group": "Radio Calibration", + "group": "Mission", "category": "Standard", - "shortDesc": "RC channel 13 maximum", - "longDesc": "Maximum value for this channel.", - "units": "us", - "default": 2000, - "decimalPlaces": 3, - "minValue": 1500, - "maxValue": 2200 + "shortDesc": "MC Altitude Acceptance Radius", + "longDesc": "Acceptance radius for multicopter altitude.", + "units": "m", + "default": 0.8, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": 0.05, + "maxValue": 200 }, { - "name": "RC13_MIN", + "name": "NAV_MIN_FT_HT", "type": "Float", - "group": "Radio Calibration", + "group": "Follow target", "category": "Standard", - "shortDesc": "RC channel 13 minimum", - "longDesc": "Minimum value for this channel.", - "units": "us", - "default": 1000, + "shortDesc": "Minimum follow target altitude", + "longDesc": "The minimum height in meters relative to home for following a target", + "units": "meters", + "default": 8, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": 8, + "maxValue": 3.40282e+38 }, { - "name": "RC13_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "NAV_RCL_ACT", + "type": "Int32", + "group": "Mission", "category": "Standard", - "shortDesc": "RC channel 13 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, + "shortDesc": "Set RC loss failsafe mode", + "longDesc": "The RC loss failsafe will only be entered after a timeout, set by COM_RC_LOSS_T in seconds. If RC input checks have been disabled by setting the COM_RC_IN_MODE param it will not be triggered.", + "default": 2, "values": [ { - "value": -1, - "description": "Reverse" + "value": 0, + "description": "Disabled" }, { "value": 1, - "description": "Normal" + "description": "Hold mode" + }, + { + "value": 2, + "description": "Return mode" + }, + { + "value": 3, + "description": "Land mode" + }, + { + "value": 5, + "description": "Terminate" + }, + { + "value": 6, + "description": "Lockdown" } ], "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 - }, - { - "name": "RC13_TRIM", - "type": "Float", - "group": "Radio Calibration", - "category": "Standard", - "shortDesc": "RC channel 13 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", - "units": "us", - "default": 1500, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC14_DZ", - "type": "Float", - "group": "Radio Calibration", + "name": "NAV_TRAFF_AVOID", + "type": "Int32", + "group": "Mission", "category": "Standard", - "shortDesc": "RC channel 14 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 0, + "shortDesc": "Set traffic avoidance mode", + "longDesc": "Enabling this will allow the system to respond to transponder data from e.g. ADSB transponders", + "default": 1, + "values": [ + { + "value": 0, + "description": "Disabled" + }, + { + "value": 1, + "description": "Warn only" + }, + { + "value": 2, + "description": "Return mode" + }, + { + "value": 3, + "description": "Land mode" + }, + { + "value": 4, + "description": "Position Hold mode" + } + ], "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC14_MAX", + "name": "NAV_TRAFF_A_RADM", "type": "Float", - "group": "Radio Calibration", + "group": "Mission", "category": "Standard", - "shortDesc": "RC channel 14 maximum", - "longDesc": "Maximum value for this channel.", - "units": "us", - "default": 2000, + "shortDesc": "Set NAV TRAFFIC AVOID RADIUS MANNED", + "longDesc": "Defines the Radius where NAV TRAFFIC AVOID is Called For Manned Aviation", + "units": "m", + "default": 500, "decimalPlaces": 3, - "minValue": 1500, - "maxValue": 2200 + "minValue": 500, + "maxValue": 3.40282e+38 }, { - "name": "RC14_MIN", + "name": "NAV_TRAFF_A_RADU", "type": "Float", - "group": "Radio Calibration", + "group": "Mission", "category": "Standard", - "shortDesc": "RC channel 14 minimum", - "longDesc": "Minimum value for this channel.", - "units": "us", - "default": 1000, + "shortDesc": "Set NAV TRAFFIC AVOID RADIUS", + "longDesc": "Defines the Radius where NAV TRAFFIC AVOID is Called For Unmanned Aviation", + "units": "m", + "default": 10, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": 10, + "maxValue": 500 }, { - "name": "RC14_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "OSD_ATXXXX_CFG", + "type": "Int32", + "group": "OSD", "category": "Standard", - "shortDesc": "RC channel 14 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, + "shortDesc": "Enable/Disable the ATXXX OSD Chip", + "longDesc": "Configure the ATXXXX OSD Chip (mounted on the OmnibusF4SD board) and select the transmission standard.", + "default": 0, "values": [ { - "value": -1, - "description": "Reverse" + "value": 0, + "description": "Disabled" }, { "value": 1, - "description": "Normal" + "description": "NTSC" + }, + { + "value": 2, + "description": "PAL" } ], + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 - }, - { - "name": "RC14_TRIM", - "type": "Float", - "group": "Radio Calibration", - "category": "Standard", - "shortDesc": "RC channel 14 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", - "units": "us", - "default": 1500, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 2200 - }, - { - "name": "RC15_DZ", - "type": "Float", - "group": "Radio Calibration", - "category": "Standard", - "shortDesc": "RC channel 15 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 0, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC15_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "PCF8583_ADDR", + "type": "Int32", + "group": "Sensors", "category": "Standard", - "shortDesc": "RC channel 15 maximum", - "longDesc": "Maximum value for this channel.", - "units": "us", - "default": 2000, + "shortDesc": "PCF8583 rotorfreq (i2c) i2c address", + "default": 80, + "values": [ + { + "value": 80, + "description": "Address 0x50 (80)" + }, + { + "value": 81, + "description": "Address 0x51 (81)" + } + ], + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 1500, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC15_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "PCF8583_MAGNET", + "type": "Int32", + "group": "Sensors", "category": "Standard", - "shortDesc": "RC channel 15 minimum", - "longDesc": "Minimum value for this channel.", - "units": "us", - "default": 1000, + "shortDesc": "PCF8583 rotorfreq (i2c) pulse count", + "longDesc": "Nmumber of signals per rotation of actuator", + "default": 2, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": 1, + "maxValue": 2.14748e+09 }, { - "name": "RC15_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PCF8583_POOL", + "type": "Int32", + "group": "Sensors", "category": "Standard", - "shortDesc": "RC channel 15 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "PCF8583 rotorfreq (i2c) pool interval How often the sensor is readout", + "units": "us", + "default": 1e+06, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC15_TRIM", - "type": "Float", - "group": "Radio Calibration", + "name": "PCF8583_RESET", + "type": "Int32", + "group": "Sensors", "category": "Standard", - "shortDesc": "RC channel 15 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", - "units": "us", - "default": 1500, + "shortDesc": "PCF8583 rotorfreq (i2c) pulse reset value", + "longDesc": "Internal device counter is reset to 0 when overun this value, counter is able to store upto 6 digits reset of counter takes some time - measurement with reset has worse accurancy. 0 means reset counter after every measurement.", + "default": 500000, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC16_DZ", + "name": "PLD_BTOUT", "type": "Float", - "group": "Radio Calibration", + "group": "Precision Land", "category": "Standard", - "shortDesc": "RC channel 16 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 0, - "decimalPlaces": 3, + "shortDesc": "Landing Target Timeout", + "longDesc": "Time after which the landing target is considered lost without any new measurements.", + "units": "s", + "default": 5, + "increment": 0.5, + "decimalPlaces": 1, "minValue": 0, - "maxValue": 100 + "maxValue": 50 }, { - "name": "RC16_MAX", + "name": "PLD_FAPPR_ALT", "type": "Float", - "group": "Radio Calibration", + "group": "Precision Land", "category": "Standard", - "shortDesc": "RC channel 16 maximum", - "longDesc": "Maximum value for this channel.", - "units": "us", - "default": 2000, - "decimalPlaces": 3, - "minValue": 1500, - "maxValue": 2200 + "shortDesc": "Final approach altitude", + "longDesc": "Allow final approach (without horizontal positioning) if losing landing target closer than this to the ground.", + "units": "m", + "default": 0.1, + "increment": 0.1, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 10 }, { - "name": "RC16_MIN", + "name": "PLD_HACC_RAD", "type": "Float", - "group": "Radio Calibration", + "group": "Precision Land", "category": "Standard", - "shortDesc": "RC channel 16 minimum", - "longDesc": "Minimum value for this channel.", - "units": "us", - "default": 1000, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "shortDesc": "Horizontal acceptance radius", + "longDesc": "Start descending if closer above landing target than this.", + "units": "m", + "default": 0.2, + "increment": 0.1, + "decimalPlaces": 2, + "minValue": 0, + "maxValue": 10 }, { - "name": "RC16_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PLD_MAX_SRCH", + "type": "Int32", + "group": "Precision Land", "category": "Standard", - "shortDesc": "RC channel 16 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "Maximum number of search attempts", + "longDesc": "Maximum number of times to seach for the landing target if it is lost during the precision landing.", + "default": 3, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 + "minValue": 0, + "maxValue": 100 }, { - "name": "RC16_TRIM", + "name": "PLD_SRCH_ALT", "type": "Float", - "group": "Radio Calibration", + "group": "Precision Land", "category": "Standard", - "shortDesc": "RC channel 16 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", - "units": "us", - "default": 1500, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 2200 + "shortDesc": "Search altitude", + "longDesc": "Altitude above home to which to climb when searching for the landing target.", + "units": "m", + "default": 10, + "increment": 0.1, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 100 }, { - "name": "RC17_DZ", + "name": "PLD_SRCH_TOUT", "type": "Float", - "group": "Radio Calibration", + "group": "Precision Land", "category": "Standard", - "shortDesc": "RC channel 17 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 0, - "decimalPlaces": 3, + "shortDesc": "Search timeout", + "longDesc": "Time allowed to search for the landing target before falling back to normal landing.", + "units": "s", + "default": 10, + "increment": 0.1, + "decimalPlaces": 1, "minValue": 0, "maxValue": 100 }, { - "name": "RC17_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_DIS1", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 17 maximum", - "longDesc": "Maximum value for this channel.", + "shortDesc": "Set the disarmed PWM for the auxiliary 1 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", "units": "us", - "default": 2000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 1500, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC17_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_DIS2", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 17 minimum", - "longDesc": "Minimum value for this channel.", + "shortDesc": "Set the disarmed PWM for the auxiliary 2 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", "units": "us", - "default": 1000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC17_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_DIS3", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 17 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "Set the disarmed PWM for the auxiliary 3 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", + "units": "us", + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, "minValue": -1, - "maxValue": 1 + "maxValue": 2200 }, { - "name": "RC17_TRIM", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_DIS4", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 17 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", + "shortDesc": "Set the disarmed PWM for the auxiliary 4 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", "units": "us", - "default": 1500, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC18_DZ", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_DIS5", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 18 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 0, + "shortDesc": "Set the disarmed PWM for the auxiliary 5 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", + "units": "us", + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC18_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_DIS6", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 18 maximum", - "longDesc": "Maximum value for this channel.", + "shortDesc": "Set the disarmed PWM for the auxiliary 6 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", "units": "us", - "default": 2000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 1500, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC18_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_DIS7", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 18 minimum", - "longDesc": "Minimum value for this channel.", + "shortDesc": "Set the disarmed PWM for the auxiliary 7 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", "units": "us", - "default": 1000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC18_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_DIS8", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 18 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "Set the disarmed PWM for the auxiliary 8 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_AUX_DISARMED will be used", + "units": "us", + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, "minValue": -1, - "maxValue": 1 + "maxValue": 2200 }, { - "name": "RC18_TRIM", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_DISARMED", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 18 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", + "shortDesc": "Set the disarmed PWM for auxiliary outputs", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. The main use of this parameter is to silence ESCs when they are disarmed.", "units": "us", "default": 1500, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, + "minValue": 0, "maxValue": 2200 }, { - "name": "RC1_DZ", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_FAIL1", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 1 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", + "shortDesc": "Set the failsafe PWM for the auxiliary 1 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", "units": "us", - "default": 10, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC1_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_FAIL2", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 1 maximum", - "longDesc": "Maximum value for RC channel 1", + "shortDesc": "Set the failsafe PWM for the auxiliary 2 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", "units": "us", - "default": 2000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 1500, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC1_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_FAIL3", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 1 minimum", - "longDesc": "Minimum value for RC channel 1", + "shortDesc": "Set the failsafe PWM for the auxiliary 3 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", "units": "us", - "default": 1000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC1_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_FAIL4", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 1 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "Set the failsafe PWM for the auxiliary 4 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", + "units": "us", + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, "minValue": -1, - "maxValue": 1 + "maxValue": 2200 }, { - "name": "RC1_TRIM", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_FAIL5", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 1 trim", - "longDesc": "Mid point value (same as min for throttle)", + "shortDesc": "Set the failsafe PWM for the auxiliary 5 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", "units": "us", - "default": 1500, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC2_DZ", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_FAIL6", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 2 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", + "shortDesc": "Set the failsafe PWM for the auxiliary 6 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", "units": "us", - "default": 10, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC2_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_FAIL7", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 2 maximum", - "longDesc": "Maximum value for this channel.", + "shortDesc": "Set the failsafe PWM for the auxiliary 7 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", "units": "us", - "default": 2000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 1500, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC2_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_FAIL8", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 2 minimum", - "longDesc": "Minimum value for this channel.", + "shortDesc": "Set the failsafe PWM for the auxiliary 8 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if in failsafe mode. When set to -1 the value is set automatically depending if the actuator is a motor (900us) or a servo (1500us)", "units": "us", - "default": 1000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC2_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MAX", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 2 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "Set the maximum PWM for the auxiliary outputs", + "longDesc": "Set to 2000 for industry default or 2100 to increase servo travel.", + "units": "us", + "default": 2000, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 + "minValue": 1600, + "maxValue": 2200 }, { - "name": "RC2_TRIM", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MAX1", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 2 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", + "shortDesc": "Set the max PWM value for the auxiliary 1 output", + "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", "units": "us", - "default": 1500, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC3_DZ", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MAX2", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 3 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", + "shortDesc": "Set the max PWM value for the auxiliary 2 output", + "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", "units": "us", - "default": 10, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC3_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MAX3", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 3 maximum", - "longDesc": "Maximum value for this channel.", + "shortDesc": "Set the max PWM value for the auxiliary 3 output", + "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", "units": "us", - "default": 2000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 1500, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC3_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MAX4", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 3 minimum", - "longDesc": "Minimum value for this channel.", + "shortDesc": "Set the max PWM value for the auxiliary 4 output", + "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", "units": "us", - "default": 1000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC3_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MAX5", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 3 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "Set the max PWM value for the auxiliary 5 output", + "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", + "units": "us", + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, "minValue": -1, - "maxValue": 1 + "maxValue": 2200 }, { - "name": "RC3_TRIM", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MAX6", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 3 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", + "shortDesc": "Set the max PWM value for the auxiliary 6 output", + "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", "units": "us", - "default": 1500, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC4_DZ", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MAX7", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 4 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", + "shortDesc": "Set the max PWM value for the auxiliary 7 output", + "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", "units": "us", - "default": 10, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC4_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MAX8", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 4 maximum", - "longDesc": "Maximum value for this channel.", + "shortDesc": "Set the max PWM value for the auxiliary 8 output", + "longDesc": "This is the maximum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MAX will be used", "units": "us", - "default": 2000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 1500, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC4_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MIN", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 4 minimum", - "longDesc": "Minimum value for this channel.", + "shortDesc": "Set the minimum PWM for the auxiliary outputs", + "longDesc": "Set to 1000 for industry default or 900 to increase servo travel.", "units": "us", "default": 1000, + "rebootRequired": true, "decimalPlaces": 3, "minValue": 800, - "maxValue": 1500 + "maxValue": 1400 }, { - "name": "RC4_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MIN1", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 4 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "Set the min PWM value for the auxiliary 1 output", + "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", + "units": "us", + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, "minValue": -1, - "maxValue": 1 + "maxValue": 2200 }, { - "name": "RC4_TRIM", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MIN2", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 4 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", + "shortDesc": "Set the min PWM value for the auxiliary 2 output", + "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", "units": "us", - "default": 1500, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC5_DZ", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MIN3", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 5 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 10, + "shortDesc": "Set the min PWM value for the auxiliary 3 output", + "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", + "units": "us", + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC5_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MIN4", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 5 maximum", - "longDesc": "Maximum value for this channel.", + "shortDesc": "Set the min PWM value for the auxiliary 4 output", + "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", "units": "us", - "default": 2000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 1500, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC5_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MIN5", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 5 minimum", - "longDesc": "Minimum value for this channel.", + "shortDesc": "Set the min PWM value for the auxiliary 5 output", + "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", "units": "us", - "default": 1000, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC5_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MIN6", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 5 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "Set the min PWM value for the auxiliary 6 output", + "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", + "units": "us", + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, "minValue": -1, - "maxValue": 1 + "maxValue": 2200 }, { - "name": "RC5_TRIM", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MIN7", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 5 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", + "shortDesc": "Set the min PWM value for the auxiliary 7 output", + "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", "units": "us", - "default": 1500, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC6_DZ", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_MIN8", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 6 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 10, + "shortDesc": "Set the min PWM value for the auxiliary 8 output", + "longDesc": "This is the minimum PWM pulse the autopilot is allowed to output. When set to -1 the value for PWM_AUX_MIN will be used", + "units": "us", + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "minValue": -1, + "maxValue": 2200 }, { - "name": "RC6_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_RATE", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 6 maximum", - "longDesc": "Maximum value for this channel.", - "units": "us", - "default": 2000, + "shortDesc": "Set the PWM output frequency for the auxiliary outputs", + "longDesc": "Set to 400 for industry default or 1000 for high frequency ESCs. Set to 0 for Oneshot125.", + "units": "Hz", + "default": 50, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 1500, - "maxValue": 2200 + "minValue": -1, + "maxValue": 2000 }, { - "name": "RC6_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_REV1", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 6 minimum", - "longDesc": "Minimum value for this channel.", - "units": "us", - "default": 1000, + "shortDesc": "Invert direction of auxiliary output channel 1", + "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", + "default": 0, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC6_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_REV2", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 6 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "Invert direction of auxiliary output channel 2", + "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", + "default": 0, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "PWM_AUX_REV3", + "type": "Int32", + "group": "PWM Outputs", + "category": "Standard", + "shortDesc": "Invert direction of auxiliary output channel 3", + "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", + "default": 0, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC6_TRIM", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_REV4", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 6 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", - "units": "us", - "default": 1500, + "shortDesc": "Invert direction of auxiliary output channel 4", + "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", + "default": 0, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC7_DZ", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_REV5", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 7 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 10, + "shortDesc": "Invert direction of auxiliary output channel 5", + "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", + "default": 0, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC7_MAX", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_REV6", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 7 maximum", - "longDesc": "Maximum value for this channel.", - "units": "us", - "default": 2000, + "shortDesc": "Invert direction of auxiliary output channel 6", + "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", + "default": 0, "decimalPlaces": 3, - "minValue": 1500, - "maxValue": 2200 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC7_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_REV7", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 7 minimum", - "longDesc": "Minimum value for this channel.", - "units": "us", - "default": 1000, + "shortDesc": "Invert direction of auxiliary output channel 7", + "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", + "default": 0, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC7_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_AUX_REV8", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 7 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "Invert direction of auxiliary output channel 8", + "longDesc": "Enable to invert the channel. Warning: Use this parameter when connected to a servo only. For a brushless motor, invert manually two phases to reverse the direction.", + "default": 0, "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "RC7_TRIM", + "name": "PWM_AUX_TRIM1", "type": "Float", - "group": "Radio Calibration", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 7 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", - "units": "us", - "default": 1500, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 2200 + "shortDesc": "Trim value for auxiliary output channel 1", + "longDesc": "Set to normalized offset", + "default": 0, + "decimalPlaces": 2, + "minValue": -0.2, + "maxValue": 0.2 }, { - "name": "RC8_DZ", + "name": "PWM_AUX_TRIM2", "type": "Float", - "group": "Radio Calibration", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 8 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", - "default": 10, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "shortDesc": "Trim value for auxiliary output channel 2", + "longDesc": "Set to normalized offset", + "default": 0, + "decimalPlaces": 2, + "minValue": -0.2, + "maxValue": 0.2 }, { - "name": "RC8_MAX", + "name": "PWM_AUX_TRIM3", "type": "Float", - "group": "Radio Calibration", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 8 maximum", - "longDesc": "Maximum value for this channel.", - "units": "us", - "default": 2000, - "decimalPlaces": 3, - "minValue": 1500, - "maxValue": 2200 + "shortDesc": "Trim value for auxiliary output channel 3", + "longDesc": "Set to normalized offset", + "default": 0, + "decimalPlaces": 2, + "minValue": -0.2, + "maxValue": 0.2 }, { - "name": "RC8_MIN", + "name": "PWM_AUX_TRIM4", "type": "Float", - "group": "Radio Calibration", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 8 minimum", - "longDesc": "Minimum value for this channel.", - "units": "us", - "default": 1000, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "shortDesc": "Trim value for auxiliary output channel 4", + "longDesc": "Set to normalized offset", + "default": 0, + "decimalPlaces": 2, + "minValue": -0.2, + "maxValue": 0.2 }, { - "name": "RC8_REV", + "name": "PWM_AUX_TRIM5", "type": "Float", - "group": "Radio Calibration", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 8 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], - "decimalPlaces": 3, - "minValue": -1, - "maxValue": 1 + "shortDesc": "Trim value for auxiliary output channel 5", + "longDesc": "Set to normalized offset", + "default": 0, + "decimalPlaces": 2, + "minValue": -0.2, + "maxValue": 0.2 }, { - "name": "RC8_TRIM", + "name": "PWM_AUX_TRIM6", "type": "Float", - "group": "Radio Calibration", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 8 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", - "units": "us", - "default": 1500, - "decimalPlaces": 3, - "minValue": 800, - "maxValue": 2200 + "shortDesc": "Trim value for auxiliary output channel 6", + "longDesc": "Set to normalized offset", + "default": 0, + "decimalPlaces": 2, + "minValue": -0.2, + "maxValue": 0.2 }, { - "name": "RC9_DZ", + "name": "PWM_AUX_TRIM7", "type": "Float", - "group": "Radio Calibration", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 9 dead zone", - "longDesc": "The +- range of this value around the trim value will be considered as zero.", + "shortDesc": "Trim value for auxiliary output channel 7", + "longDesc": "Set to normalized offset", "default": 0, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 100 + "decimalPlaces": 2, + "minValue": -0.2, + "maxValue": 0.2 }, { - "name": "RC9_MAX", + "name": "PWM_AUX_TRIM8", "type": "Float", - "group": "Radio Calibration", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 9 maximum", - "longDesc": "Maximum value for this channel.", - "units": "us", - "default": 2000, - "decimalPlaces": 3, - "minValue": 1500, - "maxValue": 2200 + "shortDesc": "Trim value for auxiliary output channel 8", + "longDesc": "Set to normalized offset", + "default": 0, + "decimalPlaces": 2, + "minValue": -0.2, + "maxValue": 0.2 }, { - "name": "RC9_MIN", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_DISARMED", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 9 minimum", - "longDesc": "Minimum value for this channel.", + "shortDesc": "Set the disarmed PWM for the main outputs", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. The main use of this parameter is to silence ESCs when they are disarmed.", "units": "us", - "default": 1000, + "default": 900, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, - "maxValue": 1500 + "minValue": 0, + "maxValue": 2200 }, { - "name": "RC9_REV", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_MAIN_DIS1", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 9 reverse", - "longDesc": "Set to -1 to reverse channel.", - "default": 1, - "values": [ - { - "value": -1, - "description": "Reverse" - }, - { - "value": 1, - "description": "Normal" - } - ], + "shortDesc": "Set the disarmed PWM for the main 1 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_DISARMED will be used", + "units": "us", + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, "minValue": -1, - "maxValue": 1 + "maxValue": 2200 }, { - "name": "RC9_TRIM", - "type": "Float", - "group": "Radio Calibration", + "name": "PWM_MAIN_DIS2", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "RC channel 9 trim", - "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", + "shortDesc": "Set the disarmed PWM for the main 2 output", + "longDesc": "This is the PWM pulse the autopilot is outputting if not armed. When set to -1 the value for PWM_DISARMED will be used", "units": "us", - "default": 1500, + "default": -1, + "rebootRequired": true, "decimalPlaces": 3, - "minValue": 800, + "minValue": -1, "maxValue": 2200 }, { - "name": "RC_ACRO_TH", - "type": "Float", - "group": "Radio Switches", + "name": "PWM_MAIN_DIS3", + "type": "Int32", + "group": "PWM Outputs", "category": "Standard", - "shortDesc": "Threshold for selecting acro mode", - "longDesc": "0-1 indicate where in the full channel range the threshold sits 0 : min 1 : max sign indicates polarity of comparison positive : true when channel>th negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channel_DZ", + "type": "Float", + "group": "Radio Calibration", + "category": "Standard", + "shortDesc": "RC channel 10 dead zone", + "longDesc": "The +- range of this value around the trim value will be considered as zero.", + "default": 0, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 100 + }, + { + "name": "RC<#>_MAX", + "type": "Float", + "group": "Radio Calibration", + "category": "Standard", + "shortDesc": "RC channel 10 maximum", + "longDesc": "Maximum value for this channel.", + "units": "us", + "default": 2000, + "decimalPlaces": 3, + "minValue": 1500, + "maxValue": 2200 + }, + { + "name": "RC<#>_MIN", + "type": "Float", + "group": "Radio Calibration", + "category": "Standard", + "shortDesc": "RC channel 10 minimum", + "longDesc": "Minimum value for this channel.", + "units": "us", + "default": 1000, + "decimalPlaces": 3, + "minValue": 800, + "maxValue": 1500 + }, + { + "name": "RC<#>_REV", + "type": "Float", + "group": "Radio Calibration", + "category": "Standard", + "shortDesc": "RC channel 10 reverse", + "longDesc": "Set to -1 to reverse channel.", + "default": 1, + "values": [ { - "value": 17, - "description": "Channel 17" + "value": -1, + "description": "Reverse" }, { - "value": 18, - "description": "Channel 18" + "value": 1, + "description": "Normal" } ], "decimalPlaces": 3, + "minValue": -1, + "maxValue": 1 + }, + { + "name": "RC<#>_TRIM", + "type": "Float", + "group": "Radio Calibration", + "category": "Standard", + "shortDesc": "RC channel 10 trim", + "longDesc": "Mid point value (has to be set to the same as min for throttle channel).", + "units": "us", + "default": 1500, + "decimalPlaces": 3, + "minValue": 800, + "maxValue": 2200 + }, + { + "name": "RC_ACRO_TH", + "type": "Float", + "group": "Radio Switches", + "category": "Standard", + "shortDesc": "Threshold for selecting acro mode", + "longDesc": "0-1 indicate where in the full channel range the threshold sits 0 : min 1 : max sign indicates polarity of comparison positive : true when channel>th negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channel 0", - "default": 1000, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 2000 - }, - { - "name": "RC_RSSI_PWM_MIN", + "name": "RC_MAP_MODE_SW", "type": "Int32", - "group": "Radio Calibration", - "category": "Standard", - "shortDesc": "Min input value for RSSI reading", - "longDesc": "Only used if RC_RSSI_PWM_CHAN > 0", - "default": 2000, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 2000 - }, - { - "name": "RC_STAB_TH", - "type": "Float", - "group": "Radio Switches", - "category": "Standard", - "shortDesc": "Threshold for the stabilize switch", - "longDesc": "0-1 indicate where in the full channel range the threshold sits 0 : min 1 : max sign indicates polarity of comparison positive : true when channel>th negative : true when channelth negative : true when channel 0", - "units": "m", - "default": 5, - "increment": 1, - "decimalPlaces": 1, - "minValue": 0, - "maxValue": 100 - }, - { - "name": "RWTO_PSP", - "type": "Float", - "group": "Runway Takeoff", - "category": "Standard", - "shortDesc": "Pitch setpoint during taxi / before takeoff airspeed is reached. A taildragger with stearable wheel might need to pitch up a little to keep it's wheel on the ground before airspeed to takeoff is reached", - "units": "deg", - "default": 0, - "increment": 0.5, - "decimalPlaces": 1, - "minValue": -10, - "maxValue": 20 - }, - { - "name": "RWTO_RAMP_TIME", - "type": "Float", - "group": "Runway Takeoff", - "category": "Standard", - "shortDesc": "Throttle ramp up time for runway takeoff", - "units": "s", - "default": 2, - "increment": 0.1, - "decimalPlaces": 2, - "minValue": 1, - "maxValue": 15 - }, - { - "name": "RWTO_TKOFF", - "type": "Int32", - "group": "Runway Takeoff", - "category": "Standard", - "shortDesc": "Runway takeoff with landing gear", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SDLOG_BOOT_BAT", - "type": "Int32", - "group": "SD Logging", - "category": "Standard", - "shortDesc": "Battery-only Logging", - "longDesc": "When enabled, logging will not start from boot if battery power is not detected (e.g. powered via USB on a test bench). This prevents extraneous flight logs from being created during bench testing. Note that this only applies to log-from-boot modes. This has no effect on arm-based modes.", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SDLOG_DIRS_MAX", - "type": "Int32", - "group": "SD Logging", - "category": "Standard", - "shortDesc": "Maximum number of log directories to keep", - "longDesc": "If there are more log directories than this value, the system will delete the oldest directories during startup. In addition, the system will delete old logs if there is not enough free space left. The minimum amount is 300 MB. If this is set to 0, old directories will only be removed if the free space falls below the minimum. Note: this does not apply to mission log files.", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1000 - }, - { - "name": "SDLOG_MISSION", - "type": "Int32", - "group": "SD Logging", - "category": "Standard", - "shortDesc": "Mission Log", - "longDesc": "If enabled, a small additional \"mission\" log file will be written to the SD card. The log contains just those messages that are useful for tasks like generating flight statistics and geotagging. The different modes can be used to further reduce the logged data (and thus the log file size). For example, choose geotagging mode to only log data required for geotagging. Note that the normal/full log is still created, and contains all the data in the mission log (and more).", - "default": 0, - "values": [ - { - "value": 0, - "description": "Disabled" + "value": 10, + "description": "Channel 10" }, { - "value": 1, - "description": "All mission messages" + "value": 11, + "description": "Channel 11" }, { - "value": 2, - "description": "Geotagging messages" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SDLOG_MODE", - "type": "Int32", - "group": "SD Logging", - "category": "Standard", - "shortDesc": "Logging Mode", - "longDesc": "Determines when to start and stop logging. By default, logging is started when arming the system, and stopped when disarming.", - "default": 0, - "values": [ + "value": 12, + "description": "Channel 12" + }, { - "value": -1, - "description": "disabled" + "value": 13, + "description": "Channel 13" + }, + { + "value": 14, + "description": "Channel 14" }, { - "value": 0, - "description": "when armed until disarm (default)" + "value": 15, + "description": "Channel 15" }, { - "value": 1, - "description": "from boot until disarm" + "value": 16, + "description": "Channel 16" }, { - "value": 2, - "description": "from boot until shutdown" + "value": 17, + "description": "Channel 17" }, { - "value": 3, - "description": "depending on AUX1 RC channel" + "value": 18, + "description": "Channel 18" } ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SDLOG_PROFILE", - "type": "Int32", - "group": "SD Logging", - "category": "Standard", - "shortDesc": "Logging topic profile (integer bitmask)", - "longDesc": "This integer bitmask controls the set and rates of logged topics. The default allows for general log analysis and estimator replay, while keeping the log file size reasonably small. Enabling multiple sets leads to higher bandwidth requirements and larger log files. Set bits true to enable: 0 : Default set (used for general log analysis) 1 : Full rate estimator (EKF2) replay topics 2 : Topics for thermal calibration (high rate raw IMU and Baro sensor data) 3 : Topics for system identification (high rate actuator control and IMU data) 4 : Full rates for analysis of fast maneuvers (RC, attitude, rates and actuators) 5 : Debugging topics (debug_*.msg topics, for custom code) 6 : Topics for sensor comparison (low rate raw IMU, Baro and Magnetomer data) 7 : Topics for computer vision and collision avoidance 8 : Raw FIFO high-rate IMU (Gyro) 9 : Raw FIFO high-rate IMU (Accel)", - "default": 3, - "rebootRequired": true, "decimalPlaces": 3, "minValue": 0, - "maxValue": 1023 - }, - { - "name": "SDLOG_UTC_OFFSET", - "type": "Int32", - "group": "SD Logging", - "category": "Standard", - "shortDesc": "UTC offset (unit: min)", - "longDesc": "the difference in hours and minutes from Coordinated Universal Time (UTC) for a your place and date. for example, In case of South Korea(UTC+09:00), UTC offset is 540 min (9*60) refer to https://en.wikipedia.org/wiki/List_of_UTC_time_offsets", - "units": "min", - "default": 0, - "decimalPlaces": 3, - "minValue": -1000, - "maxValue": 1000 - }, - { - "name": "SDLOG_UUID", - "type": "Int32", - "group": "SD Logging", - "category": "Standard", - "shortDesc": "Log UUID", - "longDesc": "If set to 1, add an ID to the log, which uniquely identifies the vehicle", - "default": 1, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_BARO_QNH", - "type": "Float", - "group": "Sensors", - "category": "Standard", - "shortDesc": "QNH for barometer", - "units": "hPa", - "default": 1013.25, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 500, - "maxValue": 1500 + "maxValue": 18 }, { - "name": "SENS_BOARD_ROT", + "name": "RC_MAP_PARAM1", "type": "Int32", - "group": "Sensors", + "group": "Radio Calibration", "category": "Standard", - "shortDesc": "Board rotation", - "longDesc": "This parameter defines the rotation of the FMU board relative to the platform.", + "shortDesc": "PARAM1 tuning channel", + "longDesc": "Can be used for parameter tuning with the RC. This one is further referenced as the 1st parameter channel. Set to 0 to deactivate *", "default": 0, "values": [ { "value": 0, - "description": "No rotation" + "description": "Unassigned" }, { "value": 1, - "description": "Yaw 45°" + "description": "Channel 1" }, { "value": 2, - "description": "Yaw 90°" + "description": "Channel 2" }, { "value": 3, - "description": "Yaw 135°" + "description": "Channel 3" }, { "value": 4, - "description": "Yaw 180°" + "description": "Channel 4" }, { "value": 5, - "description": "Yaw 225°" + "description": "Channel 5" }, { "value": 6, - "description": "Yaw 270°" + "description": "Channel 6" }, { "value": 7, - "description": "Yaw 315°" + "description": "Channel 7" }, { "value": 8, - "description": "Roll 180°" + "description": "Channel 8" }, { "value": 9, - "description": "Roll 180°, Yaw 45°" + "description": "Channel 9" }, { "value": 10, - "description": "Roll 180°, Yaw 90°" + "description": "Channel 10" }, { "value": 11, - "description": "Roll 180°, Yaw 135°" + "description": "Channel 11" }, { "value": 12, - "description": "Pitch 180°" + "description": "Channel 12" }, { "value": 13, - "description": "Roll 180°, Yaw 225°" + "description": "Channel 13" }, { "value": 14, - "description": "Roll 180°, Yaw 270°" + "description": "Channel 14" }, { "value": 15, - "description": "Roll 180°, Yaw 315°" + "description": "Channel 15" }, { "value": 16, - "description": "Roll 90°" + "description": "Channel 16" }, { "value": 17, - "description": "Roll 90°, Yaw 45°" + "description": "Channel 17" }, { "value": 18, - "description": "Roll 90°, Yaw 90°" + "description": "Channel 18" + } + ], + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 18 + }, + { + "name": "RC_MAP_PARAM2", + "type": "Int32", + "group": "Radio Calibration", + "category": "Standard", + "shortDesc": "PARAM2 tuning channel", + "longDesc": "Can be used for parameter tuning with the RC. This one is further referenced as the 2nd parameter channel. Set to 0 to deactivate *", + "default": 0, + "values": [ + { + "value": 0, + "description": "Unassigned" }, { - "value": 19, - "description": "Roll 90°, Yaw 135°" + "value": 1, + "description": "Channel 1" }, { - "value": 20, - "description": "Roll 270°" + "value": 2, + "description": "Channel 2" }, { - "value": 21, - "description": "Roll 270°, Yaw 45°" + "value": 3, + "description": "Channel 3" }, { - "value": 22, - "description": "Roll 270°, Yaw 90°" + "value": 4, + "description": "Channel 4" }, { - "value": 23, - "description": "Roll 270°, Yaw 135°" + "value": 5, + "description": "Channel 5" }, { - "value": 24, - "description": "Pitch 90°" + "value": 6, + "description": "Channel 6" }, { - "value": 25, - "description": "Pitch 270°" + "value": 7, + "description": "Channel 7" }, { - "value": 26, - "description": "Roll 270°, Yaw 270°" + "value": 8, + "description": "Channel 8" }, { - "value": 27, - "description": "Roll 180°, Pitch 270°" + "value": 9, + "description": "Channel 9" }, { - "value": 28, - "description": "Pitch 90°, Yaw 180" + "value": 10, + "description": "Channel 10" }, { - "value": 29, - "description": "Pitch 90°, Roll 90°" + "value": 11, + "description": "Channel 11" }, { - "value": 30, - "description": "Yaw 293°, Pitch 68°, Roll 90° (Solo)" + "value": 12, + "description": "Channel 12" }, { - "value": 31, - "description": "Pitch 90°, Roll 270°" + "value": 13, + "description": "Channel 13" }, { - "value": 32, - "description": "Pitch 9°, Yaw 180°" + "value": 14, + "description": "Channel 14" }, { - "value": 33, - "description": "Pitch 45°" + "value": 15, + "description": "Channel 15" }, { - "value": 34, - "description": "Pitch 315°" + "value": 16, + "description": "Channel 16" }, { - "value": 35, - "description": "Roll 90°, Yaw 270°" + "value": 17, + "description": "Channel 17" + }, + { + "value": 18, + "description": "Channel 18" } ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_BOARD_X_OFF", - "type": "Float", - "group": "Sensors", - "category": "Standard", - "shortDesc": "Board rotation X (Roll) offset", - "longDesc": "This parameter defines a rotational offset in degrees around the X (Roll) axis It allows the user to fine tune the board offset in the event of misalignment.", - "units": "deg", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "SENS_BOARD_Y_OFF", - "type": "Float", - "group": "Sensors", - "category": "Standard", - "shortDesc": "Board rotation Y (Pitch) offset", - "longDesc": "This parameter defines a rotational offset in degrees around the Y (Pitch) axis. It allows the user to fine tune the board offset in the event of misalignment.", - "units": "deg", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "SENS_BOARD_Z_OFF", - "type": "Float", - "group": "Sensors", - "category": "Standard", - "shortDesc": "Board rotation Z (YAW) offset", - "longDesc": "This parameter defines a rotational offset in degrees around the Z (Yaw) axis. It allows the user to fine tune the board offset in the event of misalignment.", - "units": "deg", - "default": 0, "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 + "minValue": 0, + "maxValue": 18 }, { - "name": "SENS_CM8JL65_CFG", + "name": "RC_MAP_PARAM3", "type": "Int32", - "group": "Sensors", + "group": "Radio Calibration", "category": "Standard", - "shortDesc": "Serial Configuration for Lanbao PSK-CM8JL65-CC5", - "longDesc": "Configure on which serial port to run Lanbao PSK-CM8JL65-CC5.", + "shortDesc": "PARAM3 tuning channel", + "longDesc": "Can be used for parameter tuning with the RC. This one is further referenced as the 3th parameter channel. Set to 0 to deactivate *", "default": 0, "values": [ { "value": 0, - "description": "Disabled" + "description": "Unassigned" }, { - "value": 6, - "description": "UART 6" + "value": 1, + "description": "Channel 1" }, { - "value": 101, - "description": "TELEM 1" + "value": 2, + "description": "Channel 2" }, { - "value": 102, - "description": "TELEM 2" + "value": 3, + "description": "Channel 3" }, { - "value": 103, - "description": "TELEM 3" + "value": 4, + "description": "Channel 4" }, { - "value": 104, - "description": "TELEM/SERIAL 4" + "value": 5, + "description": "Channel 5" }, { - "value": 201, - "description": "GPS 1" + "value": 6, + "description": "Channel 6" }, { - "value": 202, - "description": "GPS 2" + "value": 7, + "description": "Channel 7" }, { - "value": 203, - "description": "GPS 3" + "value": 8, + "description": "Channel 8" }, { - "value": 300, - "description": "Radio Controller" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_CM8JL65_R_0", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "Distance Sensor Rotation", - "longDesc": "Distance Sensor Rotation as MAV_SENSOR_ORIENTATION enum", - "default": 25, - "values": [ - { - "value": 0, - "description": "ROTATION_FORWARD_FACING" + "value": 9, + "description": "Channel 9" }, { - "value": 2, - "description": "ROTATION_RIGHT_FACING" + "value": 10, + "description": "Channel 10" }, { - "value": 6, - "description": "ROTATION_LEFT_FACING" + "value": 11, + "description": "Channel 11" }, { "value": 12, - "description": "ROTATION_BACKWARD_FACING" + "description": "Channel 12" }, { - "value": 24, - "description": "ROTATION_UPWARD_FACING" + "value": 13, + "description": "Channel 13" }, { - "value": 25, - "description": "ROTATION_DOWNWARD_FACING" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_DPRES_ANSC", - "type": "Float", - "group": "Sensor Calibration", - "category": "Standard", - "shortDesc": "Differential pressure sensor analog scaling", - "longDesc": "Pick the appropriate scaling from the datasheet. this number defines the (linear) conversion from voltage to Pascal (pa). For the MPXV7002DP this is 1000. NOTE: If the sensor always registers zero, try switching the static and dynamic tubes.", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "SENS_DPRES_OFF", - "type": "Float", - "group": "Sensor Calibration", - "category": "System", - "shortDesc": "Differential pressure sensor offset", - "longDesc": "The offset (zero-reading) in Pascal", - "default": 0, - "decimalPlaces": 3, - "minValue": -3.40282e+38, - "maxValue": 3.40282e+38 - }, - { - "name": "SENS_EN_BATT", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "SMBUS Smart battery driver (BQ40Z50)", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_EN_LL40LS", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "Lidar-Lite (LL40LS)", - "default": 0, - "values": [ + "value": 14, + "description": "Channel 14" + }, { - "value": 0, - "description": "Disabled" + "value": 15, + "description": "Channel 15" }, { - "value": 1, - "description": "PWM" + "value": 16, + "description": "Channel 16" }, { - "value": 2, - "description": "I2C" + "value": 17, + "description": "Channel 17" + }, + { + "value": 18, + "description": "Channel 18" } ], - "rebootRequired": true, "decimalPlaces": 3, "minValue": 0, - "maxValue": 2 - }, - { - "name": "SENS_EN_MB12XX", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "Maxbotix Sonar (mb12xx)", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "maxValue": 18 }, { - "name": "SENS_EN_MPDT", + "name": "RC_MAP_PITCH", "type": "Int32", - "group": "Sensors", + "group": "Radio Calibration", "category": "Standard", - "shortDesc": "Enable Mappydot rangefinder (i2c)", + "shortDesc": "Pitch control channel mapping", + "longDesc": "The channel index (starting from 1 for channel 1) indicates which channel should be used for reading pitch inputs from. A value of zero indicates the switch is not assigned.", "default": 0, "values": [ { "value": 0, - "description": "Disabled" + "description": "Unassigned" }, { "value": 1, - "description": "Autodetect" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "SENS_EN_PAW3902", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "PAW3902 Optical Flow", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_EN_PGA460", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "PGA460 Ultrasonic driver (PGA460)", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_EN_PMW3901", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "PMW3901 Optical Flow", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_EN_PX4FLOW", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "PX4 Flow Optical Flow", - "default": 0, - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_EN_SF0X", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "Lightware Laser Rangefinder hardware model", - "default": 1, - "values": [ + "description": "Channel 1" + }, + { + "value": 2, + "description": "Channel 2" + }, + { + "value": 3, + "description": "Channel 3" + }, + { + "value": 4, + "description": "Channel 4" + }, + { + "value": 5, + "description": "Channel 5" + }, + { + "value": 6, + "description": "Channel 6" + }, { - "value": 1, - "description": "SF02" + "value": 7, + "description": "Channel 7" }, { - "value": 2, - "description": "SF10/a" + "value": 8, + "description": "Channel 8" }, { - "value": 3, - "description": "SF10/b" + "value": 9, + "description": "Channel 9" }, { - "value": 4, - "description": "SF10/c" + "value": 10, + "description": "Channel 10" }, { - "value": 5, - "description": "SF11/c" + "value": 11, + "description": "Channel 11" + }, + { + "value": 12, + "description": "Channel 12" + }, + { + "value": 13, + "description": "Channel 13" + }, + { + "value": 14, + "description": "Channel 14" + }, + { + "value": 15, + "description": "Channel 15" + }, + { + "value": 16, + "description": "Channel 16" + }, + { + "value": 17, + "description": "Channel 17" + }, + { + "value": 18, + "description": "Channel 18" } ], - "rebootRequired": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 18 }, { - "name": "SENS_EN_SF1XX", + "name": "RC_MAP_POSCTL_SW", "type": "Int32", - "group": "Sensors", + "group": "Radio Switches", "category": "Standard", - "shortDesc": "Lightware SF1xx/SF20/LW20 laser rangefinder (i2c)", + "shortDesc": "Position Control switch channel", "default": 0, "values": [ { "value": 0, - "description": "Disabled" + "description": "Unassigned" }, { "value": 1, - "description": "SF10/a" + "description": "Channel 1" }, { "value": 2, - "description": "SF10/b" + "description": "Channel 2" }, { "value": 3, - "description": "SF10/c" + "description": "Channel 3" }, { "value": 4, - "description": "SF11/c" + "description": "Channel 4" }, { "value": 5, - "description": "SF/LW20/b" + "description": "Channel 5" }, { "value": 6, - "description": "SF/LW20/c" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 6 - }, - { - "name": "SENS_EN_THERMAL", - "type": "Int32", - "group": "Sensors", - "category": "System", - "shortDesc": "Thermal control of sensor temperature", - "default": -1, - "values": [ + "description": "Channel 6" + }, { - "value": -1, - "description": "Thermal control unavailable" + "value": 7, + "description": "Channel 7" }, { - "value": 0, - "description": "Thermal control off" + "value": 8, + "description": "Channel 8" }, { - "value": 1, - "description": "Thermal control enabled" + "value": 9, + "description": "Channel 9" + }, + { + "value": 10, + "description": "Channel 10" + }, + { + "value": 11, + "description": "Channel 11" + }, + { + "value": 12, + "description": "Channel 12" + }, + { + "value": 13, + "description": "Channel 13" + }, + { + "value": 14, + "description": "Channel 14" + }, + { + "value": 15, + "description": "Channel 15" + }, + { + "value": 16, + "description": "Channel 16" + }, + { + "value": 17, + "description": "Channel 17" + }, + { + "value": 18, + "description": "Channel 18" } ], "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 18 }, { - "name": "SENS_EN_TRANGER", + "name": "RC_MAP_RATT_SW", "type": "Int32", - "group": "Sensors", + "group": "Radio Switches", "category": "Standard", - "shortDesc": "TeraRanger Rangefinder (i2c)", + "shortDesc": "Rattitude switch channel", "default": 0, "values": [ { "value": 0, - "description": "Disabled" + "description": "Unassigned" }, { "value": 1, - "description": "Autodetect" + "description": "Channel 1" }, { "value": 2, - "description": "TROne" + "description": "Channel 2" }, { "value": 3, - "description": "TREvo60m" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 3 - }, - { - "name": "SENS_EXT_I2C_PRB", - "type": "Int32", - "group": "Sensors", - "category": "System", - "shortDesc": "External I2C probe", - "longDesc": "Probe for optional external I2C devices.", - "default": 1, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_FLOW_MAXHGT", - "type": "Float", - "group": "Sensor Calibration", - "category": "Standard", - "shortDesc": "Maximum height above ground when reliant on optical flow", - "longDesc": "This parameter defines the maximum distance from ground at which the optical flow sensor operates reliably. The height setpoint will be limited to be no greater than this value when the navigation system is completely reliant on optical flow data and the height above ground estimate is valid. The sensor may be usable above this height, but accuracy will progressively degrade.", - "units": "m", - "default": 3, - "increment": 0.1, - "decimalPlaces": 1, - "minValue": 1, - "maxValue": 25 - }, - { - "name": "SENS_FLOW_MAXR", - "type": "Float", - "group": "Sensor Calibration", - "category": "Standard", - "shortDesc": "Magnitude of maximum angular flow rate reliably measurable by the optical flow sensor. Optical flow data will not fused by the estimators if the magnitude of the flow rate exceeds this value and control loops will be instructed to limit ground speed such that the flow rate produced by movement over ground is less than 50% of this value", - "units": "rad/s", - "default": 2.5, - "decimalPlaces": 2, - "minValue": 1, - "maxValue": 3.40282e+38 - }, - { - "name": "SENS_FLOW_MINHGT", - "type": "Float", - "group": "Sensor Calibration", - "category": "Standard", - "shortDesc": "Minimum height above ground when reliant on optical flow", - "longDesc": "This parameter defines the minimum distance from ground at which the optical flow sensor operates reliably. The sensor may be usable below this height, but accuracy will progressively reduce to loss of focus.", - "units": "m", - "default": 0.7, - "increment": 0.1, - "decimalPlaces": 1, + "description": "Channel 3" + }, + { + "value": 4, + "description": "Channel 4" + }, + { + "value": 5, + "description": "Channel 5" + }, + { + "value": 6, + "description": "Channel 6" + }, + { + "value": 7, + "description": "Channel 7" + }, + { + "value": 8, + "description": "Channel 8" + }, + { + "value": 9, + "description": "Channel 9" + }, + { + "value": 10, + "description": "Channel 10" + }, + { + "value": 11, + "description": "Channel 11" + }, + { + "value": 12, + "description": "Channel 12" + }, + { + "value": 13, + "description": "Channel 13" + }, + { + "value": 14, + "description": "Channel 14" + }, + { + "value": 15, + "description": "Channel 15" + }, + { + "value": 16, + "description": "Channel 16" + }, + { + "value": 17, + "description": "Channel 17" + }, + { + "value": 18, + "description": "Channel 18" + } + ], + "decimalPlaces": 3, "minValue": 0, - "maxValue": 1 + "maxValue": 18 }, { - "name": "SENS_FLOW_ROT", + "name": "RC_MAP_RETURN_SW", "type": "Int32", - "group": "Sensors", + "group": "Radio Switches", "category": "Standard", - "shortDesc": "PX4Flow board rotation", - "longDesc": "This parameter defines the yaw rotation of the PX4FLOW board relative to the vehicle body frame. Zero rotation is defined as X on flow board pointing towards front of vehicle. The recommneded installation default for the PX4FLOW board is with the Y axis forward (270 deg yaw).", - "default": 6, + "shortDesc": "Return switch channel", + "default": 0, "values": [ { "value": 0, - "description": "No rotation" + "description": "Unassigned" }, { "value": 1, - "description": "Yaw 45°" + "description": "Channel 1" }, { "value": 2, - "description": "Yaw 90°" + "description": "Channel 2" }, { "value": 3, - "description": "Yaw 135°" + "description": "Channel 3" }, { "value": 4, - "description": "Yaw 180°" + "description": "Channel 4" }, { "value": 5, - "description": "Yaw 225°" + "description": "Channel 5" }, { "value": 6, - "description": "Yaw 270°" + "description": "Channel 6" }, { "value": 7, - "description": "Yaw 315°" + "description": "Channel 7" + }, + { + "value": 8, + "description": "Channel 8" + }, + { + "value": 9, + "description": "Channel 9" + }, + { + "value": 10, + "description": "Channel 10" + }, + { + "value": 11, + "description": "Channel 11" + }, + { + "value": 12, + "description": "Channel 12" + }, + { + "value": 13, + "description": "Channel 13" + }, + { + "value": 14, + "description": "Channel 14" + }, + { + "value": 15, + "description": "Channel 15" + }, + { + "value": 16, + "description": "Channel 16" + }, + { + "value": 17, + "description": "Channel 17" + }, + { + "value": 18, + "description": "Channel 18" } ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_IMU_TEMP", - "type": "Float", - "group": "Sensors", - "category": "System", - "shortDesc": "Target IMU temperature", - "units": "C", - "default": 55, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 85 - }, - { - "name": "SENS_IMU_TEMP_I", - "type": "Float", - "group": "Sensors", - "category": "System", - "shortDesc": "IMU heater controller integrator gain value", - "units": "microseconds/C", - "default": 0.025, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 1 - }, - { - "name": "SENS_IMU_TEMP_P", - "type": "Float", - "group": "Sensors", - "category": "System", - "shortDesc": "IMU heater controller proportional gain value", - "units": "microseconds/C", - "default": 1, "decimalPlaces": 3, "minValue": 0, - "maxValue": 2 + "maxValue": 18 }, { - "name": "SENS_LEDDAR1_CFG", + "name": "RC_MAP_ROLL", "type": "Int32", - "group": "Sensors", + "group": "Radio Calibration", "category": "Standard", - "shortDesc": "Serial Configuration for LeddarOne Rangefinder", - "longDesc": "Configure on which serial port to run LeddarOne Rangefinder.", + "shortDesc": "Roll control channel mapping", + "longDesc": "The channel index (starting from 1 for channel 1) indicates which channel should be used for reading roll inputs from. A value of zero indicates the switch is not assigned.", "default": 0, "values": [ { "value": 0, - "description": "Disabled" + "description": "Unassigned" + }, + { + "value": 1, + "description": "Channel 1" + }, + { + "value": 2, + "description": "Channel 2" + }, + { + "value": 3, + "description": "Channel 3" + }, + { + "value": 4, + "description": "Channel 4" + }, + { + "value": 5, + "description": "Channel 5" }, { "value": 6, - "description": "UART 6" + "description": "Channel 6" }, { - "value": 101, - "description": "TELEM 1" + "value": 7, + "description": "Channel 7" }, { - "value": 102, - "description": "TELEM 2" + "value": 8, + "description": "Channel 8" }, { - "value": 103, - "description": "TELEM 3" + "value": 9, + "description": "Channel 9" }, { - "value": 104, - "description": "TELEM/SERIAL 4" + "value": 10, + "description": "Channel 10" }, { - "value": 201, - "description": "GPS 1" + "value": 11, + "description": "Channel 11" }, { - "value": 202, - "description": "GPS 2" + "value": 12, + "description": "Channel 12" }, { - "value": 203, - "description": "GPS 3" + "value": 13, + "description": "Channel 13" }, { - "value": 300, - "description": "Radio Controller" + "value": 14, + "description": "Channel 14" + }, + { + "value": 15, + "description": "Channel 15" + }, + { + "value": 16, + "description": "Channel 16" + }, + { + "value": 17, + "description": "Channel 17" + }, + { + "value": 18, + "description": "Channel 18" } ], - "rebootRequired": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 18 }, { - "name": "SENS_MB12_0_ROT", + "name": "RC_MAP_STAB_SW", "type": "Int32", - "group": "Sensors", + "group": "Radio Switches", "category": "Standard", - "shortDesc": "MaxBotix MB12XX Sensor 0 Rotation", - "longDesc": "This parameter defines the rotation of the sensor relative to the platform.", + "shortDesc": "Stabilize switch channel mapping", "default": 0, "values": [ { "value": 0, - "description": "No rotation" + "description": "Unassigned" }, { "value": 1, - "description": "Yaw 45°" + "description": "Channel 1" }, { "value": 2, - "description": "Yaw 90°" + "description": "Channel 2" }, { "value": 3, - "description": "Yaw 135°" + "description": "Channel 3" }, { "value": 4, - "description": "Yaw 180°" + "description": "Channel 4" }, { "value": 5, - "description": "Yaw 225°" + "description": "Channel 5" }, { "value": 6, - "description": "Yaw 270°" + "description": "Channel 6" }, { "value": 7, - "description": "Yaw 315°" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 7 - }, - { - "name": "SENS_MB12_10_ROT", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "MaxBotix MB12XX Sensor 10 Rotation", - "longDesc": "This parameter defines the rotation of the sensor relative to the platform.", - "default": 0, - "values": [ + "description": "Channel 7" + }, + { + "value": 8, + "description": "Channel 8" + }, { - "value": 0, - "description": "No rotation" + "value": 9, + "description": "Channel 9" }, { - "value": 1, - "description": "Yaw 45°" + "value": 10, + "description": "Channel 10" }, { - "value": 2, - "description": "Yaw 90°" + "value": 11, + "description": "Channel 11" }, { - "value": 3, - "description": "Yaw 135°" + "value": 12, + "description": "Channel 12" }, { - "value": 4, - "description": "Yaw 180°" + "value": 13, + "description": "Channel 13" }, { - "value": 5, - "description": "Yaw 225°" + "value": 14, + "description": "Channel 14" }, { - "value": 6, - "description": "Yaw 270°" + "value": 15, + "description": "Channel 15" }, { - "value": 7, - "description": "Yaw 315°" + "value": 16, + "description": "Channel 16" + }, + { + "value": 17, + "description": "Channel 17" + }, + { + "value": 18, + "description": "Channel 18" } ], - "rebootRequired": true, "decimalPlaces": 3, "minValue": 0, - "maxValue": 7 + "maxValue": 18 }, { - "name": "SENS_MB12_11_ROT", + "name": "RC_MAP_THROTTLE", "type": "Int32", - "group": "Sensors", + "group": "Radio Calibration", "category": "Standard", - "shortDesc": "MaxBotix MB12XX Sensor 12 Rotation", - "longDesc": "This parameter defines the rotation of the sensor relative to the platform.", + "shortDesc": "Throttle control channel mapping", + "longDesc": "The channel index (starting from 1 for channel 1) indicates which channel should be used for reading throttle inputs from. A value of zero indicates the switch is not assigned.", "default": 0, "values": [ { "value": 0, - "description": "No rotation" + "description": "Unassigned" }, { "value": 1, - "description": "Yaw 45°" + "description": "Channel 1" }, { "value": 2, - "description": "Yaw 90°" + "description": "Channel 2" }, { "value": 3, - "description": "Yaw 135°" + "description": "Channel 3" }, { "value": 4, - "description": "Yaw 180°" + "description": "Channel 4" }, { "value": 5, - "description": "Yaw 225°" + "description": "Channel 5" }, { "value": 6, - "description": "Yaw 270°" + "description": "Channel 6" }, { "value": 7, - "description": "Yaw 315°" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 7 - }, - { - "name": "SENS_MB12_1_ROT", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "MaxBotix MB12XX Sensor 1 Rotation", - "longDesc": "This parameter defines the rotation of the sensor relative to the platform.", - "default": 0, - "values": [ + "description": "Channel 7" + }, { - "value": 0, - "description": "No rotation" + "value": 8, + "description": "Channel 8" }, { - "value": 1, - "description": "Yaw 45°" + "value": 9, + "description": "Channel 9" }, { - "value": 2, - "description": "Yaw 90°" + "value": 10, + "description": "Channel 10" }, { - "value": 3, - "description": "Yaw 135°" + "value": 11, + "description": "Channel 11" }, { - "value": 4, - "description": "Yaw 180°" + "value": 12, + "description": "Channel 12" }, { - "value": 5, - "description": "Yaw 225°" + "value": 13, + "description": "Channel 13" }, { - "value": 6, - "description": "Yaw 270°" + "value": 14, + "description": "Channel 14" }, { - "value": 7, - "description": "Yaw 315°" + "value": 15, + "description": "Channel 15" + }, + { + "value": 16, + "description": "Channel 16" + }, + { + "value": 17, + "description": "Channel 17" + }, + { + "value": 18, + "description": "Channel 18" } ], - "rebootRequired": true, "decimalPlaces": 3, "minValue": 0, - "maxValue": 7 + "maxValue": 18 }, { - "name": "SENS_MB12_2_ROT", + "name": "RC_MAP_TRANS_SW", "type": "Int32", - "group": "Sensors", + "group": "Radio Switches", "category": "Standard", - "shortDesc": "MaxBotix MB12XX Sensor 2 Rotation", - "longDesc": "This parameter defines the rotation of the sensor relative to the platform.", + "shortDesc": "VTOL transition switch channel mapping", "default": 0, "values": [ { "value": 0, - "description": "No rotation" + "description": "Unassigned" }, { "value": 1, - "description": "Yaw 45°" + "description": "Channel 1" }, { "value": 2, - "description": "Yaw 90°" + "description": "Channel 2" }, { "value": 3, - "description": "Yaw 135°" + "description": "Channel 3" }, { "value": 4, - "description": "Yaw 180°" + "description": "Channel 4" }, { "value": 5, - "description": "Yaw 225°" + "description": "Channel 5" }, { "value": 6, - "description": "Yaw 270°" + "description": "Channel 6" }, { "value": 7, - "description": "Yaw 315°" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 7 - }, - { - "name": "SENS_MB12_3_ROT", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "MaxBotix MB12XX Sensor 3 Rotation", - "longDesc": "This parameter defines the rotation of the sensor relative to the platform.", - "default": 0, - "values": [ + "description": "Channel 7" + }, { - "value": 0, - "description": "No rotation" + "value": 8, + "description": "Channel 8" }, { - "value": 1, - "description": "Yaw 45°" + "value": 9, + "description": "Channel 9" }, { - "value": 2, - "description": "Yaw 90°" + "value": 10, + "description": "Channel 10" }, { - "value": 3, - "description": "Yaw 135°" + "value": 11, + "description": "Channel 11" }, { - "value": 4, - "description": "Yaw 180°" + "value": 12, + "description": "Channel 12" }, { - "value": 5, - "description": "Yaw 225°" + "value": 13, + "description": "Channel 13" }, { - "value": 6, - "description": "Yaw 270°" + "value": 14, + "description": "Channel 14" }, { - "value": 7, - "description": "Yaw 315°" + "value": 15, + "description": "Channel 15" + }, + { + "value": 16, + "description": "Channel 16" + }, + { + "value": 17, + "description": "Channel 17" + }, + { + "value": 18, + "description": "Channel 18" } ], - "rebootRequired": true, "decimalPlaces": 3, "minValue": 0, - "maxValue": 7 + "maxValue": 18 }, { - "name": "SENS_MB12_4_ROT", + "name": "RC_MAP_YAW", "type": "Int32", - "group": "Sensors", + "group": "Radio Calibration", "category": "Standard", - "shortDesc": "MaxBotix MB12XX Sensor 4 Rotation", - "longDesc": "This parameter defines the rotation of the sensor relative to the platform.", + "shortDesc": "Yaw control channel mapping", + "longDesc": "The channel index (starting from 1 for channel 1) indicates which channel should be used for reading yaw inputs from. A value of zero indicates the switch is not assigned.", "default": 0, "values": [ { "value": 0, - "description": "No rotation" + "description": "Unassigned" }, { "value": 1, - "description": "Yaw 45°" + "description": "Channel 1" }, { "value": 2, - "description": "Yaw 90°" + "description": "Channel 2" }, { "value": 3, - "description": "Yaw 135°" + "description": "Channel 3" }, { "value": 4, - "description": "Yaw 180°" + "description": "Channel 4" }, { "value": 5, - "description": "Yaw 225°" + "description": "Channel 5" }, { "value": 6, - "description": "Yaw 270°" + "description": "Channel 6" }, { "value": 7, - "description": "Yaw 315°" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 7 - }, - { - "name": "SENS_MB12_5_ROT", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "MaxBotix MB12XX Sensor 5 Rotation", - "longDesc": "This parameter defines the rotation of the sensor relative to the platform.", - "default": 0, - "values": [ + "description": "Channel 7" + }, + { + "value": 8, + "description": "Channel 8" + }, + { + "value": 9, + "description": "Channel 9" + }, + { + "value": 10, + "description": "Channel 10" + }, { - "value": 0, - "description": "No rotation" + "value": 11, + "description": "Channel 11" }, { - "value": 1, - "description": "Yaw 45°" + "value": 12, + "description": "Channel 12" }, { - "value": 2, - "description": "Yaw 90°" + "value": 13, + "description": "Channel 13" }, { - "value": 3, - "description": "Yaw 135°" + "value": 14, + "description": "Channel 14" }, { - "value": 4, - "description": "Yaw 180°" + "value": 15, + "description": "Channel 15" }, { - "value": 5, - "description": "Yaw 225°" + "value": 16, + "description": "Channel 16" }, { - "value": 6, - "description": "Yaw 270°" + "value": 17, + "description": "Channel 17" }, { - "value": 7, - "description": "Yaw 315°" + "value": 18, + "description": "Channel 18" } ], - "rebootRequired": true, "decimalPlaces": 3, "minValue": 0, - "maxValue": 7 + "maxValue": 18 + }, + { + "name": "RC_OFFB_TH", + "type": "Float", + "group": "Radio Switches", + "category": "Standard", + "shortDesc": "Threshold for selecting offboard mode", + "longDesc": "0-1 indicate where in the full channel range the threshold sits 0 : min 1 : max sign indicates polarity of comparison positive : true when channel>th negative : true when channelth negative : true when channelth negative : true when channelth negative : true when channel 0", + "default": 1000, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 2000 + }, + { + "name": "RC_RSSI_PWM_MIN", + "type": "Int32", + "group": "Radio Calibration", + "category": "Standard", + "shortDesc": "Min input value for RSSI reading", + "longDesc": "Only used if RC_RSSI_PWM_CHAN > 0", + "default": 2000, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 2000 + }, + { + "name": "RC_STAB_TH", + "type": "Float", + "group": "Radio Switches", + "category": "Standard", + "shortDesc": "Threshold for the stabilize switch", + "longDesc": "0-1 indicate where in the full channel range the threshold sits 0 : min 1 : max sign indicates polarity of comparison positive : true when channel>th negative : true when channelth negative : true when channel 0", + "units": "m", + "default": 5, + "increment": 1, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 100 + }, + { + "name": "RWTO_PSP", + "type": "Float", + "group": "Runway Takeoff", + "category": "Standard", + "shortDesc": "Pitch setpoint during taxi / before takeoff airspeed is reached. A taildragger with stearable wheel might need to pitch up a little to keep it's wheel on the ground before airspeed to takeoff is reached", + "units": "deg", + "default": 0, + "increment": 0.5, + "decimalPlaces": 1, + "minValue": -10, + "maxValue": 20 + }, + { + "name": "RWTO_RAMP_TIME", + "type": "Float", + "group": "Runway Takeoff", + "category": "Standard", + "shortDesc": "Throttle ramp up time for runway takeoff", + "units": "s", + "default": 2, + "increment": 0.1, + "decimalPlaces": 2, + "minValue": 1, + "maxValue": 15 + }, + { + "name": "RWTO_TKOFF", + "type": "Int32", + "group": "Runway Takeoff", + "category": "Standard", + "shortDesc": "Runway takeoff with landing gear", + "default": 0, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SDLOG_BOOT_BAT", + "type": "Int32", + "group": "SD Logging", + "category": "Standard", + "shortDesc": "Battery-only Logging", + "longDesc": "When enabled, logging will not start from boot if battery power is not detected (e.g. powered via USB on a test bench). This prevents extraneous flight logs from being created during bench testing. Note that this only applies to log-from-boot modes. This has no effect on arm-based modes.", + "default": 0, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SDLOG_DIRS_MAX", + "type": "Int32", + "group": "SD Logging", + "category": "Standard", + "shortDesc": "Maximum number of log directories to keep", + "longDesc": "If there are more log directories than this value, the system will delete the oldest directories during startup. In addition, the system will delete old logs if there is not enough free space left. The minimum amount is 300 MB. If this is set to 0, old directories will only be removed if the free space falls below the minimum. Note: this does not apply to mission log files.", + "default": 0, "rebootRequired": true, "decimalPlaces": 3, "minValue": 0, - "maxValue": 7 + "maxValue": 1000 }, { - "name": "SENS_MPDT4_ROT", + "name": "SDLOG_MISSION", "type": "Int32", - "group": "Sensors", + "group": "SD Logging", "category": "Standard", - "shortDesc": "MappyDot Sensor 4 Rotation", - "longDesc": "This parameter defines the rotation of the Mappydot sensor relative to the platform.", + "shortDesc": "Mission Log", + "longDesc": "If enabled, a small additional \"mission\" log file will be written to the SD card. The log contains just those messages that are useful for tasks like generating flight statistics and geotagging. The different modes can be used to further reduce the logged data (and thus the log file size). For example, choose geotagging mode to only log data required for geotagging. Note that the normal/full log is still created, and contains all the data in the mission log (and more).", "default": 0, "values": [ { "value": 0, - "description": "No rotation" + "description": "Disabled" }, { "value": 1, - "description": "Yaw 45°" - }, - { - "value": 2, - "description": "Yaw 90°" - }, - { - "value": 3, - "description": "Yaw 135°" - }, - { - "value": 4, - "description": "Yaw 180°" - }, - { - "value": 5, - "description": "Yaw 225°" - }, - { - "value": 6, - "description": "Yaw 270°" + "description": "All mission messages" }, { - "value": 7, - "description": "Yaw 315°" + "value": 2, + "description": "Geotagging messages" } ], "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 7 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "SENS_MPDT5_ROT", + "name": "SDLOG_MODE", "type": "Int32", - "group": "Sensors", + "group": "SD Logging", "category": "Standard", - "shortDesc": "MappyDot Sensor 5 Rotation", - "longDesc": "This parameter defines the rotation of the Mappydot sensor relative to the platform.", + "shortDesc": "Logging Mode", + "longDesc": "Determines when to start and stop logging. By default, logging is started when arming the system, and stopped when disarming.", "default": 0, "values": [ + { + "value": -1, + "description": "disabled" + }, { "value": 0, - "description": "No rotation" + "description": "when armed until disarm (default)" }, { "value": 1, - "description": "Yaw 45°" + "description": "from boot until disarm" }, { "value": 2, - "description": "Yaw 90°" + "description": "from boot until shutdown" }, { "value": 3, - "description": "Yaw 135°" - }, - { - "value": 4, - "description": "Yaw 180°" - }, - { - "value": 5, - "description": "Yaw 225°" - }, - { - "value": 6, - "description": "Yaw 270°" - }, - { - "value": 7, - "description": "Yaw 315°" + "description": "depending on AUX1 RC channel" } ], "rebootRequired": true, "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SDLOG_PROFILE", + "type": "Int32", + "group": "SD Logging", + "category": "Standard", + "shortDesc": "Logging topic profile (integer bitmask)", + "longDesc": "This integer bitmask controls the set and rates of logged topics. The default allows for general log analysis and estimator replay, while keeping the log file size reasonably small. Enabling multiple sets leads to higher bandwidth requirements and larger log files. Set bits true to enable: 0 : Default set (used for general log analysis) 1 : Full rate estimator (EKF2) replay topics 2 : Topics for thermal calibration (high rate raw IMU and Baro sensor data) 3 : Topics for system identification (high rate actuator control and IMU data) 4 : Full rates for analysis of fast maneuvers (RC, attitude, rates and actuators) 5 : Debugging topics (debug_*.msg topics, for custom code) 6 : Topics for sensor comparison (low rate raw IMU, Baro and Magnetomer data) 7 : Topics for computer vision and collision avoidance 8 : Raw FIFO high-rate IMU (Gyro) 9 : Raw FIFO high-rate IMU (Accel)", + "default": 3, + "rebootRequired": true, + "decimalPlaces": 3, "minValue": 0, - "maxValue": 7 + "maxValue": 1023 + }, + { + "name": "SDLOG_UTC_OFFSET", + "type": "Int32", + "group": "SD Logging", + "category": "Standard", + "shortDesc": "UTC offset (unit: min)", + "longDesc": "the difference in hours and minutes from Coordinated Universal Time (UTC) for a your place and date. for example, In case of South Korea(UTC+09:00), UTC offset is 540 min (9*60) refer to https://en.wikipedia.org/wiki/List_of_UTC_time_offsets", + "units": "min", + "default": 0, + "decimalPlaces": 3, + "minValue": -1000, + "maxValue": 1000 }, { - "name": "SENS_MPDT6_ROT", + "name": "SDLOG_UUID", "type": "Int32", + "group": "SD Logging", + "category": "Standard", + "shortDesc": "Log UUID", + "longDesc": "If set to 1, add an ID to the log, which uniquely identifies the vehicle", + "default": 1, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SENS_BARO_QNH", + "type": "Float", "group": "Sensors", "category": "Standard", - "shortDesc": "MappyDot Sensor 6 Rotation", - "longDesc": "This parameter defines the rotation of the Mappydot sensor relative to the platform.", + "shortDesc": "QNH for barometer", + "units": "hPa", + "default": 1013.25, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 500, + "maxValue": 1500 + }, + { + "name": "SENS_BOARD_ROT", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Board rotation", + "longDesc": "This parameter defines the rotation of the FMU board relative to the platform.", "default": 0, "values": [ { @@ -19959,161 +15431,171 @@ { "value": 7, "description": "Yaw 315°" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 7 - }, - { - "name": "SENS_MPDT7_ROT", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "MappyDot Sensor 7 Rotation", - "longDesc": "This parameter defines the rotation of the Mappydot sensor relative to the platform.", - "default": 0, - "values": [ + }, { - "value": 0, - "description": "No rotation" + "value": 8, + "description": "Roll 180°" }, { - "value": 1, - "description": "Yaw 45°" + "value": 9, + "description": "Roll 180°, Yaw 45°" }, { - "value": 2, - "description": "Yaw 90°" + "value": 10, + "description": "Roll 180°, Yaw 90°" }, { - "value": 3, - "description": "Yaw 135°" + "value": 11, + "description": "Roll 180°, Yaw 135°" }, { - "value": 4, - "description": "Yaw 180°" + "value": 12, + "description": "Pitch 180°" }, { - "value": 5, - "description": "Yaw 225°" + "value": 13, + "description": "Roll 180°, Yaw 225°" }, { - "value": 6, - "description": "Yaw 270°" + "value": 14, + "description": "Roll 180°, Yaw 270°" }, { - "value": 7, - "description": "Yaw 315°" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 7 - }, - { - "name": "SENS_MPDT8_ROT", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "MappyDot Sensor 8 Rotation", - "longDesc": "This parameter defines the rotation of the Mappydot sensor relative to the platform.", - "default": 0, - "values": [ + "value": 15, + "description": "Roll 180°, Yaw 315°" + }, { - "value": 0, - "description": "No rotation" + "value": 16, + "description": "Roll 90°" }, { - "value": 1, - "description": "Yaw 45°" + "value": 17, + "description": "Roll 90°, Yaw 45°" }, { - "value": 2, - "description": "Yaw 90°" + "value": 18, + "description": "Roll 90°, Yaw 90°" }, { - "value": 3, - "description": "Yaw 135°" + "value": 19, + "description": "Roll 90°, Yaw 135°" }, { - "value": 4, - "description": "Yaw 180°" + "value": 20, + "description": "Roll 270°" }, { - "value": 5, - "description": "Yaw 225°" + "value": 21, + "description": "Roll 270°, Yaw 45°" }, { - "value": 6, - "description": "Yaw 270°" + "value": 22, + "description": "Roll 270°, Yaw 90°" }, { - "value": 7, - "description": "Yaw 315°" - } - ], - "rebootRequired": true, - "decimalPlaces": 3, - "minValue": 0, - "maxValue": 7 - }, - { - "name": "SENS_MPDT9_ROT", - "type": "Int32", - "group": "Sensors", - "category": "Standard", - "shortDesc": "MappyDot Sensor 9 Rotation", - "longDesc": "This parameter defines the rotation of the Mappydot sensor relative to the platform.", - "default": 0, - "values": [ + "value": 23, + "description": "Roll 270°, Yaw 135°" + }, { - "value": 0, - "description": "No rotation" + "value": 24, + "description": "Pitch 90°" }, { - "value": 1, - "description": "Yaw 45°" + "value": 25, + "description": "Pitch 270°" }, { - "value": 2, - "description": "Yaw 90°" + "value": 26, + "description": "Roll 270°, Yaw 270°" }, { - "value": 3, - "description": "Yaw 135°" + "value": 27, + "description": "Roll 180°, Pitch 270°" }, { - "value": 4, - "description": "Yaw 180°" + "value": 28, + "description": "Pitch 90°, Yaw 180" }, { - "value": 5, - "description": "Yaw 225°" + "value": 29, + "description": "Pitch 90°, Roll 90°" }, { - "value": 6, - "description": "Yaw 270°" + "value": 30, + "description": "Yaw 293°, Pitch 68°, Roll 90° (Solo)" }, { - "value": 7, - "description": "Yaw 315°" + "value": 31, + "description": "Pitch 90°, Roll 270°" + }, + { + "value": 32, + "description": "Pitch 9°, Yaw 180°" + }, + { + "value": 33, + "description": "Pitch 45°" + }, + { + "value": 34, + "description": "Pitch 315°" + }, + { + "value": 35, + "description": "Roll 90°, Yaw 270°" } ], "rebootRequired": true, "decimalPlaces": 3, - "minValue": 0, - "maxValue": 7 + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 }, { - "name": "SENS_SF0X_CFG", + "name": "SENS_BOARD_X_OFF", + "type": "Float", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Board rotation X (Roll) offset", + "longDesc": "This parameter defines a rotational offset in degrees around the X (Roll) axis It allows the user to fine tune the board offset in the event of misalignment.", + "units": "deg", + "default": 0, + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 + }, + { + "name": "SENS_BOARD_Y_OFF", + "type": "Float", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Board rotation Y (Pitch) offset", + "longDesc": "This parameter defines a rotational offset in degrees around the Y (Pitch) axis. It allows the user to fine tune the board offset in the event of misalignment.", + "units": "deg", + "default": 0, + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 + }, + { + "name": "SENS_BOARD_Z_OFF", + "type": "Float", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Board rotation Z (YAW) offset", + "longDesc": "This parameter defines a rotational offset in degrees around the Z (Yaw) axis. It allows the user to fine tune the board offset in the event of misalignment.", + "units": "deg", + "default": 0, + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 + }, + { + "name": "SENS_CM8JL65_CFG", "type": "Int32", "group": "Sensors", "category": "Standard", - "shortDesc": "Serial Configuration for Lightware Laser Rangefinder", - "longDesc": "Configure on which serial port to run Lightware Laser Rangefinder.", + "shortDesc": "Serial Configuration for Lanbao PSK-CM8JL65-CC5", + "longDesc": "Configure on which serial port to run Lanbao PSK-CM8JL65-CC5.", "default": 0, "values": [ { @@ -20163,64 +15645,37 @@ "maxValue": 2.14748e+09 }, { - "name": "SENS_TEMP_ID", - "type": "Int32", - "group": "Sensors", - "category": "System", - "shortDesc": "Target IMU device ID to regulate temperature", - "default": 0, - "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 - }, - { - "name": "SENS_TFMINI_CFG", + "name": "SENS_CM8JL65_R_0", "type": "Int32", "group": "Sensors", "category": "Standard", - "shortDesc": "Serial Configuration for Benewake TFmini Rangefinder", - "longDesc": "Configure on which serial port to run Benewake TFmini Rangefinder.", - "default": 0, + "shortDesc": "Distance Sensor Rotation", + "longDesc": "Distance Sensor Rotation as MAV_SENSOR_ORIENTATION enum", + "default": 25, "values": [ { "value": 0, - "description": "Disabled" - }, - { - "value": 6, - "description": "UART 6" - }, - { - "value": 101, - "description": "TELEM 1" - }, - { - "value": 102, - "description": "TELEM 2" - }, - { - "value": 103, - "description": "TELEM 3" + "description": "ROTATION_FORWARD_FACING" }, { - "value": 104, - "description": "TELEM/SERIAL 4" + "value": 2, + "description": "ROTATION_RIGHT_FACING" }, { - "value": 201, - "description": "GPS 1" + "value": 6, + "description": "ROTATION_LEFT_FACING" }, { - "value": 202, - "description": "GPS 2" + "value": 12, + "description": "ROTATION_BACKWARD_FACING" }, { - "value": 203, - "description": "GPS 3" + "value": 24, + "description": "ROTATION_UPWARD_FACING" }, { - "value": 300, - "description": "Radio Controller" + "value": 25, + "description": "ROTATION_DOWNWARD_FACING" } ], "rebootRequired": true, @@ -20229,12 +15684,47 @@ "maxValue": 2.14748e+09 }, { - "name": "SENS_ULAND_CFG", + "name": "SENS_DPRES_ANSC", + "type": "Float", + "group": "Sensor Calibration", + "category": "Standard", + "shortDesc": "Differential pressure sensor analog scaling", + "longDesc": "Pick the appropriate scaling from the datasheet. this number defines the (linear) conversion from voltage to Pascal (pa). For the MPXV7002DP this is 1000. NOTE: If the sensor always registers zero, try switching the static and dynamic tubes.", + "default": 0, + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 + }, + { + "name": "SENS_DPRES_OFF", + "type": "Float", + "group": "Sensor Calibration", + "category": "System", + "shortDesc": "Differential pressure sensor offset", + "longDesc": "The offset (zero-reading) in Pascal", + "default": 0, + "decimalPlaces": 3, + "minValue": -3.40282e+38, + "maxValue": 3.40282e+38 + }, + { + "name": "SENS_EN_BATT", "type": "Int32", "group": "Sensors", "category": "Standard", - "shortDesc": "Serial Configuration for uLanding Radar", - "longDesc": "Configure on which serial port to run uLanding Radar.", + "shortDesc": "SMBUS Smart battery driver (BQ40Z50)", + "default": 0, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SENS_EN_LL40LS", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Lidar-Lite (LL40LS)", "default": 0, "values": [ { @@ -20242,40 +15732,128 @@ "description": "Disabled" }, { - "value": 6, - "description": "UART 6" + "value": 1, + "description": "PWM" }, { - "value": 101, - "description": "TELEM 1" - }, + "value": 2, + "description": "I2C" + } + ], + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 2 + }, + { + "name": "SENS_EN_MB12XX", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Maxbotix Sonar (mb12xx)", + "default": 0, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SENS_EN_MPDT", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Enable Mappydot rangefinder (i2c)", + "default": 0, + "values": [ { - "value": 102, - "description": "TELEM 2" + "value": 0, + "description": "Disabled" }, { - "value": 103, - "description": "TELEM 3" - }, + "value": 1, + "description": "Autodetect" + } + ], + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 1 + }, + { + "name": "SENS_EN_PAW3902", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "PAW3902 Optical Flow", + "default": 0, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SENS_EN_PGA460", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "PGA460 Ultrasonic driver (PGA460)", + "default": 0, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SENS_EN_PMW3901", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "PMW3901 Optical Flow", + "default": 0, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SENS_EN_PX4FLOW", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "PX4 Flow Optical Flow", + "default": 0, + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SENS_EN_SF0X", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Lightware Laser Rangefinder hardware model", + "default": 1, + "values": [ { - "value": 104, - "description": "TELEM/SERIAL 4" + "value": 1, + "description": "SF02" }, { - "value": 201, - "description": "GPS 1" + "value": 2, + "description": "SF10/a" }, { - "value": 202, - "description": "GPS 2" + "value": 3, + "description": "SF10/b" }, { - "value": 203, - "description": "GPS 3" + "value": 4, + "description": "SF10/c" }, { - "value": 300, - "description": "Radio Controller" + "value": 5, + "description": "SF11/c" } ], "rebootRequired": true, @@ -20284,236 +15862,194 @@ "maxValue": 2.14748e+09 }, { - "name": "SER_GPS1_BAUD", + "name": "SENS_EN_SF1XX", "type": "Int32", - "group": "Serial", + "group": "Sensors", "category": "Standard", - "shortDesc": "Baudrate for the GPS 1 Serial Port", - "longDesc": "Configure the Baudrate for the GPS 1 Serial Port. Note: certain drivers such as the GPS can determine the Baudrate automatically.", + "shortDesc": "Lightware SF1xx/SF20/LW20 laser rangefinder (i2c)", "default": 0, "values": [ { "value": 0, - "description": "Auto" - }, - { - "value": 50, - "description": "50 8N1" - }, - { - "value": 75, - "description": "75 8N1" - }, - { - "value": 110, - "description": "110 8N1" - }, - { - "value": 134, - "description": "134 8N1" - }, - { - "value": 150, - "description": "150 8N1" - }, - { - "value": 200, - "description": "200 8N1" - }, - { - "value": 300, - "description": "300 8N1" - }, - { - "value": 600, - "description": "600 8N1" - }, - { - "value": 1200, - "description": "1200 8N1" - }, - { - "value": 1800, - "description": "1800 8N1" - }, - { - "value": 2400, - "description": "2400 8N1" - }, - { - "value": 4800, - "description": "4800 8N1" - }, - { - "value": 9600, - "description": "9600 8N1" - }, - { - "value": 19200, - "description": "19200 8N1" - }, - { - "value": 38400, - "description": "38400 8N1" - }, - { - "value": 57600, - "description": "57600 8N1" + "description": "Disabled" }, { - "value": 115200, - "description": "115200 8N1" + "value": 1, + "description": "SF10/a" }, { - "value": 230400, - "description": "230400 8N1" + "value": 2, + "description": "SF10/b" }, { - "value": 460800, - "description": "460800 8N1" + "value": 3, + "description": "SF10/c" }, { - "value": 500000, - "description": "500000 8N1" + "value": 4, + "description": "SF11/c" }, { - "value": 921600, - "description": "921600 8N1" + "value": 5, + "description": "SF/LW20/b" }, { - "value": 1e+06, - "description": "1000000 8N1" - }, + "value": 6, + "description": "SF/LW20/c" + } + ], + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 6 + }, + { + "name": "SENS_EN_THERMAL", + "type": "Int32", + "group": "Sensors", + "category": "System", + "shortDesc": "Thermal control of sensor temperature", + "default": -1, + "values": [ { - "value": 1.5e+06, - "description": "1500000 8N1" + "value": -1, + "description": "Thermal control unavailable" }, { - "value": 2e+06, - "description": "2000000 8N1" + "value": 0, + "description": "Thermal control off" }, { - "value": 3e+06, - "description": "3000000 8N1" + "value": 1, + "description": "Thermal control enabled" } ], - "rebootRequired": true, "decimalPlaces": 3, "minValue": -2.14748e+09, "maxValue": 2.14748e+09 }, { - "name": "SER_GPS2_BAUD", + "name": "SENS_EN_TRANGER", "type": "Int32", - "group": "Serial", + "group": "Sensors", "category": "Standard", - "shortDesc": "Baudrate for the GPS 2 Serial Port", - "longDesc": "Configure the Baudrate for the GPS 2 Serial Port. Note: certain drivers such as the GPS can determine the Baudrate automatically.", + "shortDesc": "TeraRanger Rangefinder (i2c)", "default": 0, "values": [ { "value": 0, - "description": "Auto" - }, - { - "value": 50, - "description": "50 8N1" - }, - { - "value": 75, - "description": "75 8N1" - }, - { - "value": 110, - "description": "110 8N1" - }, - { - "value": 134, - "description": "134 8N1" - }, - { - "value": 150, - "description": "150 8N1" - }, - { - "value": 200, - "description": "200 8N1" - }, - { - "value": 300, - "description": "300 8N1" - }, - { - "value": 600, - "description": "600 8N1" - }, - { - "value": 1200, - "description": "1200 8N1" - }, - { - "value": 1800, - "description": "1800 8N1" - }, - { - "value": 2400, - "description": "2400 8N1" - }, - { - "value": 4800, - "description": "4800 8N1" - }, - { - "value": 9600, - "description": "9600 8N1" - }, - { - "value": 19200, - "description": "19200 8N1" + "description": "Disabled" }, { - "value": 38400, - "description": "38400 8N1" + "value": 1, + "description": "Autodetect" }, { - "value": 57600, - "description": "57600 8N1" + "value": 2, + "description": "TROne" }, { - "value": 115200, - "description": "115200 8N1" - }, + "value": 3, + "description": "TREvo60m" + } + ], + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 3 + }, + { + "name": "SENS_EXT_I2C_PRB", + "type": "Int32", + "group": "Sensors", + "category": "System", + "shortDesc": "External I2C probe", + "longDesc": "Probe for optional external I2C devices.", + "default": 1, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SENS_FLOW_MAXHGT", + "type": "Float", + "group": "Sensor Calibration", + "category": "Standard", + "shortDesc": "Maximum height above ground when reliant on optical flow", + "longDesc": "This parameter defines the maximum distance from ground at which the optical flow sensor operates reliably. The height setpoint will be limited to be no greater than this value when the navigation system is completely reliant on optical flow data and the height above ground estimate is valid. The sensor may be usable above this height, but accuracy will progressively degrade.", + "units": "m", + "default": 3, + "increment": 0.1, + "decimalPlaces": 1, + "minValue": 1, + "maxValue": 25 + }, + { + "name": "SENS_FLOW_MAXR", + "type": "Float", + "group": "Sensor Calibration", + "category": "Standard", + "shortDesc": "Magnitude of maximum angular flow rate reliably measurable by the optical flow sensor. Optical flow data will not fused by the estimators if the magnitude of the flow rate exceeds this value and control loops will be instructed to limit ground speed such that the flow rate produced by movement over ground is less than 50% of this value", + "units": "rad/s", + "default": 2.5, + "decimalPlaces": 2, + "minValue": 1, + "maxValue": 3.40282e+38 + }, + { + "name": "SENS_FLOW_MINHGT", + "type": "Float", + "group": "Sensor Calibration", + "category": "Standard", + "shortDesc": "Minimum height above ground when reliant on optical flow", + "longDesc": "This parameter defines the minimum distance from ground at which the optical flow sensor operates reliably. The sensor may be usable below this height, but accuracy will progressively reduce to loss of focus.", + "units": "m", + "default": 0.7, + "increment": 0.1, + "decimalPlaces": 1, + "minValue": 0, + "maxValue": 1 + }, + { + "name": "SENS_FLOW_ROT", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "PX4Flow board rotation", + "longDesc": "This parameter defines the yaw rotation of the PX4FLOW board relative to the vehicle body frame. Zero rotation is defined as X on flow board pointing towards front of vehicle. The recommneded installation default for the PX4FLOW board is with the Y axis forward (270 deg yaw).", + "default": 6, + "values": [ { - "value": 230400, - "description": "230400 8N1" + "value": 0, + "description": "No rotation" }, { - "value": 460800, - "description": "460800 8N1" + "value": 1, + "description": "Yaw 45°" }, { - "value": 500000, - "description": "500000 8N1" + "value": 2, + "description": "Yaw 90°" }, { - "value": 921600, - "description": "921600 8N1" + "value": 3, + "description": "Yaw 135°" }, { - "value": 1e+06, - "description": "1000000 8N1" + "value": 4, + "description": "Yaw 180°" }, { - "value": 1.5e+06, - "description": "1500000 8N1" + "value": 5, + "description": "Yaw 225°" }, { - "value": 2e+06, - "description": "2000000 8N1" + "value": 6, + "description": "Yaw 270°" }, { - "value": 3e+06, - "description": "3000000 8N1" + "value": 7, + "description": "Yaw 315°" } ], "rebootRequired": true, @@ -20522,117 +16058,89 @@ "maxValue": 2.14748e+09 }, { - "name": "SER_GPS3_BAUD", + "name": "SENS_IMU_TEMP", + "type": "Float", + "group": "Sensors", + "category": "System", + "shortDesc": "Target IMU temperature", + "units": "C", + "default": 55, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 85 + }, + { + "name": "SENS_IMU_TEMP_I", + "type": "Float", + "group": "Sensors", + "category": "System", + "shortDesc": "IMU heater controller integrator gain value", + "units": "microseconds/C", + "default": 0.025, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 1 + }, + { + "name": "SENS_IMU_TEMP_P", + "type": "Float", + "group": "Sensors", + "category": "System", + "shortDesc": "IMU heater controller proportional gain value", + "units": "microseconds/C", + "default": 1, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 2 + }, + { + "name": "SENS_LEDDAR1_CFG", "type": "Int32", - "group": "Serial", + "group": "Sensors", "category": "Standard", - "shortDesc": "Baudrate for the GPS 3 Serial Port", - "longDesc": "Configure the Baudrate for the GPS 3 Serial Port. Note: certain drivers such as the GPS can determine the Baudrate automatically.", + "shortDesc": "Serial Configuration for LeddarOne Rangefinder", + "longDesc": "Configure on which serial port to run LeddarOne Rangefinder.", "default": 0, "values": [ { "value": 0, - "description": "Auto" - }, - { - "value": 50, - "description": "50 8N1" - }, - { - "value": 75, - "description": "75 8N1" - }, - { - "value": 110, - "description": "110 8N1" - }, - { - "value": 134, - "description": "134 8N1" - }, - { - "value": 150, - "description": "150 8N1" - }, - { - "value": 200, - "description": "200 8N1" - }, - { - "value": 300, - "description": "300 8N1" - }, - { - "value": 600, - "description": "600 8N1" - }, - { - "value": 1200, - "description": "1200 8N1" - }, - { - "value": 1800, - "description": "1800 8N1" - }, - { - "value": 2400, - "description": "2400 8N1" - }, - { - "value": 4800, - "description": "4800 8N1" - }, - { - "value": 9600, - "description": "9600 8N1" - }, - { - "value": 19200, - "description": "19200 8N1" - }, - { - "value": 38400, - "description": "38400 8N1" - }, - { - "value": 57600, - "description": "57600 8N1" + "description": "Disabled" }, { - "value": 115200, - "description": "115200 8N1" + "value": 6, + "description": "UART 6" }, { - "value": 230400, - "description": "230400 8N1" + "value": 101, + "description": "TELEM 1" }, { - "value": 460800, - "description": "460800 8N1" + "value": 102, + "description": "TELEM 2" }, { - "value": 500000, - "description": "500000 8N1" + "value": 103, + "description": "TELEM 3" }, { - "value": 921600, - "description": "921600 8N1" + "value": 104, + "description": "TELEM/SERIAL 4" }, { - "value": 1e+06, - "description": "1000000 8N1" + "value": 201, + "description": "GPS 1" }, { - "value": 1.5e+06, - "description": "1500000 8N1" + "value": 202, + "description": "GPS 2" }, { - "value": 2e+06, - "description": "2000000 8N1" + "value": 203, + "description": "GPS 3" }, { - "value": 3e+06, - "description": "3000000 8N1" + "value": 300, + "description": "Radio Controller" } ], "rebootRequired": true, @@ -20641,236 +16149,268 @@ "maxValue": 2.14748e+09 }, { - "name": "SER_RC_BAUD", + "name": "SENS_MB12_<#>_ROT", "type": "Int32", - "group": "Serial", + "group": "Sensors", "category": "Standard", - "shortDesc": "Baudrate for the Radio Controller Serial Port", - "longDesc": "Configure the Baudrate for the Radio Controller Serial Port. Note: certain drivers such as the GPS can determine the Baudrate automatically.", + "shortDesc": "MaxBotix MB12XX Sensor 0 Rotation", + "longDesc": "This parameter defines the rotation of the sensor relative to the platform.", "default": 0, "values": [ { "value": 0, - "description": "Auto" - }, - { - "value": 50, - "description": "50 8N1" - }, - { - "value": 75, - "description": "75 8N1" - }, - { - "value": 110, - "description": "110 8N1" - }, - { - "value": 134, - "description": "134 8N1" - }, - { - "value": 150, - "description": "150 8N1" - }, - { - "value": 200, - "description": "200 8N1" - }, - { - "value": 300, - "description": "300 8N1" - }, - { - "value": 600, - "description": "600 8N1" - }, - { - "value": 1200, - "description": "1200 8N1" - }, - { - "value": 1800, - "description": "1800 8N1" + "description": "No rotation" }, { - "value": 2400, - "description": "2400 8N1" + "value": 1, + "description": "Yaw 45°" }, { - "value": 4800, - "description": "4800 8N1" + "value": 2, + "description": "Yaw 90°" }, { - "value": 9600, - "description": "9600 8N1" + "value": 3, + "description": "Yaw 135°" }, { - "value": 19200, - "description": "19200 8N1" + "value": 4, + "description": "Yaw 180°" }, { - "value": 38400, - "description": "38400 8N1" + "value": 5, + "description": "Yaw 225°" }, { - "value": 57600, - "description": "57600 8N1" + "value": 6, + "description": "Yaw 270°" }, { - "value": 115200, - "description": "115200 8N1" - }, + "value": 7, + "description": "Yaw 315°" + } + ], + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": 0, + "maxValue": 7 + }, + { + "name": "SENS_MPDT<#>_ROT", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "MappyDot Sensor 0 Rotation", + "longDesc": "This parameter defines the rotation of the Mappydot sensor relative to the platform.", + "default": 0, + "values": [ { - "value": 230400, - "description": "230400 8N1" + "value": 0, + "description": "No rotation" }, { - "value": 460800, - "description": "460800 8N1" + "value": 1, + "description": "Yaw 45°" }, { - "value": 500000, - "description": "500000 8N1" + "value": 2, + "description": "Yaw 90°" }, { - "value": 921600, - "description": "921600 8N1" + "value": 3, + "description": "Yaw 135°" }, { - "value": 1e+06, - "description": "1000000 8N1" + "value": 4, + "description": "Yaw 180°" }, { - "value": 1.5e+06, - "description": "1500000 8N1" + "value": 5, + "description": "Yaw 225°" }, { - "value": 2e+06, - "description": "2000000 8N1" + "value": 6, + "description": "Yaw 270°" }, { - "value": 3e+06, - "description": "3000000 8N1" + "value": 7, + "description": "Yaw 315°" } ], "rebootRequired": true, "decimalPlaces": 3, - "minValue": -2.14748e+09, - "maxValue": 2.14748e+09 + "minValue": 0, + "maxValue": 7 }, { - "name": "SER_TEL1_BAUD", + "name": "SENS_SF0X_CFG", "type": "Int32", - "group": "Serial", + "group": "Sensors", "category": "Standard", - "shortDesc": "Baudrate for the TELEM 1 Serial Port", - "longDesc": "Configure the Baudrate for the TELEM 1 Serial Port. Note: certain drivers such as the GPS can determine the Baudrate automatically.", - "default": 57600, + "shortDesc": "Serial Configuration for Lightware Laser Rangefinder", + "longDesc": "Configure on which serial port to run Lightware Laser Rangefinder.", + "default": 0, "values": [ { "value": 0, - "description": "Auto" + "description": "Disabled" }, { - "value": 50, - "description": "50 8N1" + "value": 6, + "description": "UART 6" }, { - "value": 75, - "description": "75 8N1" + "value": 101, + "description": "TELEM 1" }, { - "value": 110, - "description": "110 8N1" + "value": 102, + "description": "TELEM 2" }, { - "value": 134, - "description": "134 8N1" + "value": 103, + "description": "TELEM 3" }, { - "value": 150, - "description": "150 8N1" + "value": 104, + "description": "TELEM/SERIAL 4" }, { - "value": 200, - "description": "200 8N1" + "value": 201, + "description": "GPS 1" + }, + { + "value": 202, + "description": "GPS 2" + }, + { + "value": 203, + "description": "GPS 3" }, { "value": 300, - "description": "300 8N1" + "description": "Radio Controller" + } + ], + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SENS_TEMP_ID", + "type": "Int32", + "group": "Sensors", + "category": "System", + "shortDesc": "Target IMU device ID to regulate temperature", + "default": 0, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SENS_TFMINI_CFG", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Serial Configuration for Benewake TFmini Rangefinder", + "longDesc": "Configure on which serial port to run Benewake TFmini Rangefinder.", + "default": 0, + "values": [ + { + "value": 0, + "description": "Disabled" }, { - "value": 600, - "description": "600 8N1" + "value": 6, + "description": "UART 6" }, { - "value": 1200, - "description": "1200 8N1" + "value": 101, + "description": "TELEM 1" }, { - "value": 1800, - "description": "1800 8N1" + "value": 102, + "description": "TELEM 2" }, { - "value": 2400, - "description": "2400 8N1" + "value": 103, + "description": "TELEM 3" }, { - "value": 4800, - "description": "4800 8N1" + "value": 104, + "description": "TELEM/SERIAL 4" }, { - "value": 9600, - "description": "9600 8N1" + "value": 201, + "description": "GPS 1" }, { - "value": 19200, - "description": "19200 8N1" + "value": 202, + "description": "GPS 2" }, { - "value": 38400, - "description": "38400 8N1" + "value": 203, + "description": "GPS 3" }, { - "value": 57600, - "description": "57600 8N1" + "value": 300, + "description": "Radio Controller" + } + ], + "rebootRequired": true, + "decimalPlaces": 3, + "minValue": -2.14748e+09, + "maxValue": 2.14748e+09 + }, + { + "name": "SENS_ULAND_CFG", + "type": "Int32", + "group": "Sensors", + "category": "Standard", + "shortDesc": "Serial Configuration for uLanding Radar", + "longDesc": "Configure on which serial port to run uLanding Radar.", + "default": 0, + "values": [ + { + "value": 0, + "description": "Disabled" }, { - "value": 115200, - "description": "115200 8N1" + "value": 6, + "description": "UART 6" }, { - "value": 230400, - "description": "230400 8N1" + "value": 101, + "description": "TELEM 1" }, { - "value": 460800, - "description": "460800 8N1" + "value": 102, + "description": "TELEM 2" }, { - "value": 500000, - "description": "500000 8N1" + "value": 103, + "description": "TELEM 3" }, { - "value": 921600, - "description": "921600 8N1" + "value": 104, + "description": "TELEM/SERIAL 4" }, { - "value": 1e+06, - "description": "1000000 8N1" + "value": 201, + "description": "GPS 1" }, { - "value": 1.5e+06, - "description": "1500000 8N1" + "value": 202, + "description": "GPS 2" }, { - "value": 2e+06, - "description": "2000000 8N1" + "value": 203, + "description": "GPS 3" }, { - "value": 3e+06, - "description": "3000000 8N1" + "value": 300, + "description": "Radio Controller" } ], "rebootRequired": true, @@ -20879,13 +16419,13 @@ "maxValue": 2.14748e+09 }, { - "name": "SER_TEL2_BAUD", + "name": "SER_GPS<#>_BAUD", "type": "Int32", "group": "Serial", "category": "Standard", - "shortDesc": "Baudrate for the TELEM 2 Serial Port", - "longDesc": "Configure the Baudrate for the TELEM 2 Serial Port. Note: certain drivers such as the GPS can determine the Baudrate automatically.", - "default": 921600, + "shortDesc": "Baudrate for the GPS 1 Serial Port", + "longDesc": "Configure the Baudrate for the GPS 1 Serial Port. Note: certain drivers such as the GPS can determine the Baudrate automatically.", + "default": 0, "values": [ { "value": 0, @@ -20998,13 +16538,13 @@ "maxValue": 2.14748e+09 }, { - "name": "SER_TEL3_BAUD", + "name": "SER_RC_BAUD", "type": "Int32", "group": "Serial", "category": "Standard", - "shortDesc": "Baudrate for the TELEM 3 Serial Port", - "longDesc": "Configure the Baudrate for the TELEM 3 Serial Port. Note: certain drivers such as the GPS can determine the Baudrate automatically.", - "default": 57600, + "shortDesc": "Baudrate for the Radio Controller Serial Port", + "longDesc": "Configure the Baudrate for the Radio Controller Serial Port. Note: certain drivers such as the GPS can determine the Baudrate automatically.", + "default": 0, "values": [ { "value": 0, @@ -21117,12 +16657,12 @@ "maxValue": 2.14748e+09 }, { - "name": "SER_TEL4_BAUD", + "name": "SER_TEL<#>_BAUD", "type": "Int32", "group": "Serial", "category": "Standard", - "shortDesc": "Baudrate for the TELEM/SERIAL 4 Serial Port", - "longDesc": "Configure the Baudrate for the TELEM/SERIAL 4 Serial Port. Note: certain drivers such as the GPS can determine the Baudrate automatically.", + "shortDesc": "Baudrate for the TELEM 1 Serial Port", + "longDesc": "Configure the Baudrate for the TELEM 1 Serial Port. Note: certain drivers such as the GPS can determine the Baudrate automatically.", "default": 57600, "values": [ {