You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Settings.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2002,6 +2002,16 @@ Uncertainty value for barometric sensor [cm]
2002
2002
2003
2003
---
2004
2004
2005
+
### inav_default_alt_sensor
2006
+
2007
+
Sets the default altitude sensor to use. Settings GPS and BARO always use both sensors unless there is an altitude error between the sensors that exceeds a set limit. In this case only the selected sensor will be used while the altitude error limit is exceeded. GPS error limit = 2 * inav_max_eph_epv. BARO error limit = 4 * inav_baro_epv. Settings GPS_ONLY and BARO_ONLY will use only the selected sensor even if the other sensor is working. The other sensor will only be used as a backup if the selected sensor is no longer available to use.
2008
+
2009
+
| Default | Min | Max |
2010
+
| --- | --- | --- |
2011
+
| GPS |||
2012
+
2013
+
---
2014
+
2005
2015
### inav_gravity_cal_tolerance
2006
2016
2007
2017
Unarmed gravity calibration tolerance level. Won't finish the calibration until estimated gravity error falls below this value.
@@ -2122,6 +2132,16 @@ Weight of barometer measurements in estimated altitude and climb rate. Setting i
2122
2132
2123
2133
---
2124
2134
2135
+
### inav_w_z_baro_v
2136
+
2137
+
Weight of barometer climb rate measurements in estimated climb rate. Setting is used on both airplanes and multirotors.
2138
+
2139
+
| Default | Min | Max |
2140
+
| --- | --- | --- |
2141
+
| 0.1 | 0 | 10 |
2142
+
2143
+
---
2144
+
2125
2145
### inav_w_z_gps_p
2126
2146
2127
2147
Weight of GPS altitude measurements in estimated altitude. Setting is used on both airplanes and multirotors.
Copy file name to clipboardExpand all lines: src/main/fc/settings.yaml
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -201,6 +201,9 @@ tables:
201
201
- name: mavlink_radio_type
202
202
values: ["GENERIC", "ELRS", "SIK"]
203
203
enum: mavlinkRadio_e
204
+
- name: default_altitude_source
205
+
values: ["GPS", "BARO", "GPS ONLY", "BARO ONLY"]
206
+
enum: navDefaultAltitudeSensor_e
204
207
205
208
constants:
206
209
RPYL_PID_MIN: 0
@@ -2410,6 +2413,12 @@ groups:
2410
2413
min: 0
2411
2414
max: 10
2412
2415
default_value: 0.35
2416
+
- name: inav_w_z_baro_v
2417
+
description: "Weight of barometer climb rate measurements in estimated climb rate. Setting is used on both airplanes and multirotors."
2418
+
field: w_z_baro_v
2419
+
min: 0
2420
+
max: 10
2421
+
default_value: 0.1
2413
2422
- name: inav_w_z_gps_p
2414
2423
description: "Weight of GPS altitude measurements in estimated altitude. Setting is used on both airplanes and multirotors."
2415
2424
field: w_z_gps_p
@@ -2464,6 +2473,11 @@ groups:
2464
2473
field: baro_epv
2465
2474
min: 0
2466
2475
max: 9999
2476
+
- name: inav_default_alt_sensor
2477
+
description: "Sets the default altitude sensor to use. Settings GPS and BARO always use both sensors unless there is an altitude error between the sensors that exceeds a set limit. In this case only the selected sensor will be used while the altitude error limit is exceeded. GPS error limit = 2 * inav_max_eph_epv. BARO error limit = 4 * inav_baro_epv. Settings GPS_ONLY and BARO_ONLY will use only the selected sensor even if the other sensor is working. The other sensor will only be used as a backup if the selected sensor is no longer available to use."
0 commit comments