You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5724 lines
114 KiB

  1. # CLI Variable Reference
  2. > Note: this document is autogenerated. Do not edit it manually.
  3. ### 3d_deadband_high
  4. High value of throttle deadband for 3D mode (when stick is in the deadband range, the value in 3d_neutral is used instead)
  5. | Default | Min | Max |
  6. | --- | --- | --- |
  7. | 1514 | PWM_RANGE_MIN | PWM_RANGE_MAX |
  8. ---
  9. ### 3d_deadband_low
  10. Low value of throttle deadband for 3D mode (when stick is in the 3d_deadband_throttle range, the fixed values of 3d_deadband_low / _high are used instead)
  11. | Default | Min | Max |
  12. | --- | --- | --- |
  13. | 1406 | PWM_RANGE_MIN | PWM_RANGE_MAX |
  14. ---
  15. ### 3d_deadband_throttle
  16. Throttle signal will be held to a fixed value when throttle is centered with an error margin defined in this parameter.
  17. | Default | Min | Max |
  18. | --- | --- | --- |
  19. | 50 | 0 | 200 |
  20. ---
  21. ### 3d_neutral
  22. Neutral (stop) throttle value for 3D mode
  23. | Default | Min | Max |
  24. | --- | --- | --- |
  25. | 1460 | PWM_RANGE_MIN | PWM_RANGE_MAX |
  26. ---
  27. ### acc_event_threshold_high
  28. Acceleration threshold [cm/s/s] for impact / high g event text messages sent by SIM module. Acceleration values greater than 4 g can occur in fixed wing flight without an impact, so a setting of 4000 or greater is suggested. 0 = detection off.
  29. | Default | Min | Max |
  30. | --- | --- | --- |
  31. | 0 | 0 | 65535 |
  32. ---
  33. ### acc_event_threshold_low
  34. Acceleration threshold [cm/s/s] for low-g / freefall detection text messages sent by SIM module. A setting of less than 100 is suggested. Valid values: [0-900], 0 = detection off.
  35. | Default | Min | Max |
  36. | --- | --- | --- |
  37. | 0 | 0 | 900 |
  38. ---
  39. ### acc_event_threshold_neg_x
  40. Acceleration threshold [cm/s/s] for backwards acceleration / fixed wing landing detection text messages sent by SIM module. Suggested value for fixed wing: 1100. 0 = detection off.
  41. | Default | Min | Max |
  42. | --- | --- | --- |
  43. | 0 | 0 | 65535 |
  44. ---
  45. ### acc_hardware
  46. Selection of acc hardware. See Wiki Sensor auto detect and hardware failure detection for more info
  47. | Default | Min | Max |
  48. | --- | --- | --- |
  49. | AUTO | | |
  50. ---
  51. ### acc_lpf_hz
  52. Software-based filter to remove mechanical vibrations from the accelerometer measurements. Value is cutoff frequency (Hz). For larger frames with bigger props set to lower value.
  53. | Default | Min | Max |
  54. | --- | --- | --- |
  55. | 15 | 0 | 200 |
  56. ---
  57. ### acc_lpf_type
  58. Specifies the type of the software LPF of the acc signals. BIQUAD gives better filtering and more delay, PT1 less filtering and less delay, so use only on clean builds.
  59. | Default | Min | Max |
  60. | --- | --- | --- |
  61. | BIQUAD | | |
  62. ---
  63. ### acc_notch_cutoff
  64. _// TODO_
  65. | Default | Min | Max |
  66. | --- | --- | --- |
  67. | 1 | 1 | 255 |
  68. ---
  69. ### acc_notch_hz
  70. _// TODO_
  71. | Default | Min | Max |
  72. | --- | --- | --- |
  73. | 0 | 0 | 255 |
  74. ---
  75. ### accgain_x
  76. Calculated value after '6 position avanced calibration'. Uncalibrated value is 4096. See Wiki page.
  77. | Default | Min | Max |
  78. | --- | --- | --- |
  79. | 4096 | 1 | 8192 |
  80. ---
  81. ### accgain_y
  82. Calculated value after '6 position avanced calibration'. Uncalibrated value is 4096. See Wiki page.
  83. | Default | Min | Max |
  84. | --- | --- | --- |
  85. | 4096 | 1 | 8192 |
  86. ---
  87. ### accgain_z
  88. Calculated value after '6 position avanced calibration'. Uncalibrated value is 4096. See Wiki page.
  89. | Default | Min | Max |
  90. | --- | --- | --- |
  91. | 4096 | 1 | 8192 |
  92. ---
  93. ### acczero_x
  94. Calculated value after '6 position avanced calibration'. See Wiki page.
  95. | Default | Min | Max |
  96. | --- | --- | --- |
  97. | 0 | -32768 | 32767 |
  98. ---
  99. ### acczero_y
  100. Calculated value after '6 position avanced calibration'. See Wiki page.
  101. | Default | Min | Max |
  102. | --- | --- | --- |
  103. | 0 | -32768 | 32767 |
  104. ---
  105. ### acczero_z
  106. Calculated value after '6 position avanced calibration'. See Wiki page.
  107. | Default | Min | Max |
  108. | --- | --- | --- |
  109. | 0 | -32768 | 32767 |
  110. ---
  111. ### airmode_throttle_threshold
  112. Defines airmode THROTTLE activation threshold when `airmode_type` **THROTTLE_THRESHOLD** is used
  113. | Default | Min | Max |
  114. | --- | --- | --- |
  115. | 1300 | 1000 | 2000 |
  116. ---
  117. ### airmode_type
  118. Defines the Airmode state handling type. Default **STICK_CENTER** is the classical approach in which Airmode is always active if enabled, but when the throttle is low and ROLL/PITCH/YAW sticks are centered, Iterms is not allowed to grow (ANTI_WINDUP). **THROTTLE_THRESHOLD** is the Airmode behavior known from Betaflight. In this mode, Airmode is active as soon THROTTLE position is above `airmode_throttle_threshold` and stays active until disarm. ANTI_WINDUP is never triggered. For small Multirotors (up to 7-inch propellers) it is suggested to switch to **THROTTLE_THRESHOLD** since it keeps full stabilization no matter what pilot does with the sticks. Fixed Wings always use **STICK_CENTER_ONCE** or **STICK_CENTER** modes.
  119. | Default | Min | Max |
  120. | --- | --- | --- |
  121. | STICK_CENTER | | |
  122. ---
  123. ### airspeed_adc_channel
  124. ADC channel to use for analog pitot tube (airspeed) sensor. If board doesn't have a dedicated connector for analog airspeed sensor will default to 0
  125. | Default | Min | Max |
  126. | --- | --- | --- |
  127. | _target default_ | ADC_CHN_NONE | ADC_CHN_MAX |
  128. ---
  129. ### align_acc
  130. When running on non-default hardware or adding support for new sensors/sensor boards, these values are used for sensor orientation. When carefully understood, these values can also be used to rotate (in 90deg steps) or flip the board. Possible values are: DEFAULT, CW0_DEG, CW90_DEG, CW180_DEG, CW270_DEG, CW0_DEG_FLIP, CW90_DEG_FLIP, CW180_DEG_FLIP, CW270_DEG_FLIP.
  131. | Default | Min | Max |
  132. | --- | --- | --- |
  133. | DEFAULT | | |
  134. ---
  135. ### align_board_pitch
  136. Arbitrary board rotation in deci-degrees (0.1 degree), to allow mounting it sideways / upside down / rotated etc
  137. | Default | Min | Max |
  138. | --- | --- | --- |
  139. | 0 | -1800 | 3600 |
  140. ---
  141. ### align_board_roll
  142. Arbitrary board rotation in deci-degrees (0.1 degree), to allow mounting it sideways / upside down / rotated etc
  143. | Default | Min | Max |
  144. | --- | --- | --- |
  145. | 0 | -1800 | 3600 |
  146. ---
  147. ### align_board_yaw
  148. Arbitrary board rotation in deci-degrees (0.1 degree), to allow mounting it sideways / upside down / rotated etc
  149. | Default | Min | Max |
  150. | --- | --- | --- |
  151. | 0 | -1800 | 3600 |
  152. ---
  153. ### align_gyro
  154. When running on non-default hardware or adding support for new sensors/sensor boards, these values are used for sensor orientation. When carefully understood, these values can also be used to rotate (in 90deg steps) or flip the board. Possible values are: DEFAULT, CW0_DEG, CW90_DEG, CW180_DEG, CW270_DEG, CW0_DEG_FLIP, CW90_DEG_FLIP, CW180_DEG_FLIP, CW270_DEG_FLIP.
  155. | Default | Min | Max |
  156. | --- | --- | --- |
  157. | DEFAULT | | |
  158. ---
  159. ### align_mag
  160. When running on non-default hardware or adding support for new sensors/sensor boards, these values are used for sensor orientation. When carefully understood, these values can also be used to rotate (in 90deg steps) or flip the board. Possible values are: DEFAULT, CW0_DEG, CW90_DEG, CW180_DEG, CW270_DEG, CW0_DEG_FLIP, CW90_DEG_FLIP, CW180_DEG_FLIP, CW270_DEG_FLIP.
  161. | Default | Min | Max |
  162. | --- | --- | --- |
  163. | DEFAULT | | |
  164. ---
  165. ### align_mag_pitch
  166. Same as align_mag_roll, but for the pitch axis.
  167. | Default | Min | Max |
  168. | --- | --- | --- |
  169. | 0 | -1800 | 3600 |
  170. ---
  171. ### align_mag_roll
  172. Set the external mag alignment on the roll axis (in 0.1 degree steps). If this value is non-zero, the compass is assumed to be externally mounted and both the board and on-board compass alignent (align_mag) are ignored. See also align_mag_pitch and align_mag_yaw.
  173. | Default | Min | Max |
  174. | --- | --- | --- |
  175. | 0 | -1800 | 3600 |
  176. ---
  177. ### align_mag_yaw
  178. Same as align_mag_roll, but for the yaw axis.
  179. | Default | Min | Max |
  180. | --- | --- | --- |
  181. | 0 | -1800 | 3600 |
  182. ---
  183. ### align_opflow
  184. Optical flow module alignment (default CW0_DEG_FLIP)
  185. | Default | Min | Max |
  186. | --- | --- | --- |
  187. | CW0FLIP | | |
  188. ---
  189. ### alt_hold_deadband
  190. Defines the deadband of throttle during alt_hold [r/c points]
  191. | Default | Min | Max |
  192. | --- | --- | --- |
  193. | 50 | 10 | 250 |
  194. ---
  195. ### antigravity_accelerator
  196. _// TODO_
  197. | Default | Min | Max |
  198. | --- | --- | --- |
  199. | 1 | 1 | 20 |
  200. ---
  201. ### antigravity_cutoff_lpf_hz
  202. Antigravity cutoff frequenct for Throtte filter. Antigravity is based on the difference between actual and filtered throttle input. The bigger is the difference, the bigger Antigravity gain
  203. | Default | Min | Max |
  204. | --- | --- | --- |
  205. | 15 | 1 | 30 |
  206. ---
  207. ### antigravity_gain
  208. Max Antigravity gain. `1` means Antigravity is disabled, `2` means Iterm is allowed to double during rapid throttle movements
  209. | Default | Min | Max |
  210. | --- | --- | --- |
  211. | 1 | 1 | 20 |
  212. ---
  213. ### applied_defaults
  214. Internal (configurator) hint. Should not be changed manually
  215. | Default | Min | Max |
  216. | --- | --- | --- |
  217. | 0 | 0 | 3 |
  218. ---
  219. ### baro_cal_tolerance
  220. Baro calibration tolerance in cm. The default should allow the noisiest baro to complete calibration [cm].
  221. | Default | Min | Max |
  222. | --- | --- | --- |
  223. | 150 | 0 | 1000 |
  224. ---
  225. ### baro_hardware
  226. Selection of baro hardware. See Wiki Sensor auto detect and hardware failure detection for more info
  227. | Default | Min | Max |
  228. | --- | --- | --- |
  229. | AUTO | | |
  230. ---
  231. ### baro_median_filter
  232. 3-point median filtering for barometer readouts. No reason to change this setting
  233. | Default | Min | Max |
  234. | --- | --- | --- |
  235. | ON | | |
  236. ---
  237. ### bat_cells
  238. Number of cells of the battery (0 = auto-detect), see battery documentation. 7S, 9S and 11S batteries cannot be auto-detected.
  239. | Default | Min | Max |
  240. | --- | --- | --- |
  241. | 0 | 0 | 12 |
  242. ---
  243. ### bat_voltage_src
  244. Chose between raw and sag compensated battery voltage to use for battery alarms and telemetry. Possible values are `RAW` and `SAG_COMP`
  245. | Default | Min | Max |
  246. | --- | --- | --- |
  247. | RAW | | |
  248. ---
  249. ### battery_capacity
  250. Set the battery capacity in mAh or mWh (see `battery_capacity_unit`). Used to calculate the remaining battery capacity.
  251. | Default | Min | Max |
  252. | --- | --- | --- |
  253. | 0 | 0 | 4294967295 |
  254. ---
  255. ### battery_capacity_critical
  256. If the remaining battery capacity goes below this threshold the battery is considered empty and the beeper will emit long beeps.
  257. | Default | Min | Max |
  258. | --- | --- | --- |
  259. | 0 | 0 | 4294967295 |
  260. ---
  261. ### battery_capacity_unit
  262. Unit used for `battery_capacity`, `battery_capacity_warning` and `battery_capacity_critical` [MAH/MWH] (milliAmpere hour / milliWatt hour).
  263. | Default | Min | Max |
  264. | --- | --- | --- |
  265. | MAH | | |
  266. ---
  267. ### battery_capacity_warning
  268. If the remaining battery capacity goes below this threshold the beeper will emit short beeps and the relevant OSD items will blink.
  269. | Default | Min | Max |
  270. | --- | --- | --- |
  271. | 0 | 0 | 4294967295 |
  272. ---
  273. ### beeper_pwm_mode
  274. Allows disabling PWM mode for beeper on some targets. Switch from ON to OFF if the external beeper sound is weak. Do not switch from OFF to ON without checking if the board supports PWM beeper mode
  275. | Default | Min | Max |
  276. | --- | --- | --- |
  277. | OFF | | |
  278. ---
  279. ### blackbox_device
  280. Selection of where to write blackbox data
  281. | Default | Min | Max |
  282. | --- | --- | --- |
  283. | _target default_ | | |
  284. ---
  285. ### blackbox_rate_denom
  286. Blackbox logging rate denominator. See blackbox_rate_num.
  287. | Default | Min | Max |
  288. | --- | --- | --- |
  289. | 1 | 1 | 65535 |
  290. ---
  291. ### blackbox_rate_num
  292. Blackbox logging rate numerator. Use num/denom settings to decide if a frame should be logged, allowing control of the portion of logged loop iterations
  293. | Default | Min | Max |
  294. | --- | --- | --- |
  295. | 1 | 1 | 65535 |
  296. ---
  297. ### control_deadband
  298. Stick deadband in [r/c points], applied after r/c deadband and expo. Used to check if sticks are centered.
  299. | Default | Min | Max |
  300. | --- | --- | --- |
  301. | 10 | 2 | 250 |
  302. ---
  303. ### controlrate_profile
  304. Control rate profile to switch to when the battery profile is selected, 0 to disable and keep the currently selected control rate profile
  305. | Default | Min | Max |
  306. | --- | --- | --- |
  307. | 0 | 0 | 3 |
  308. ---
  309. ### cpu_underclock
  310. This option is only available on certain architectures (F3 CPUs at the moment). It makes CPU clock lower to reduce interference to long-range RC systems working at 433MHz
  311. | Default | Min | Max |
  312. | --- | --- | --- |
  313. | OFF | | |
  314. ---
  315. ### cruise_power
  316. Power draw at cruise throttle used for remaining flight time/distance estimation in 0.01W unit
  317. | Default | Min | Max |
  318. | --- | --- | --- |
  319. | 0 | 0 | 4294967295 |
  320. ---
  321. ### current_adc_channel
  322. ADC channel to use for analog current sensor input. Defaults to board CURRENT sensor input (if available). 0 = disabled
  323. | Default | Min | Max |
  324. | --- | --- | --- |
  325. | _target default_ | ADC_CHN_NONE | ADC_CHN_MAX |
  326. ---
  327. ### current_meter_offset
  328. This sets the output offset voltage of the current sensor in millivolts.
  329. | Default | Min | Max |
  330. | --- | --- | --- |
  331. | _target default_ | -32768 | 32767 |
  332. ---
  333. ### current_meter_scale
  334. This sets the output voltage to current scaling for the current sensor in 0.1 mV/A steps. 400 is 40mV/A such as the ACS756 sensor outputs. 183 is the setting for the uberdistro with a 0.25mOhm shunt.
  335. | Default | Min | Max |
  336. | --- | --- | --- |
  337. | _target default_ | -10000 | 10000 |
  338. ---
  339. ### current_meter_type
  340. ADC , VIRTUAL, NONE. The virtual current sensor, once calibrated, estimates the current value from throttle position.
  341. | Default | Min | Max |
  342. | --- | --- | --- |
  343. | ADC | | |
  344. ---
  345. ### d_boost_gyro_delta_lpf_hz
  346. _// TODO_
  347. | Default | Min | Max |
  348. | --- | --- | --- |
  349. | 80 | 10 | 250 |
  350. ---
  351. ### d_boost_max
  352. _// TODO_
  353. | Default | Min | Max |
  354. | --- | --- | --- |
  355. | 1.25 | 1 | 3 |
  356. ---
  357. ### d_boost_max_at_acceleration
  358. _// TODO_
  359. | Default | Min | Max |
  360. | --- | --- | --- |
  361. | 7500 | 1000 | 16000 |
  362. ---
  363. ### d_boost_min
  364. _// TODO_
  365. | Default | Min | Max |
  366. | --- | --- | --- |
  367. | 0.5 | 0 | 1 |
  368. ---
  369. ### deadband
  370. These are values (in us) by how much RC input can be different before it's considered valid. For transmitters with jitter on outputs, this value can be increased. Defaults are zero, but can be increased up to 10 or so if rc inputs twitch while idle.
  371. | Default | Min | Max |
  372. | --- | --- | --- |
  373. | 5 | 0 | 32 |
  374. ---
  375. ### debug_mode
  376. Defines debug values exposed in debug variables (developer / debugging setting)
  377. | Default | Min | Max |
  378. | --- | --- | --- |
  379. | NONE | | |
  380. ---
  381. ### disarm_kill_switch
  382. Disarms the motors independently of throttle value. Setting to OFF reverts to the old behaviour of disarming only when the throttle is low. Only applies when arming and disarming with an AUX channel.
  383. | Default | Min | Max |
  384. | --- | --- | --- |
  385. | ON | | |
  386. ---
  387. ### display_force_sw_blink
  388. OFF = OSD hardware blink / ON = OSD software blink. If OSD warning text/values are invisible, try setting this to ON
  389. | Default | Min | Max |
  390. | --- | --- | --- |
  391. | OFF | | |
  392. ---
  393. ### dji_cn_alternating_duration
  394. Alternating duration of craft name elements, in tenths of a second
  395. | Default | Min | Max |
  396. | --- | --- | --- |
  397. | 30 | 1 | 150 |
  398. ---
  399. ### dji_esc_temp_source
  400. Re-purpose the ESC temperature field for IMU/BARO temperature
  401. | Default | Min | Max |
  402. | --- | --- | --- |
  403. | ESC | | |
  404. ---
  405. ### dji_message_speed_source
  406. Sets the speed type displayed by the DJI OSD in craft name: GROUND, 3D, AIR
  407. | Default | Min | Max |
  408. | --- | --- | --- |
  409. | 3D | | |
  410. ---
  411. ### dji_rssi_source
  412. Source of the DJI RSSI field: RSSI, CRSF_LQ
  413. | Default | Min | Max |
  414. | --- | --- | --- |
  415. | RSSI | | |
  416. ---
  417. ### dji_use_adjustments
  418. Show inflight adjustments in craft name field
  419. | Default | Min | Max |
  420. | --- | --- | --- |
  421. | OFF | | |
  422. ---
  423. ### dji_use_name_for_messages
  424. Re-purpose the craft name field for messages.
  425. | Default | Min | Max |
  426. | --- | --- | --- |
  427. | ON | | |
  428. ---
  429. ### dji_workarounds
  430. Enables workarounds for different versions of MSP protocol used
  431. | Default | Min | Max |
  432. | --- | --- | --- |
  433. | 1 | 0 | 255 |
  434. ---
  435. ### dshot_beeper_enabled
  436. Whether using DShot motors as beepers is enabled
  437. | Default | Min | Max |
  438. | --- | --- | --- |
  439. | ON | | |
  440. ---
  441. ### dshot_beeper_tone
  442. Sets the DShot beeper tone
  443. | Default | Min | Max |
  444. | --- | --- | --- |
  445. | 1 | 1 | 5 |
  446. ---
  447. ### dterm_lpf2_hz
  448. Cutoff frequency for stage 2 D-term low pass filter
  449. | Default | Min | Max |
  450. | --- | --- | --- |
  451. | 0 | 0 | 500 |
  452. ---
  453. ### dterm_lpf2_type
  454. Defines the type of stage 1 D-term LPF filter. Possible values: `PT1`, `BIQUAD`, `PT2`, `PT3`.
  455. | Default | Min | Max |
  456. | --- | --- | --- |
  457. | PT1 | | |
  458. ---
  459. ### dterm_lpf_hz
  460. Dterm low pass filter cutoff frequency. Default setting is very conservative and small multirotors should use higher value between 80 and 100Hz. 80 seems like a gold spot for 7-inch builds while 100 should work best with 5-inch machines. If motors are getting too hot, lower the value
  461. | Default | Min | Max |
  462. | --- | --- | --- |
  463. | 110 | 0 | 500 |
  464. ---
  465. ### dterm_lpf_type
  466. Defines the type of stage 1 D-term LPF filter. Possible values: `PT1`, `BIQUAD`, `PT2`, `PT3`.
  467. | Default | Min | Max |
  468. | --- | --- | --- |
  469. | PT2 | | |
  470. ---
  471. ### dynamic_gyro_notch_enabled
  472. Enable/disable dynamic gyro notch also known as Matrix Filter
  473. | Default | Min | Max |
  474. | --- | --- | --- |
  475. | OFF | | |
  476. ---
  477. ### dynamic_gyro_notch_min_hz
  478. Minimum frequency for dynamic notches. Default value of `150` works best with 5" multirors. Should be lowered with increased size of propellers. Values around `100` work fine on 7" drones. 10" can go down to `60` - `70`
  479. | Default | Min | Max |
  480. | --- | --- | --- |
  481. | 150 | 30 | 1000 |
  482. ---
  483. ### dynamic_gyro_notch_q
  484. Q factor for dynamic notches
  485. | Default | Min | Max |
  486. | --- | --- | --- |
  487. | 120 | 1 | 1000 |
  488. ---
  489. ### dynamic_gyro_notch_range
  490. Range for dynamic gyro notches. `MEDIUM` for 5", `HIGH` for 3" and `MEDIUM`/`LOW` for 7" and bigger propellers
  491. | Default | Min | Max |
  492. | --- | --- | --- |
  493. | MEDIUM | | |
  494. ---
  495. ### eleres_freq
  496. _// TODO_
  497. | Default | Min | Max |
  498. | --- | --- | --- |
  499. | 435 | 415 | 450 |
  500. ---
  501. ### eleres_loc_delay
  502. _// TODO_
  503. | Default | Min | Max |
  504. | --- | --- | --- |
  505. | 240 | 30 | 1800 |
  506. ---
  507. ### eleres_loc_en
  508. _// TODO_
  509. | Default | Min | Max |
  510. | --- | --- | --- |
  511. | OFF | | |
  512. ---
  513. ### eleres_loc_power
  514. _// TODO_
  515. | Default | Min | Max |
  516. | --- | --- | --- |
  517. | 7 | 0 | 7 |
  518. ---
  519. ### eleres_signature
  520. _// TODO_
  521. | Default | Min | Max |
  522. | --- | --- | --- |
  523. | 0 | | 4294967295 |
  524. ---
  525. ### eleres_telemetry_en
  526. _// TODO_
  527. | Default | Min | Max |
  528. | --- | --- | --- |
  529. | OFF | | |
  530. ---
  531. ### eleres_telemetry_power
  532. _// TODO_
  533. | Default | Min | Max |
  534. | --- | --- | --- |
  535. | 7 | 0 | 7 |
  536. ---
  537. ### esc_sensor_listen_only
  538. Enable when BLHeli32 Auto Telemetry function is used. Disable in every other case
  539. | Default | Min | Max |
  540. | --- | --- | --- |
  541. | OFF | | |
  542. ---
  543. ### failsafe_delay
  544. Time in deciseconds to wait before activating failsafe when signal is lost. See [Failsafe documentation](Failsafe.md#failsafe_delay).
  545. | Default | Min | Max |
  546. | --- | --- | --- |
  547. | 5 | 0 | 200 |
  548. ---
  549. ### failsafe_fw_pitch_angle
  550. Amount of dive/climb when `SET-THR` failsafe is active on a fixed-wing machine. In 1/10 deg (deci-degrees). Negative values = climb
  551. | Default | Min | Max |
  552. | --- | --- | --- |
  553. | 100 | -800 | 800 |
  554. ---
  555. ### failsafe_fw_roll_angle
  556. Amount of banking when `SET-THR` failsafe is active on a fixed-wing machine. In 1/10 deg (deci-degrees). Negative values = left roll
  557. | Default | Min | Max |
  558. | --- | --- | --- |
  559. | -200 | -800 | 800 |
  560. ---
  561. ### failsafe_fw_yaw_rate
  562. Requested yaw rate to execute when `SET-THR` failsafe is active on a fixed-wing machine. In deg/s. Negative values = left turn
  563. | Default | Min | Max |
  564. | --- | --- | --- |
  565. | -45 | -1000 | 1000 |
  566. ---
  567. ### failsafe_lights
  568. Enable or disable the lights when the `FAILSAFE` flight mode is enabled. The target needs to be compiled with `USE_LIGHTS` [ON/OFF].
  569. | Default | Min | Max |
  570. | --- | --- | --- |
  571. | ON | | |
  572. ---
  573. ### failsafe_lights_flash_on_time
  574. Flash lights ON time in milliseconds when `failsafe_lights` is ON and `FAILSAFE` flight mode is enabled. [20-65535].
  575. | Default | Min | Max |
  576. | --- | --- | --- |
  577. | 100 | 20 | 65535 |
  578. ---
  579. ### failsafe_lights_flash_period
  580. Time in milliseconds between two flashes when `failsafe_lights` is ON and `FAILSAFE` flight mode is enabled [40-65535].
  581. | Default | Min | Max |
  582. | --- | --- | --- |
  583. | 1000 | 40 | 65535 |
  584. ---
  585. ### failsafe_min_distance
  586. If failsafe happens when craft is closer than this distance in centimeters from home, failsafe will not execute regular failsafe_procedure, but will execute procedure specified in failsafe_min_distance_procedure instead. 0 = Normal failsafe_procedure always taken.
  587. | Default | Min | Max |
  588. | --- | --- | --- |
  589. | 0 | 0 | 65000 |
  590. ---
  591. ### failsafe_min_distance_procedure
  592. What failsafe procedure to initiate in Stage 2 when craft is closer to home than failsafe_min_distance. See [Failsafe documentation](Failsafe.md#failsafe_throttle).
  593. | Default | Min | Max |
  594. | --- | --- | --- |
  595. | DROP | | |
  596. ---
  597. ### failsafe_mission
  598. If set to `OFF` the failsafe procedure won't be triggered and the mission will continue if the FC is in WP (automatic mission) mode
  599. | Default | Min | Max |
  600. | --- | --- | --- |
  601. | ON | | |
  602. ---
  603. ### failsafe_off_delay
  604. Time in deciseconds to wait before turning off motors when failsafe is activated. 0 = No timeout. See [Failsafe documentation](Failsafe.md#failsafe_off_delay).
  605. | Default | Min | Max |
  606. | --- | --- | --- |
  607. | 200 | 0 | 200 |
  608. ---
  609. ### failsafe_procedure
  610. What failsafe procedure to initiate in Stage 2. See [Failsafe documentation](Failsafe.md#failsafe_throttle).
  611. | Default | Min | Max |
  612. | --- | --- | --- |
  613. | SET-THR | | |
  614. ---
  615. ### failsafe_recovery_delay
  616. Time in deciseconds to wait before aborting failsafe when signal is recovered. See [Failsafe documentation](Failsafe.md#failsafe_recovery_delay).
  617. | Default | Min | Max |
  618. | --- | --- | --- |
  619. | 5 | 0 | 200 |
  620. ---
  621. ### failsafe_stick_threshold
  622. Threshold for stick motion to consider failsafe condition resolved. If non-zero failsafe won't clear even if RC link is restored - you have to move sticks to exit failsafe.
  623. | Default | Min | Max |
  624. | --- | --- | --- |
  625. | 50 | 0 | 500 |
  626. ---
  627. ### failsafe_throttle
  628. Throttle level used for landing when failsafe is enabled. See [Failsafe documentation](Failsafe.md#failsafe_throttle).
  629. | Default | Min | Max |
  630. | --- | --- | --- |
  631. | 1000 | PWM_RANGE_MIN | PWM_RANGE_MAX |
  632. ---
  633. ### failsafe_throttle_low_delay
  634. If failsafe activated when throttle is low for this much time - bypass failsafe and disarm, in 10th of seconds. 0 = No timeout
  635. | Default | Min | Max |
  636. | --- | --- | --- |
  637. | 0 | 0 | 300 |
  638. ---
  639. ### fixed_wing_auto_arm
  640. Auto-arm fixed wing aircraft on throttle above min_check, and disarming with stick commands are disabled, so power cycle is required to disarm. Requires enabled motorstop and no arm switch configured.
  641. | Default | Min | Max |
  642. | --- | --- | --- |
  643. | OFF | | |
  644. ---
  645. ### flaperon_throw_offset
  646. Defines throw range in us for both ailerons that will be passed to servo mixer via input source 14 (`FEATURE FLAPS`) when FLAPERON mode is activated.
  647. | Default | Min | Max |
  648. | --- | --- | --- |
  649. | 200 | FLAPERON_THROW_MIN | FLAPERON_THROW_MAX |
  650. ---
  651. ### fpv_mix_degrees
  652. _// TODO_
  653. | Default | Min | Max |
  654. | --- | --- | --- |
  655. | 0 | 0 | 50 |
  656. ---
  657. ### frsky_coordinates_format
  658. D-Series telemetry only: FRSKY_FORMAT_DMS (default), FRSKY_FORMAT_NMEA
  659. | Default | Min | Max |
  660. | --- | --- | --- |
  661. | 0 | 0 | FRSKY_FORMAT_NMEA |
  662. ---
  663. ### frsky_default_latitude
  664. D-Series telemetry only: OpenTX needs a valid set of coordinates to show compass value. A fake value defined in this setting is sent while no fix is acquired.
  665. | Default | Min | Max |
  666. | --- | --- | --- |
  667. | 0 | -90 | 90 |
  668. ---
  669. ### frsky_default_longitude
  670. D-Series telemetry only: OpenTX needs a valid set of coordinates to show compass value. A fake value defined in this setting is sent while no fix is acquired.
  671. | Default | Min | Max |
  672. | --- | --- | --- |
  673. | 0 | -180 | 180 |
  674. ---
  675. ### frsky_pitch_roll
  676. S.Port and D-Series telemetry: Send pitch and roll degrees*10 instead of raw accelerometer data
  677. | Default | Min | Max |
  678. | --- | --- | --- |
  679. | OFF | | |
  680. ---
  681. ### frsky_unit
  682. Not used? [METRIC/IMPERIAL]
  683. | Default | Min | Max |
  684. | --- | --- | --- |
  685. | METRIC | | |
  686. ---
  687. ### frsky_vfas_precision
  688. D-Series telemetry only: Set to 1 to send raw VBat value in 0.1V resolution for receivers that can handle it, or 0 (default) to use the standard method
  689. | Default | Min | Max |
  690. | --- | --- | --- |
  691. | 0 | FRSKY_VFAS_PRECISION_LOW | FRSKY_VFAS_PRECISION_HIGH |
  692. ---
  693. ### fw_autotune_ff_to_i_tc
  694. FF to I time (defines time for I to reach the same level of response as FF) [ms]
  695. | Default | Min | Max |
  696. | --- | --- | --- |
  697. | 600 | 100 | 5000 |
  698. ---
  699. ### fw_autotune_ff_to_p_gain
  700. FF to P gain (strength relationship) [%]
  701. | Default | Min | Max |
  702. | --- | --- | --- |
  703. | 10 | 0 | 100 |
  704. ---
  705. ### fw_autotune_max_rate_deflection
  706. The target percentage of maximum mixer output used for determining the rates in `AUTO` and `LIMIT`.
  707. | Default | Min | Max |
  708. | --- | --- | --- |
  709. | 80 | 50 | 100 |
  710. ---
  711. ### fw_autotune_min_stick
  712. Minimum stick input [%], after applying deadband and expo, to start recording the plane's response to stick input.
  713. | Default | Min | Max |
  714. | --- | --- | --- |
  715. | 50 | 0 | 100 |
  716. ---
  717. ### fw_autotune_p_to_d_gain
  718. P to D gain (strength relationship) [%]
  719. | Default | Min | Max |
  720. | --- | --- | --- |
  721. | 0 | 0 | 200 |
  722. ---
  723. ### fw_autotune_rate_adjustment
  724. `AUTO` and `LIMIT` adjust the rates to match the capabilities of the airplane, with `LIMIT` they are never increased above the starting rates setting. `FIXED` does not adjust the rates. Rates are not changed when tuning in `ANGLE` mode.
  725. | Default | Min | Max |
  726. | --- | --- | --- |
  727. | AUTO | | |
  728. ---
  729. ### fw_d_level
  730. Fixed-wing attitude stabilisation HORIZON transition point
  731. | Default | Min | Max |
  732. | --- | --- | --- |
  733. | 75 | 0 | 255 |
  734. ---
  735. ### fw_d_pitch
  736. Fixed wing rate stabilisation D-gain for PITCH
  737. | Default | Min | Max |
  738. | --- | --- | --- |
  739. | 0 | 0 | 255 |
  740. ---
  741. ### fw_d_roll
  742. Fixed wing rate stabilisation D-gain for ROLL
  743. | Default | Min | Max |
  744. | --- | --- | --- |
  745. | 0 | 0 | 255 |
  746. ---
  747. ### fw_d_yaw
  748. Fixed wing rate stabilisation D-gain for YAW
  749. | Default | Min | Max |
  750. | --- | --- | --- |
  751. | 0 | 0 | 255 |
  752. ---
  753. ### fw_ff_pitch
  754. Fixed-wing rate stabilisation FF-gain for PITCH
  755. | Default | Min | Max |
  756. | --- | --- | --- |
  757. | 50 | 0 | 255 |
  758. ---
  759. ### fw_ff_roll
  760. Fixed-wing rate stabilisation FF-gain for ROLL
  761. | Default | Min | Max |
  762. | --- | --- | --- |
  763. | 50 | 0 | 255 |
  764. ---
  765. ### fw_ff_yaw
  766. Fixed-wing rate stabilisation FF-gain for YAW
  767. | Default | Min | Max |
  768. | --- | --- | --- |
  769. | 60 | 0 | 255 |
  770. ---
  771. ### fw_i_level
  772. Fixed-wing attitude stabilisation low-pass filter cutoff
  773. | Default | Min | Max |
  774. | --- | --- | --- |
  775. | 5 | 0 | 255 |
  776. ---
  777. ### fw_i_pitch
  778. Fixed-wing rate stabilisation I-gain for PITCH
  779. | Default | Min | Max |
  780. | --- | --- | --- |
  781. | 7 | 0 | 255 |
  782. ---
  783. ### fw_i_roll
  784. Fixed-wing rate stabilisation I-gain for ROLL
  785. | Default | Min | Max |
  786. | --- | --- | --- |
  787. | 7 | 0 | 255 |
  788. ---
  789. ### fw_i_yaw
  790. Fixed-wing rate stabilisation I-gain for YAW
  791. | Default | Min | Max |
  792. | --- | --- | --- |
  793. | 10 | 0 | 255 |
  794. ---
  795. ### fw_iterm_limit_stick_position
  796. Iterm is not allowed to grow when stick position is above threshold. This solves the problem of bounceback or followthrough when full stick deflection is applied on poorely tuned fixed wings. In other words, stabilization is partialy disabled when pilot is actively controlling the aircraft and active when sticks are not touched. `0` mean stick is in center position, `1` means it is fully deflected to either side
  797. | Default | Min | Max |
  798. | --- | --- | --- |
  799. | 0.5 | 0 | 1 |
  800. ---
  801. ### fw_iterm_throw_limit
  802. Limits max/min I-term value in stabilization PID controller in case of Fixed Wing. It solves the problem of servo saturation before take-off/throwing the airplane into the air. By default, error accumulated in I-term can not exceed 1/3 of servo throw (around 165us). Set 0 to disable completely.
  803. | Default | Min | Max |
  804. | --- | --- | --- |
  805. | 165 | FW_ITERM_THROW_LIMIT_MIN | FW_ITERM_THROW_LIMIT_MAX |
  806. ---
  807. ### fw_level_pitch_gain
  808. I-gain for the pitch trim for self-leveling flight modes. Higher values means that AUTOTRIM will be faster but might introduce oscillations
  809. | Default | Min | Max |
  810. | --- | --- | --- |
  811. | 5 | 0 | 20 |
  812. ---
  813. ### fw_level_pitch_trim
  814. Pitch trim for self-leveling flight modes. In degrees. +5 means airplane nose should be raised 5 deg from level
  815. | Default | Min | Max |
  816. | --- | --- | --- |
  817. | 0 | -10 | 10 |
  818. ---
  819. ### fw_loiter_direction
  820. Direction of loitering: center point on right wing (clockwise - default), or center point on left wing (counterclockwise). If equal YAW then can be changed in flight using a yaw stick.
  821. | Default | Min | Max |
  822. | --- | --- | --- |
  823. | RIGHT | | |
  824. ---
  825. ### fw_min_throttle_down_pitch
  826. Automatic pitch down angle when throttle is at 0 in angle mode. Progressively applied between cruise throttle and zero throttle (decidegrees)
  827. | Default | Min | Max |
  828. | --- | --- | --- |
  829. | 0 | 0 | 450 |
  830. ---
  831. ### fw_p_level
  832. Fixed-wing attitude stabilisation P-gain
  833. | Default | Min | Max |
  834. | --- | --- | --- |
  835. | 20 | 0 | 255 |
  836. ---
  837. ### fw_p_pitch
  838. Fixed-wing rate stabilisation P-gain for PITCH
  839. | Default | Min | Max |
  840. | --- | --- | --- |
  841. | 5 | 0 | 255 |
  842. ---
  843. ### fw_p_roll
  844. Fixed-wing rate stabilisation P-gain for ROLL
  845. | Default | Min | Max |
  846. | --- | --- | --- |
  847. | 5 | 0 | 255 |
  848. ---
  849. ### fw_p_yaw
  850. Fixed-wing rate stabilisation P-gain for YAW
  851. | Default | Min | Max |
  852. | --- | --- | --- |
  853. | 6 | 0 | 255 |
  854. ---
  855. ### fw_reference_airspeed
  856. Reference airspeed. Set this to airspeed at which PIDs were tuned. Usually should be set to cruise airspeed. Also used for coordinated turn calculation if airspeed sensor is not present.
  857. | Default | Min | Max |
  858. | --- | --- | --- |
  859. | 1500 | 300 | 6000 |
  860. ---
  861. ### fw_tpa_time_constant
  862. TPA smoothing and delay time constant to reflect non-instant speed/throttle response of the plane. Planes with low thrust/weight ratio generally need higher time constant. Default is zero for compatibility with old setups
  863. | Default | Min | Max |
  864. | --- | --- | --- |
  865. | 0 | 0 | 5000 |
  866. ---
  867. ### fw_turn_assist_pitch_gain
  868. Gain required to keep constant pitch angle during coordinated turns (in TURN_ASSIST mode). Value significantly different from 1.0 indicates a problem with the airspeed calibration (if present) or value of `fw_reference_airspeed` parameter
  869. | Default | Min | Max |
  870. | --- | --- | --- |
  871. | 1 | 0 | 2 |
  872. ---
  873. ### fw_turn_assist_yaw_gain
  874. Gain required to keep the yaw rate consistent with the turn rate for a coordinated turn (in TURN_ASSIST mode). Value significantly different from 1.0 indicates a problem with the airspeed calibration (if present) or value of `fw_reference_airspeed` parameter
  875. | Default | Min | Max |
  876. | --- | --- | --- |
  877. | 1 | 0 | 2 |
  878. ---
  879. ### fw_yaw_iterm_freeze_bank_angle
  880. Yaw Iterm is frozen when bank angle is above this threshold [degrees]. This solves the problem of the rudder counteracting turns by partially disabling yaw stabilization when making banked turns. Setting to 0 (the default) disables this feature. Only applies when autopilot is not active and TURN ASSIST is disabled.
  881. | Default | Min | Max |
  882. | --- | --- | --- |
  883. | 0 | 0 | 90 |
  884. ---
  885. ### gps_auto_baud
  886. Automatic configuration of GPS baudrate(The specified baudrate in configured in ports will be used) when used with UBLOX GPS. When used with NAZA/DJI it will automatic detect GPS baudrate and change to it, ignoring the selected baudrate set in ports
  887. | Default | Min | Max |
  888. | --- | --- | --- |
  889. | ON | | |
  890. ---
  891. ### gps_auto_config
  892. Enable automatic configuration of UBlox GPS receivers.
  893. | Default | Min | Max |
  894. | --- | --- | --- |
  895. | ON | | |
  896. ---
  897. ### gps_dyn_model
  898. GPS navigation model: Pedestrian, Air_1g, Air_4g. Default is AIR_1G. Use pedestrian with caution, can cause flyaways with fast flying.
  899. | Default | Min | Max |
  900. | --- | --- | --- |
  901. | AIR_1G | | |
  902. ---
  903. ### gps_min_sats
  904. Minimum number of GPS satellites in view to acquire GPS_FIX and consider GPS position valid. Some GPS receivers appeared to be very inaccurate with low satellite count.
  905. | Default | Min | Max |
  906. | --- | --- | --- |
  907. | 6 | 5 | 10 |
  908. ---
  909. ### gps_provider
  910. Which GPS protocol to be used, note that UBLOX is 5Hz and UBLOX7 is 10Hz (M8N).
  911. | Default | Min | Max |
  912. | --- | --- | --- |
  913. | UBLOX | | |
  914. ---
  915. ### gps_sbas_mode
  916. Which SBAS mode to be used
  917. | Default | Min | Max |
  918. | --- | --- | --- |
  919. | NONE | | |
  920. ---
  921. ### gps_ublox_use_galileo
  922. Enable use of Galileo satellites. This is at the expense of other regional constellations, so benefit may also be regional. Requires M8N and Ublox firmware 3.x (or later) [OFF/ON].
  923. | Default | Min | Max |
  924. | --- | --- | --- |
  925. | OFF | | |
  926. ---
  927. ### gyro_abg_alpha
  928. Alpha factor for Gyro Alpha-Beta-Gamma filter
  929. | Default | Min | Max |
  930. | --- | --- | --- |
  931. | 0 | 0 | 1 |
  932. ---
  933. ### gyro_abg_boost
  934. Boost factor for Gyro Alpha-Beta-Gamma filter
  935. | Default | Min | Max |
  936. | --- | --- | --- |
  937. | 0.35 | 0 | 2 |
  938. ---
  939. ### gyro_abg_half_life
  940. Sample half-life for Gyro Alpha-Beta-Gamma filter
  941. | Default | Min | Max |
  942. | --- | --- | --- |
  943. | 0.5 | 0 | 10 |
  944. ---
  945. ### gyro_anti_aliasing_lpf_hz
  946. Gyro processing anti-aliasing filter cutoff frequency. In normal operation this filter setting should never be changed. In Hz
  947. | Default | Min | Max |
  948. | --- | --- | --- |
  949. | 250 | | 1000 |
  950. ---
  951. ### gyro_anti_aliasing_lpf_type
  952. Specifies the type of the software LPF of the gyro signals.
  953. | Default | Min | Max |
  954. | --- | --- | --- |
  955. | PT1 | | |
  956. ---
  957. ### gyro_dyn_lpf_curve_expo
  958. Expo value for the throttle-to-frequency mapping for Dynamic LPF
  959. | Default | Min | Max |
  960. | --- | --- | --- |
  961. | 5 | 1 | 10 |
  962. ---
  963. ### gyro_dyn_lpf_max_hz
  964. Maximum frequency of the gyro Dynamic LPF
  965. | Default | Min | Max |
  966. | --- | --- | --- |
  967. | 500 | 40 | 1000 |
  968. ---
  969. ### gyro_dyn_lpf_min_hz
  970. Minimum frequency of the gyro Dynamic LPF
  971. | Default | Min | Max |
  972. | --- | --- | --- |
  973. | 200 | 40 | 400 |
  974. ---
  975. ### gyro_hardware_lpf
  976. Hardware lowpass filter for gyro. This value should never be changed without a very strong reason! If you have to set gyro lpf below 256HZ, it means the frame is vibrating too much, and that should be fixed first.
  977. | Default | Min | Max |
  978. | --- | --- | --- |
  979. | 256HZ | | |
  980. ---
  981. ### gyro_main_lpf_hz
  982. Software based gyro main lowpass filter. Value is cutoff frequency (Hz)
  983. | Default | Min | Max |
  984. | --- | --- | --- |
  985. | 60 | 0 | 500 |
  986. ---
  987. ### gyro_main_lpf_type
  988. Defines the type of the main gyro LPF filter. Possible values: `PT1`, `BIQUAD`. `PT1` offers faster filter response while `BIQUAD` better attenuation.
  989. | Default | Min | Max |
  990. | --- | --- | --- |
  991. | BIQUAD | | |
  992. ---
  993. ### gyro_notch_cutoff
  994. _// TODO_
  995. | Default | Min | Max |
  996. | --- | --- | --- |
  997. | 1 | 1 | 500 |
  998. ---
  999. ### gyro_notch_hz
  1000. _// TODO_
  1001. | Default | Min | Max |
  1002. | --- | --- | --- |
  1003. | 0 | | 500 |
  1004. ---
  1005. ### gyro_to_use
  1006. _// TODO_
  1007. | Default | Min | Max |
  1008. | --- | --- | --- |
  1009. | 0 | 0 | 1 |
  1010. ---
  1011. ### gyro_use_dyn_lpf
  1012. Use Dynamic LPF instead of static gyro stage1 LPF. Dynamic Gyro LPF updates gyro LPF based on the throttle position.
  1013. | Default | Min | Max |
  1014. | --- | --- | --- |
  1015. | OFF | | |
  1016. ---
  1017. ### has_flaps
  1018. Defines is UAV is capable of having flaps. If ON and AIRPLANE `platform_type` is used, **FLAPERON** flight mode will be available for the pilot
  1019. | Default | Min | Max |
  1020. | --- | --- | --- |
  1021. | OFF | | |
  1022. ---
  1023. ### heading_hold_rate_limit
  1024. This setting limits yaw rotation rate that HEADING_HOLD controller can request from PID inner loop controller. It is independent from manual yaw rate and used only when HEADING_HOLD flight mode is enabled by pilot, RTH or WAYPOINT modes.
  1025. | Default | Min | Max |
  1026. | --- | --- | --- |
  1027. | 90 | HEADING_HOLD_RATE_LIMIT_MIN | HEADING_HOLD_RATE_LIMIT_MAX |
  1028. ---
  1029. ### hott_alarm_sound_interval
  1030. Battery alarm delay in seconds for Hott telemetry
  1031. | Default | Min | Max |
  1032. | --- | --- | --- |
  1033. | 5 | 0 | 120 |
  1034. ---
  1035. ### i2c_speed
  1036. This setting controls the clock speed of I2C bus. 400KHZ is the default that most setups are able to use. Some noise-free setups may be overclocked to 800KHZ. Some sensor chips or setups with long wires may work unreliably at 400KHZ - user can try lowering the clock speed to 200KHZ or even 100KHZ. User need to bear in mind that lower clock speeds might require higher looptimes (lower looptime rate)
  1037. | Default | Min | Max |
  1038. | --- | --- | --- |
  1039. | 400KHZ | | |
  1040. ---
  1041. ### ibus_telemetry_type
  1042. Type compatibility ibus telemetry for transmitters. See Telemetry.md label IBUS for details.
  1043. | Default | Min | Max |
  1044. | --- | --- | --- |
  1045. | 0 | 0 | 255 |
  1046. ---
  1047. ### idle_power
  1048. Power draw at zero throttle used for remaining flight time/distance estimation in 0.01W unit
  1049. | Default | Min | Max |
  1050. | --- | --- | --- |
  1051. | 0 | 0 | 65535 |
  1052. ---
  1053. ### imu2_align_pitch
  1054. Pitch alignment for Secondary IMU. 1/10 of a degree
  1055. | Default | Min | Max |
  1056. | --- | --- | --- |
  1057. | 0 | -1800 | 3600 |
  1058. ---
  1059. ### imu2_align_roll
  1060. Roll alignment for Secondary IMU. 1/10 of a degree
  1061. | Default | Min | Max |
  1062. | --- | --- | --- |
  1063. | 0 | -1800 | 3600 |
  1064. ---
  1065. ### imu2_align_yaw
  1066. Yaw alignment for Secondary IMU. 1/10 of a degree
  1067. | Default | Min | Max |
  1068. | --- | --- | --- |
  1069. | 0 | -1800 | 3600 |
  1070. ---
  1071. ### imu2_gain_acc_x
  1072. Secondary IMU ACC calibration data
  1073. | Default | Min | Max |
  1074. | --- | --- | --- |
  1075. | 0 | -32768 | 32767 |
  1076. ---
  1077. ### imu2_gain_acc_y
  1078. Secondary IMU ACC calibration data
  1079. | Default | Min | Max |
  1080. | --- | --- | --- |
  1081. | 0 | -32768 | 32767 |
  1082. ---
  1083. ### imu2_gain_acc_z
  1084. Secondary IMU ACC calibration data
  1085. | Default | Min | Max |
  1086. | --- | --- | --- |
  1087. | 0 | -32768 | 32767 |
  1088. ---
  1089. ### imu2_gain_mag_x
  1090. Secondary IMU MAG calibration data
  1091. | Default | Min | Max |
  1092. | --- | --- | --- |
  1093. | 0 | -32768 | 32767 |
  1094. ---
  1095. ### imu2_gain_mag_y
  1096. Secondary IMU MAG calibration data
  1097. | Default | Min | Max |
  1098. | --- | --- | --- |
  1099. | 0 | -32768 | 32767 |
  1100. ---
  1101. ### imu2_gain_mag_z
  1102. Secondary IMU MAG calibration data
  1103. | Default | Min | Max |
  1104. | --- | --- | --- |
  1105. | 0 | -32768 | 32767 |
  1106. ---
  1107. ### imu2_hardware
  1108. Selection of a Secondary IMU hardware type. NONE disables this functionality
  1109. | Default | Min | Max |
  1110. | --- | --- | --- |
  1111. | NONE | | |
  1112. ---
  1113. ### imu2_radius_acc
  1114. Secondary IMU MAG calibration data
  1115. | Default | Min | Max |
  1116. | --- | --- | --- |
  1117. | 0 | -32768 | 32767 |
  1118. ---
  1119. ### imu2_radius_mag
  1120. Secondary IMU MAG calibration data
  1121. | Default | Min | Max |
  1122. | --- | --- | --- |
  1123. | 0 | -32768 | 32767 |
  1124. ---
  1125. ### imu2_use_for_osd_ahi
  1126. If set to ON, Secondary IMU data will be used for Analog OSD Artificial Horizon
  1127. | Default | Min | Max |
  1128. | --- | --- | --- |
  1129. | OFF | | |
  1130. ---
  1131. ### imu2_use_for_osd_heading
  1132. If set to ON, Secondary IMU data will be used for Analog OSD heading
  1133. | Default | Min | Max |
  1134. | --- | --- | --- |
  1135. | OFF | | |
  1136. ---
  1137. ### imu2_use_for_stabilized
  1138. If set to ON, Secondary IMU data will be used for Angle, Horizon and all other modes that control attitude (PosHold, WP, RTH)
  1139. | Default | Min | Max |
  1140. | --- | --- | --- |
  1141. | OFF | | |
  1142. ---
  1143. ### imu_acc_ignore_rate
  1144. Total gyro rotation rate threshold [deg/s] to consider accelerometer trustworthy on airplanes
  1145. | Default | Min | Max |
  1146. | --- | --- | --- |
  1147. | 0 | 0 | 20 |
  1148. ---
  1149. ### imu_acc_ignore_slope
  1150. Half-width of the interval to gradually reduce accelerometer weight. Centered at `imu_acc_ignore_rate` (exactly 50% weight)
  1151. | Default | Min | Max |
  1152. | --- | --- | --- |
  1153. | 0 | 0 | 5 |
  1154. ---
  1155. ### imu_dcm_ki
  1156. Inertial Measurement Unit KI Gain for accelerometer measurements
  1157. | Default | Min | Max |
  1158. | --- | --- | --- |
  1159. | 50 | | 65535 |
  1160. ---
  1161. ### imu_dcm_ki_mag
  1162. Inertial Measurement Unit KI Gain for compass measurements
  1163. | Default | Min | Max |
  1164. | --- | --- | --- |
  1165. | 0 | | 65535 |
  1166. ---
  1167. ### imu_dcm_kp
  1168. Inertial Measurement Unit KP Gain for accelerometer measurements
  1169. | Default | Min | Max |
  1170. | --- | --- | --- |
  1171. | 2500 | | 65535 |
  1172. ---
  1173. ### imu_dcm_kp_mag
  1174. Inertial Measurement Unit KP Gain for compass measurements
  1175. | Default | Min | Max |
  1176. | --- | --- | --- |
  1177. | 10000 | | 65535 |
  1178. ---
  1179. ### inav_allow_dead_reckoning
  1180. Defines if inav will dead-reckon over short GPS outages. May also be useful for indoors OPFLOW navigation
  1181. | Default | Min | Max |
  1182. | --- | --- | --- |
  1183. | OFF | | |
  1184. ---
  1185. ### inav_auto_mag_decl
  1186. Automatic setting of magnetic declination based on GPS position. When used manual magnetic declination is ignored.
  1187. | Default | Min | Max |
  1188. | --- | --- | --- |
  1189. | ON | | |
  1190. ---
  1191. ### inav_baro_epv
  1192. Uncertainty value for barometric sensor [cm]
  1193. | Default | Min | Max |
  1194. | --- | --- | --- |
  1195. | 100 | 0 | 9999 |
  1196. ---
  1197. ### inav_gravity_cal_tolerance
  1198. Unarmed gravity calibration tolerance level. Won't finish the calibration until estimated gravity error falls below this value.
  1199. | Default | Min | Max |
  1200. | --- | --- | --- |
  1201. | 5 | 0 | 255 |
  1202. ---
  1203. ### inav_max_eph_epv
  1204. Maximum uncertainty value until estimated position is considered valid and is used for navigation [cm]
  1205. | Default | Min | Max |
  1206. | --- | --- | --- |
  1207. | 1000 | 0 | 9999 |
  1208. ---
  1209. ### inav_max_surface_altitude
  1210. Max allowed altitude for surface following mode. [cm]
  1211. | Default | Min | Max |
  1212. | --- | --- | --- |
  1213. | 200 | 0 | 1000 |
  1214. ---
  1215. ### inav_reset_altitude
  1216. Defines when relative estimated altitude is reset to zero. Variants - `NEVER` (once reference is acquired it's used regardless); `FIRST_ARM` (keep altitude at zero until firstly armed), `EACH_ARM` (altitude is reset to zero on each arming)
  1217. | Default | Min | Max |
  1218. | --- | --- | --- |
  1219. | FIRST_ARM | | |
  1220. ---
  1221. ### inav_reset_home
  1222. Allows to chose when the home position is reset. Can help prevent resetting home position after accidental mid-air disarm. Possible values are: NEVER, FIRST_ARM and EACH_ARM
  1223. | Default | Min | Max |
  1224. | --- | --- | --- |
  1225. | FIRST_ARM | | |
  1226. ---
  1227. ### inav_use_gps_no_baro
  1228. _// TODO_
  1229. | Default | Min | Max |
  1230. | --- | --- | --- |
  1231. | OFF | | |
  1232. ---
  1233. ### inav_use_gps_velned
  1234. Defined if iNav should use velocity data provided by GPS module for doing position and speed estimation. If set to OFF iNav will fallback to calculating velocity from GPS coordinates. Using native velocity data may improve performance on some GPS modules. Some GPS modules introduce significant delay and using native velocity may actually result in much worse performance.
  1235. | Default | Min | Max |
  1236. | --- | --- | --- |
  1237. | ON | | |
  1238. ---
  1239. ### inav_w_acc_bias
  1240. Weight for accelerometer drift estimation
  1241. | Default | Min | Max |
  1242. | --- | --- | --- |
  1243. | 0.01 | 0 | 1 |
  1244. ---
  1245. ### inav_w_xy_flow_p
  1246. _// TODO_
  1247. | Default | Min | Max |
  1248. | --- | --- | --- |
  1249. | 1.0 | 0 | 100 |
  1250. ---
  1251. ### inav_w_xy_flow_v
  1252. _// TODO_
  1253. | Default | Min | Max |
  1254. | --- | --- | --- |
  1255. | 2.0 | 0 | 100 |
  1256. ---
  1257. ### inav_w_xy_gps_p
  1258. Weight of GPS coordinates in estimated UAV position and speed.
  1259. | Default | Min | Max |
  1260. | --- | --- | --- |
  1261. | 1.0 | 0 | 10 |
  1262. ---
  1263. ### inav_w_xy_gps_v
  1264. Weight of GPS velocity data in estimated UAV speed
  1265. | Default | Min | Max |
  1266. | --- | --- | --- |
  1267. | 2.0 | 0 | 10 |
  1268. ---
  1269. ### inav_w_xy_res_v
  1270. Decay coefficient for estimated velocity when GPS reference for position is lost
  1271. | Default | Min | Max |
  1272. | --- | --- | --- |
  1273. | 0.5 | 0 | 10 |
  1274. ---
  1275. ### inav_w_xyz_acc_p
  1276. _// TODO_
  1277. | Default | Min | Max |
  1278. | --- | --- | --- |
  1279. | 1.0 | 0 | 1 |
  1280. ---
  1281. ### inav_w_z_baro_p
  1282. Weight of barometer measurements in estimated altitude and climb rate
  1283. | Default | Min | Max |
  1284. | --- | --- | --- |
  1285. | 0.35 | 0 | 10 |
  1286. ---
  1287. ### inav_w_z_gps_p
  1288. Weight of GPS altitude measurements in estimated altitude. Setting is used only of airplanes
  1289. | Default | Min | Max |
  1290. | --- | --- | --- |
  1291. | 0.2 | 0 | 10 |
  1292. ---
  1293. ### inav_w_z_gps_v
  1294. Weight of GPS climb rate measurements in estimated climb rate. Setting is used on both airplanes and multirotors. If GPS doesn't support native climb rate reporting (i.e. NMEA GPS) you may consider setting this to zero
  1295. | Default | Min | Max |
  1296. | --- | --- | --- |
  1297. | 0.1 | 0 | 10 |
  1298. ---
  1299. ### inav_w_z_res_v
  1300. Decay coefficient for estimated climb rate when baro/GPS reference for altitude is lost
  1301. | Default | Min | Max |
  1302. | --- | --- | --- |
  1303. | 0.5 | 0 | 10 |
  1304. ---
  1305. ### inav_w_z_surface_p
  1306. _// TODO_
  1307. | Default | Min | Max |
  1308. | --- | --- | --- |
  1309. | 3.5 | 0 | 100 |
  1310. ---
  1311. ### inav_w_z_surface_v
  1312. _// TODO_
  1313. | Default | Min | Max |
  1314. | --- | --- | --- |
  1315. | 6.1 | 0 | 100 |
  1316. ---
  1317. ### iterm_windup
  1318. Used to prevent Iterm accumulation on during maneuvers. Iterm will be dampened when motors are reaching it's limit (when requested motor correction range is above percentage specified by this parameter)
  1319. | Default | Min | Max |
  1320. | --- | --- | --- |
  1321. | 50 | 0 | 90 |
  1322. ---
  1323. ### ledstrip_visual_beeper
  1324. _// TODO_
  1325. | Default | Min | Max |
  1326. | --- | --- | --- |
  1327. | OFF | | |
  1328. ---
  1329. ### limit_attn_filter_cutoff
  1330. Throttle attenuation PI control output filter cutoff frequency
  1331. | Default | Min | Max |
  1332. | --- | --- | --- |
  1333. | 1.2 | | 100 |
  1334. ---
  1335. ### limit_burst_current
  1336. Burst current limit (dA): the current which is allowed during `limit_burst_current_time` after which `limit_cont_current` will be enforced, set to 0 to disable
  1337. | Default | Min | Max |
  1338. | --- | --- | --- |
  1339. | 0 | | 4000 |
  1340. ---
  1341. ### limit_burst_current_falldown_time
  1342. Time slice at the end of the burst time during which the current limit will be ramped down from `limit_burst_current` back down to `limit_cont_current`
  1343. | Default | Min | Max |
  1344. | --- | --- | --- |
  1345. | 0 | | 3000 |
  1346. ---
  1347. ### limit_burst_current_time
  1348. Allowed current burst time (ds) during which `limit_burst_current` is allowed and after which `limit_cont_current` will be enforced
  1349. | Default | Min | Max |
  1350. | --- | --- | --- |
  1351. | 0 | | 3000 |
  1352. ---
  1353. ### limit_burst_power
  1354. Burst power limit (dW): the current which is allowed during `limit_burst_power_time` after which `limit_cont_power` will be enforced, set to 0 to disable
  1355. | Default | Min | Max |
  1356. | --- | --- | --- |
  1357. | 0 | | 40000 |
  1358. ---
  1359. ### limit_burst_power_falldown_time
  1360. Time slice at the end of the burst time during which the power limit will be ramped down from `limit_burst_power` back down to `limit_cont_power`
  1361. | Default | Min | Max |
  1362. | --- | --- | --- |
  1363. | 0 | | 3000 |
  1364. ---
  1365. ### limit_burst_power_time
  1366. Allowed power burst time (ds) during which `limit_burst_power` is allowed and after which `limit_cont_power` will be enforced
  1367. | Default | Min | Max |
  1368. | --- | --- | --- |
  1369. | 0 | | 3000 |
  1370. ---
  1371. ### limit_cont_current
  1372. Continous current limit (dA), set to 0 to disable
  1373. | Default | Min | Max |
  1374. | --- | --- | --- |
  1375. | 0 | | 4000 |
  1376. ---
  1377. ### limit_cont_power
  1378. Continous power limit (dW), set to 0 to disable
  1379. | Default | Min | Max |
  1380. | --- | --- | --- |
  1381. | 0 | | 40000 |
  1382. ---
  1383. ### limit_pi_i
  1384. Throttle attenuation PI control I term
  1385. | Default | Min | Max |
  1386. | --- | --- | --- |
  1387. | 100 | | 10000 |
  1388. ---
  1389. ### limit_pi_p
  1390. Throttle attenuation PI control P term
  1391. | Default | Min | Max |
  1392. | --- | --- | --- |
  1393. | 100 | | 10000 |
  1394. ---
  1395. ### log_level
  1396. Defines serial debugging log level. See `docs/development/serial_printf_debugging.md` for usage.
  1397. | Default | Min | Max |
  1398. | --- | --- | --- |
  1399. | ERROR | | |
  1400. ---
  1401. ### log_topics
  1402. Defines serial debugging log topic. See `docs/development/serial_printf_debugging.md` for usage.
  1403. | Default | Min | Max |
  1404. | --- | --- | --- |
  1405. | 0 | 0 | 4294967295 |
  1406. ---
  1407. ### looptime
  1408. This is the main loop time (in us). Changing this affects PID effect with some PID controllers (see PID section for details). A very conservative value of 3500us/285Hz should work for everyone. Setting it to zero does not limit loop time, so it will go as fast as possible.
  1409. | Default | Min | Max |
  1410. | --- | --- | --- |
  1411. | 1000 | | 9000 |
  1412. ---
  1413. ### ltm_update_rate
  1414. Defines the LTM update rate (use of bandwidth [NORMAL/MEDIUM/SLOW]). See Telemetry.md, LTM section for details.
  1415. | Default | Min | Max |
  1416. | --- | --- | --- |
  1417. | NORMAL | | |
  1418. ---
  1419. ### mag_calibration_time
  1420. Adjust how long time the Calibration of mag will last.
  1421. | Default | Min | Max |
  1422. | --- | --- | --- |
  1423. | 30 | 20 | 120 |
  1424. ---
  1425. ### mag_declination
  1426. Current location magnetic declination in format. For example, -6deg 37min = -637 for Japan. Leading zero in ddd not required. Get your local magnetic declination here: http://magnetic-declination.com/ . Not in use if inav_auto_mag_decl is turned on and you acquire valid GPS fix.
  1427. | Default | Min | Max |
  1428. | --- | --- | --- |
  1429. | 0 | -18000 | 18000 |
  1430. ---
  1431. ### mag_hardware
  1432. Selection of mag hardware. See Wiki Sensor auto detect and hardware failure detection for more info
  1433. | Default | Min | Max |
  1434. | --- | --- | --- |
  1435. | AUTO | | |
  1436. ---
  1437. ### mag_to_use
  1438. Allow to chose between built-in and external compass sensor if they are connected to separate buses. Currently only for REVO target
  1439. | Default | Min | Max |
  1440. | --- | --- | --- |
  1441. | 0 | 0 | 1 |
  1442. ---
  1443. ### maggain_x
  1444. Magnetometer calibration X gain. If 1024, no calibration or calibration failed
  1445. | Default | Min | Max |
  1446. | --- | --- | --- |
  1447. | 1024 | -32768 | 32767 |
  1448. ---
  1449. ### maggain_y
  1450. Magnetometer calibration Y gain. If 1024, no calibration or calibration failed
  1451. | Default | Min | Max |
  1452. | --- | --- | --- |
  1453. | 1024 | -32768 | 32767 |
  1454. ---
  1455. ### maggain_z
  1456. Magnetometer calibration Z gain. If 1024, no calibration or calibration failed
  1457. | Default | Min | Max |
  1458. | --- | --- | --- |
  1459. | 1024 | -32768 | 32767 |
  1460. ---
  1461. ### magzero_x
  1462. Magnetometer calibration X offset. If its 0 none offset has been applied and calibration is failed.
  1463. | Default | Min | Max |
  1464. | --- | --- | --- |
  1465. | 0 | -32768 | 32767 |
  1466. ---
  1467. ### magzero_y
  1468. Magnetometer calibration Y offset. If its 0 none offset has been applied and calibration is failed.
  1469. | Default | Min | Max |
  1470. | --- | --- | --- |
  1471. | 0 | -32768 | 32767 |
  1472. ---
  1473. ### magzero_z
  1474. Magnetometer calibration Z offset. If its 0 none offset has been applied and calibration is failed.
  1475. | Default | Min | Max |
  1476. | --- | --- | --- |
  1477. | 0 | -32768 | 32767 |
  1478. ---
  1479. ### manual_pitch_rate
  1480. Servo travel multiplier for the PITCH axis in `MANUAL` flight mode [0-100]%
  1481. | Default | Min | Max |
  1482. | --- | --- | --- |
  1483. | 100 | 0 | 100 |
  1484. ---
  1485. ### manual_rc_expo
  1486. Exposition value used for the PITCH/ROLL axes by the `MANUAL` flight mode [0-100]
  1487. | Default | Min | Max |
  1488. | --- | --- | --- |
  1489. | 70 | 0 | 100 |
  1490. ---
  1491. ### manual_rc_yaw_expo
  1492. Exposition value used for the YAW axis by the `MANUAL` flight mode [0-100]
  1493. | Default | Min | Max |
  1494. | --- | --- | --- |
  1495. | 20 | 0 | 100 |
  1496. ---
  1497. ### manual_roll_rate
  1498. Servo travel multiplier for the ROLL axis in `MANUAL` flight mode [0-100]%
  1499. | Default | Min | Max |
  1500. | --- | --- | --- |
  1501. | 100 | 0 | 100 |
  1502. ---
  1503. ### manual_yaw_rate
  1504. Servo travel multiplier for the YAW axis in `MANUAL` flight mode [0-100]%
  1505. | Default | Min | Max |
  1506. | --- | --- | --- |
  1507. | 100 | 0 | 100 |
  1508. ---
  1509. ### mavlink_ext_status_rate
  1510. _// TODO_
  1511. | Default | Min | Max |
  1512. | --- | --- | --- |
  1513. | 2 | 0 | 255 |
  1514. ---
  1515. ### mavlink_extra1_rate
  1516. _// TODO_
  1517. | Default | Min | Max |
  1518. | --- | --- | --- |
  1519. | 10 | 0 | 255 |
  1520. ---
  1521. ### mavlink_extra2_rate
  1522. _// TODO_
  1523. | Default | Min | Max |
  1524. | --- | --- | --- |
  1525. | 2 | 0 | 255 |
  1526. ---
  1527. ### mavlink_extra3_rate
  1528. _// TODO_
  1529. | Default | Min | Max |
  1530. | --- | --- | --- |
  1531. | 1 | 0 | 255 |
  1532. ---
  1533. ### mavlink_pos_rate
  1534. _// TODO_
  1535. | Default | Min | Max |
  1536. | --- | --- | --- |
  1537. | 2 | 0 | 255 |
  1538. ---
  1539. ### mavlink_rc_chan_rate
  1540. _// TODO_
  1541. | Default | Min | Max |
  1542. | --- | --- | --- |
  1543. | 5 | 0 | 255 |
  1544. ---
  1545. ### mavlink_version
  1546. Version of MAVLink to use
  1547. | Default | Min | Max |
  1548. | --- | --- | --- |
  1549. | 2 | 1 | 2 |
  1550. ---
  1551. ### max_angle_inclination_pit
  1552. Maximum inclination in level (angle) mode (PITCH axis). 100=10°
  1553. | Default | Min | Max |
  1554. | --- | --- | --- |
  1555. | 300 | 100 | 900 |
  1556. ---
  1557. ### max_angle_inclination_rll
  1558. Maximum inclination in level (angle) mode (ROLL axis). 100=10°
  1559. | Default | Min | Max |
  1560. | --- | --- | --- |
  1561. | 300 | 100 | 900 |
  1562. ---
  1563. ### max_check
  1564. These are min/max values (in us) which, when a channel is smaller (min) or larger (max) than the value will activate various RC commands, such as arming, or stick configuration. Normally, every RC channel should be set so that min = 1000us, max = 2000us. On most transmitters this usually means 125% endpoints. Default check values are 100us above/below this value.
  1565. | Default | Min | Max |
  1566. | --- | --- | --- |
  1567. | 1900 | PWM_RANGE_MIN | PWM_RANGE_MAX |
  1568. ---
  1569. ### max_throttle
  1570. This is the maximum value (in us) sent to esc when armed. Default of 1850 are OK for everyone (legacy). For modern ESCs, higher values (c. 2000) may be more appropriate. If you have brushed motors, the value should be set to 2000.
  1571. | Default | Min | Max |
  1572. | --- | --- | --- |
  1573. | 1850 | PWM_RANGE_MIN | PWM_RANGE_MAX |
  1574. ---
  1575. ### mc_cd_lpf_hz
  1576. Cutoff frequency for Control Derivative. Lower value smoother reaction on fast stick movements. With higher values, response will be more aggressive, jerky
  1577. | Default | Min | Max |
  1578. | --- | --- | --- |
  1579. | 30 | 0 | 200 |
  1580. ---
  1581. ### mc_cd_pitch
  1582. Multicopter Control Derivative gain for PITCH
  1583. | Default | Min | Max |
  1584. | --- | --- | --- |
  1585. | 60 | 0 | 255 |
  1586. ---
  1587. ### mc_cd_roll
  1588. Multicopter Control Derivative gain for ROLL
  1589. | Default | Min | Max |
  1590. | --- | --- | --- |
  1591. | 60 | 0 | 255 |
  1592. ---
  1593. ### mc_cd_yaw
  1594. Multicopter Control Derivative gain for YAW
  1595. | Default | Min | Max |
  1596. | --- | --- | --- |
  1597. | 60 | 0 | 255 |
  1598. ---
  1599. ### mc_d_level
  1600. Multicopter attitude stabilisation HORIZON transition point
  1601. | Default | Min | Max |
  1602. | --- | --- | --- |
  1603. | 75 | 0 | 255 |
  1604. ---
  1605. ### mc_d_pitch
  1606. Multicopter rate stabilisation D-gain for PITCH
  1607. | Default | Min | Max |
  1608. | --- | --- | --- |
  1609. | 23 | 0 | 255 |
  1610. ---
  1611. ### mc_d_roll
  1612. Multicopter rate stabilisation D-gain for ROLL
  1613. | Default | Min | Max |
  1614. | --- | --- | --- |
  1615. | 23 | 0 | 255 |
  1616. ---
  1617. ### mc_d_yaw
  1618. Multicopter rate stabilisation D-gain for YAW
  1619. | Default | Min | Max |
  1620. | --- | --- | --- |
  1621. | 0 | 0 | 255 |
  1622. ---
  1623. ### mc_i_level
  1624. Multicopter attitude stabilisation low-pass filter cutoff
  1625. | Default | Min | Max |
  1626. | --- | --- | --- |
  1627. | 15 | 0 | 255 |
  1628. ---
  1629. ### mc_i_pitch
  1630. Multicopter rate stabilisation I-gain for PITCH
  1631. | Default | Min | Max |
  1632. | --- | --- | --- |
  1633. | 30 | 0 | 255 |
  1634. ---
  1635. ### mc_i_roll
  1636. Multicopter rate stabilisation I-gain for ROLL
  1637. | Default | Min | Max |
  1638. | --- | --- | --- |
  1639. | 30 | 0 | 255 |
  1640. ---
  1641. ### mc_i_yaw
  1642. Multicopter rate stabilisation I-gain for YAW
  1643. | Default | Min | Max |
  1644. | --- | --- | --- |
  1645. | 45 | 0 | 255 |
  1646. ---
  1647. ### mc_iterm_relax
  1648. _// TODO_
  1649. | Default | Min | Max |
  1650. | --- | --- | --- |
  1651. | RP | | |
  1652. ---
  1653. ### mc_iterm_relax_cutoff
  1654. _// TODO_
  1655. | Default | Min | Max |
  1656. | --- | --- | --- |
  1657. | 15 | 1 | 100 |
  1658. ---
  1659. ### mc_p_level
  1660. Multicopter attitude stabilisation P-gain
  1661. | Default | Min | Max |
  1662. | --- | --- | --- |
  1663. | 20 | 0 | 255 |
  1664. ---
  1665. ### mc_p_pitch
  1666. Multicopter rate stabilisation P-gain for PITCH
  1667. | Default | Min | Max |
  1668. | --- | --- | --- |
  1669. | 40 | 0 | 255 |
  1670. ---
  1671. ### mc_p_roll
  1672. Multicopter rate stabilisation P-gain for ROLL
  1673. | Default | Min | Max |
  1674. | --- | --- | --- |
  1675. | 40 | 0 | 255 |
  1676. ---
  1677. ### mc_p_yaw
  1678. Multicopter rate stabilisation P-gain for YAW
  1679. | Default | Min | Max |
  1680. | --- | --- | --- |
  1681. | 85 | 0 | 255 |
  1682. ---
  1683. ### min_check
  1684. These are min/max values (in us) which, when a channel is smaller (min) or larger (max) than the value will activate various RC commands, such as arming, or stick configuration. Normally, every RC channel should be set so that min = 1000us, max = 2000us. On most transmitters this usually means 125% endpoints. Default check values are 100us above/below this value.
  1685. | Default | Min | Max |
  1686. | --- | --- | --- |
  1687. | 1100 | PWM_RANGE_MIN | PWM_RANGE_MAX |
  1688. ---
  1689. ### min_command
  1690. This is the PWM value sent to ESCs when they are not armed. If ESCs beep slowly when powered up, try decreasing this value. It can also be used for calibrating all ESCs at once.
  1691. | Default | Min | Max |
  1692. | --- | --- | --- |
  1693. | 1000 | 0 | PWM_RANGE_MAX |
  1694. ---
  1695. ### mode_range_logic_operator
  1696. Control how Mode selection works in flight modes. If you example have Angle mode configured on two different Aux channels, this controls if you need both activated ( AND ) or if you only need one activated ( OR ) to active angle mode.
  1697. | Default | Min | Max |
  1698. | --- | --- | --- |
  1699. | OR | | |
  1700. ---
  1701. ### model_preview_type
  1702. ID of mixer preset applied in a Configurator. **Do not modify manually**. Used only for backup/restore reasons.
  1703. | Default | Min | Max |
  1704. | --- | --- | --- |
  1705. | -1 | -1 | 32767 |
  1706. ---
  1707. ### moron_threshold
  1708. When powering up, gyro bias is calculated. If the model is shaking/moving during this initial calibration, offsets are calculated incorrectly, and could lead to poor flying performance. This threshold means how much average gyro reading could differ before re-calibration is triggered.
  1709. | Default | Min | Max |
  1710. | --- | --- | --- |
  1711. | 32 | | 128 |
  1712. ---
  1713. ### motor_direction_inverted
  1714. Use if you need to inverse yaw motor direction.
  1715. | Default | Min | Max |
  1716. | --- | --- | --- |
  1717. | OFF | | |
  1718. ---
  1719. ### motor_poles
  1720. The number of motor poles. Required to compute motor RPM
  1721. | Default | Min | Max |
  1722. | --- | --- | --- |
  1723. | 14 | 4 | 255 |
  1724. ---
  1725. ### motor_pwm_protocol
  1726. Protocol that is used to send motor updates to ESCs. Possible values - STANDARD, ONESHOT125, ONESHOT42, MULTISHOT, DSHOT150, DSHOT300, DSHOT600, DSHOT1200, BRUSHED
  1727. | Default | Min | Max |
  1728. | --- | --- | --- |
  1729. | ONESHOT125 | | |
  1730. ---
  1731. ### motor_pwm_rate
  1732. Output frequency (in Hz) for motor pins. Default is 400Hz for motor with motor_pwm_protocol set to STANDARD. For *SHOT (e.g. ONESHOT125) values of 1000 and 2000 have been tested by the development team and are supported. It may be possible to use higher values. For BRUSHED values of 8000 and above should be used. Setting to 8000 will use brushed mode at 8kHz switching frequency. Up to 32kHz is supported for brushed. Default is 16000 for boards with brushed motors. Note, that in brushed mode, minthrottle is offset to zero. For brushed mode, set max_throttle to 2000.
  1733. | Default | Min | Max |
  1734. | --- | --- | --- |
  1735. | 400 | 50 | 32000 |
  1736. ---
  1737. ### msp_override_channels
  1738. Mask of RX channels that may be overridden by MSP `SET_RAW_RC`. Note that this requires custom firmware with `USE_RX_MSP` and `USE_MSP_RC_OVERRIDE` compile options and the `MSP RC Override` flight mode.
  1739. | Default | Min | Max |
  1740. | --- | --- | --- |
  1741. | 0 | 0 | 65535 |
  1742. ---
  1743. ### name
  1744. Craft name
  1745. | Default | Min | Max |
  1746. | --- | --- | --- |
  1747. | _empty_ | | |
  1748. ---
  1749. ### nav_auto_climb_rate
  1750. Maximum climb/descent rate that UAV is allowed to reach during navigation modes. [cm/s]
  1751. | Default | Min | Max |
  1752. | --- | --- | --- |
  1753. | 500 | 10 | 2000 |
  1754. ---
  1755. ### nav_auto_speed
  1756. Maximum velocity firmware is allowed in full auto modes (RTH, WP) [cm/s] [Multirotor only]
  1757. | Default | Min | Max |
  1758. | --- | --- | --- |
  1759. | 300 | 10 | 2000 |
  1760. ---
  1761. ### nav_disarm_on_landing
  1762. If set to ON, iNav disarms the FC after landing
  1763. | Default | Min | Max |
  1764. | --- | --- | --- |
  1765. | OFF | | |
  1766. ---
  1767. ### nav_emerg_landing_speed
  1768. Rate of descent UAV will try to maintain when doing emergency descent sequence [cm/s]
  1769. | Default | Min | Max |
  1770. | --- | --- | --- |
  1771. | 500 | 100 | 2000 |
  1772. ---
  1773. ### nav_extra_arming_safety
  1774. If set to ON drone won't arm if no GPS fix and any navigation mode like RTH or POSHOLD is configured. ALLOW_BYPASS allows the user to momentarily disable this check by holding yaw high (left stick held at the bottom right in mode 2) when switch arming is used
  1775. | Default | Min | Max |
  1776. | --- | --- | --- |
  1777. | ON | | |
  1778. ---
  1779. ### nav_fw_allow_manual_thr_increase
  1780. Enable the possibility to manually increase the throttle in auto throttle controlled modes for fixed wing
  1781. | Default | Min | Max |
  1782. | --- | --- | --- |
  1783. | OFF | | |
  1784. ---
  1785. ### nav_fw_bank_angle
  1786. Max roll angle when rolling / turning in GPS assisted modes, is also restrained by global max_angle_inclination_rll
  1787. | Default | Min | Max |
  1788. | --- | --- | --- |
  1789. | 35 | 5 | 80 |
  1790. ---
  1791. ### nav_fw_climb_angle
  1792. Max pitch angle when climbing in GPS assisted modes, is also restrained by global max_angle_inclination_pit
  1793. | Default | Min | Max |
  1794. | --- | --- | --- |
  1795. | 20 | 5 | 80 |
  1796. ---
  1797. ### nav_fw_control_smoothness
  1798. How smoothly the autopilot controls the airplane to correct the navigation error
  1799. | Default | Min | Max |
  1800. | --- | --- | --- |
  1801. | 0 | 0 | 9 |
  1802. ---
  1803. ### nav_fw_cruise_speed
  1804. Speed for the plane/wing at cruise throttle used for remaining flight time/distance estimation in cm/s
  1805. | Default | Min | Max |
  1806. | --- | --- | --- |
  1807. | 0 | 0 | 65535 |
  1808. ---
  1809. ### nav_fw_cruise_thr
  1810. Cruise throttle in GPS assisted modes, this includes RTH. Should be set high enough to avoid stalling. This values gives INAV a base for throttle when flying straight, and it will increase or decrease throttle based on pitch of airplane and the parameters below. In addition it will increase throttle if GPS speed gets below 7m/s ( hardcoded )
  1811. | Default | Min | Max |
  1812. | --- | --- | --- |
  1813. | 1400 | 1000 | 2000 |
  1814. ---
  1815. ### nav_fw_cruise_yaw_rate
  1816. Max YAW rate when NAV CRUISE mode is enabled (0=disable control via yaw stick) [dps]
  1817. | Default | Min | Max |
  1818. | --- | --- | --- |
  1819. | 20 | 0 | 60 |
  1820. ---
  1821. ### nav_fw_dive_angle
  1822. Max negative pitch angle when diving in GPS assisted modes, is also restrained by global max_angle_inclination_pit
  1823. | Default | Min | Max |
  1824. | --- | --- | --- |
  1825. | 15 | 5 | 80 |
  1826. ---
  1827. ### nav_fw_heading_p
  1828. P gain of Heading Hold controller (Fixedwing)
  1829. | Default | Min | Max |
  1830. | --- | --- | --- |
  1831. | 60 | 0 | 255 |
  1832. ---
  1833. ### nav_fw_land_dive_angle
  1834. Dive angle that airplane will use during final landing phase. During dive phase, motor is stopped or IDLE and roll control is locked to 0 degrees
  1835. | Default | Min | Max |
  1836. | --- | --- | --- |
  1837. | 2 | -20 | 20 |
  1838. ---
  1839. ### nav_fw_launch_accel
  1840. Forward acceleration threshold for bungee launch of throw launch [cm/s/s], 1G = 981 cm/s/s
  1841. | Default | Min | Max |
  1842. | --- | --- | --- |
  1843. | 1863 | 1000 | 20000 |
  1844. ---
  1845. ### nav_fw_launch_climb_angle
  1846. Climb angle (attitude of model, not climb slope) for launch sequence (degrees), is also restrained by global max_angle_inclination_pit
  1847. | Default | Min | Max |
  1848. | --- | --- | --- |
  1849. | 18 | 5 | 45 |
  1850. ---
  1851. ### nav_fw_launch_detect_time
  1852. Time for which thresholds have to breached to consider launch happened [ms]
  1853. | Default | Min | Max |
  1854. | --- | --- | --- |
  1855. | 40 | 10 | 1000 |
  1856. ---
  1857. ### nav_fw_launch_end_time
  1858. Time for the transition of throttle and pitch angle, between the launch state and the subsequent flight mode [ms]
  1859. | Default | Min | Max |
  1860. | --- | --- | --- |
  1861. | 3000 | 0 | 5000 |
  1862. ---
  1863. ### nav_fw_launch_idle_motor_delay
  1864. Delay between raising throttle and motor starting at idle throttle (ms)
  1865. | Default | Min | Max |
  1866. | --- | --- | --- |
  1867. | 0 | 0 | 60000 |
  1868. ---
  1869. ### nav_fw_launch_idle_thr
  1870. Launch idle throttle - throttle to be set before launch sequence is initiated. If set below minimum throttle it will force motor stop or at idle throttle (depending if the MOTOR_STOP is enabled). If set above minimum throttle it will force throttle to this value (if MOTOR_STOP is enabled it will be handled according to throttle stick position)
  1871. | Default | Min | Max |
  1872. | --- | --- | --- |
  1873. | 1000 | 1000 | 2000 |
  1874. ---
  1875. ### nav_fw_launch_max_altitude
  1876. Altitude (centimeters) at which LAUNCH mode will be turned off and regular flight mode will take over [0-60000].
  1877. | Default | Min | Max |
  1878. | --- | --- | --- |
  1879. | 0 | 0 | 60000 |
  1880. ---
  1881. ### nav_fw_launch_max_angle
  1882. Max tilt angle (pitch/roll combined) to consider launch successful. Set to 180 to disable completely [deg]
  1883. | Default | Min | Max |
  1884. | --- | --- | --- |
  1885. | 45 | 5 | 180 |
  1886. ---
  1887. ### nav_fw_launch_min_time
  1888. Allow launch mode to execute at least this time (ms) and ignore stick movements [0-60000].
  1889. | Default | Min | Max |
  1890. | --- | --- | --- |
  1891. | 0 | 0 | 60000 |
  1892. ---
  1893. ### nav_fw_launch_motor_delay
  1894. Delay between detected launch and launch sequence start and throttling up (ms)
  1895. | Default | Min | Max |
  1896. | --- | --- | --- |
  1897. | 500 | 0 | 5000 |
  1898. ---
  1899. ### nav_fw_launch_spinup_time
  1900. Time to bring power from minimum throttle to nav_fw_launch_thr - to avoid big stress on ESC and large torque from propeller
  1901. | Default | Min | Max |
  1902. | --- | --- | --- |
  1903. | 100 | 0 | 1000 |
  1904. ---
  1905. ### nav_fw_launch_thr
  1906. Launch throttle - throttle to be set during launch sequence (pwm units)
  1907. | Default | Min | Max |
  1908. | --- | --- | --- |
  1909. | 1700 | 1000 | 2000 |
  1910. ---
  1911. ### nav_fw_launch_timeout
  1912. Maximum time for launch sequence to be executed. After this time LAUNCH mode will be turned off and regular flight mode will take over (ms)
  1913. | Default | Min | Max |
  1914. | --- | --- | --- |
  1915. | 5000 | | 60000 |
  1916. ---
  1917. ### nav_fw_launch_velocity
  1918. Forward velocity threshold for swing-launch detection [cm/s]
  1919. | Default | Min | Max |
  1920. | --- | --- | --- |
  1921. | 300 | 100 | 10000 |
  1922. ---
  1923. ### nav_fw_loiter_radius
  1924. PosHold radius. 3000 to 7500 is a good value (30-75m) [cm]
  1925. | Default | Min | Max |
  1926. | --- | --- | --- |
  1927. | 7500 | 0 | 30000 |
  1928. ---
  1929. ### nav_fw_max_thr
  1930. Maximum throttle for flying wing in GPS assisted modes
  1931. | Default | Min | Max |
  1932. | --- | --- | --- |
  1933. | 1700 | 1000 | 2000 |
  1934. ---
  1935. ### nav_fw_min_thr
  1936. Minimum throttle for flying wing in GPS assisted modes
  1937. | Default | Min | Max |
  1938. | --- | --- | --- |
  1939. | 1200 | 1000 | 2000 |
  1940. ---
  1941. ### nav_fw_pitch2thr
  1942. Amount of throttle applied related to pitch attitude in GPS assisted modes. Throttle = nav_fw_cruise_throttle - (nav_fw_pitch2thr * pitch_angle). (notice that pitch_angle is in degrees and is negative when climbing and positive when diving, and throttle value is constrained between nav_fw_min_thr and nav_fw_max_thr)
  1943. | Default | Min | Max |
  1944. | --- | --- | --- |
  1945. | 10 | 0 | 100 |
  1946. ---
  1947. ### nav_fw_pitch2thr_smoothing
  1948. How smoothly the autopilot makes pitch to throttle correction inside a deadband defined by pitch_to_throttle_thresh.
  1949. | Default | Min | Max |
  1950. | --- | --- | --- |
  1951. | 6 | 0 | 9 |
  1952. ---
  1953. ### nav_fw_pitch2thr_threshold
  1954. Threshold from average pitch where momentary pitch_to_throttle correction kicks in. [decidegrees]
  1955. | Default | Min | Max |
  1956. | --- | --- | --- |
  1957. | 50 | 0 | 900 |
  1958. ---
  1959. ### nav_fw_pos_hdg_d
  1960. D gain of heading trajectory PID controller. (Fixedwing, rovers, boats)
  1961. | Default | Min | Max |
  1962. | --- | --- | --- |
  1963. | 0 | 0 | 255 |
  1964. ---
  1965. ### nav_fw_pos_hdg_i
  1966. I gain of heading trajectory PID controller. (Fixedwing, rovers, boats)
  1967. | Default | Min | Max |
  1968. | --- | --- | --- |
  1969. | 2 | 0 | 255 |
  1970. ---
  1971. ### nav_fw_pos_hdg_p
  1972. P gain of heading PID controller. (Fixedwing, rovers, boats)
  1973. | Default | Min | Max |
  1974. | --- | --- | --- |
  1975. | 30 | 0 | 255 |
  1976. ---
  1977. ### nav_fw_pos_hdg_pidsum_limit
  1978. Output limit for heading trajectory PID controller. (Fixedwing, rovers, boats)
  1979. | Default | Min | Max |
  1980. | --- | --- | --- |
  1981. | 350 | PID_SUM_LIMIT_MIN | PID_SUM_LIMIT_MAX |
  1982. ---
  1983. ### nav_fw_pos_xy_d
  1984. D gain of 2D trajectory PID controller. Too high and there will be overshoot in trajectory. Better start tuning with zero
  1985. | Default | Min | Max |
  1986. | --- | --- | --- |
  1987. | 8 | 0 | 255 |
  1988. ---
  1989. ### nav_fw_pos_xy_i
  1990. I gain of 2D trajectory PID controller. Too high and there will be overshoot in trajectory. Better start tuning with zero
  1991. | Default | Min | Max |
  1992. | --- | --- | --- |
  1993. | 5 | 0 | 255 |
  1994. ---
  1995. ### nav_fw_pos_xy_p
  1996. P gain of 2D trajectory PID controller. Play with this to get a straight line between waypoints or a straight RTH
  1997. | Default | Min | Max |
  1998. | --- | --- | --- |
  1999. | 75 | 0 | 255 |
  2000. ---
  2001. ### nav_fw_pos_z_d
  2002. D gain of altitude PID controller (Fixedwing)
  2003. | Default | Min | Max |
  2004. | --- | --- | --- |
  2005. | 10 | 0 | 255 |
  2006. ---
  2007. ### nav_fw_pos_z_i
  2008. I gain of altitude PID controller (Fixedwing)
  2009. | Default | Min | Max |
  2010. | --- | --- | --- |
  2011. | 5 | 0 | 255 |
  2012. ---
  2013. ### nav_fw_pos_z_p
  2014. P gain of altitude PID controller (Fixedwing)
  2015. | Default | Min | Max |
  2016. | --- | --- | --- |
  2017. | 40 | 0 | 255 |
  2018. ---
  2019. ### nav_fw_yaw_deadband
  2020. Deadband for heading trajectory PID controller. When heading error is below the deadband, controller assumes that vehicle is on course
  2021. | Default | Min | Max |
  2022. | --- | --- | --- |
  2023. | 0 | 0 | 90 |
  2024. ---
  2025. ### nav_land_maxalt_vspd
  2026. Vertical descent velocity above nav_land_slowdown_maxalt during the RTH landing phase. [cm/s]
  2027. | Default | Min | Max |
  2028. | --- | --- | --- |
  2029. | 200 | 100 | 2000 |
  2030. ---
  2031. ### nav_land_minalt_vspd
  2032. Vertical descent velocity under nav_land_slowdown_minalt during the RTH landing phase. [cm/s]
  2033. | Default | Min | Max |
  2034. | --- | --- | --- |
  2035. | 50 | 50 | 500 |
  2036. ---
  2037. ### nav_land_slowdown_maxalt
  2038. Defines at what altitude the descent velocity should start to ramp down from `nav_land_maxalt_vspd` to `nav_land_minalt_vspd` during the RTH landing phase [cm]
  2039. | Default | Min | Max |
  2040. | --- | --- | --- |
  2041. | 2000 | 500 | 4000 |
  2042. ---
  2043. ### nav_land_slowdown_minalt
  2044. Defines at what altitude the descent velocity should start to be `nav_land_minalt_vspd` [cm]
  2045. | Default | Min | Max |
  2046. | --- | --- | --- |
  2047. | 500 | 50 | 1000 |
  2048. ---
  2049. ### nav_manual_climb_rate
  2050. Maximum climb/descent rate firmware is allowed when processing pilot input for ALTHOLD control mode [cm/s]
  2051. | Default | Min | Max |
  2052. | --- | --- | --- |
  2053. | 200 | 10 | 2000 |
  2054. ---
  2055. ### nav_manual_speed
  2056. Maximum velocity firmware is allowed when processing pilot input for POSHOLD/CRUISE control mode [cm/s] [Multirotor only]
  2057. | Default | Min | Max |
  2058. | --- | --- | --- |
  2059. | 500 | 10 | 2000 |
  2060. ---
  2061. ### nav_max_altitude
  2062. Max allowed altitude (above Home Point) that applies to all NAV modes (including Altitude Hold). 0 means limit is disabled
  2063. | Default | Min | Max |
  2064. | --- | --- | --- |
  2065. | 0 | 0 | 65000 |
  2066. ---
  2067. ### nav_max_terrain_follow_alt
  2068. Max allowed above the ground altitude for terrain following mode
  2069. | Default | Min | Max |
  2070. | --- | --- | --- |
  2071. | 100 | | 1000 |
  2072. ---
  2073. ### nav_mc_auto_disarm_delay
  2074. Delay before multi-rotor disarms when `nav_disarm_on_landing` is set (m/s)
  2075. | Default | Min | Max |
  2076. | --- | --- | --- |
  2077. | 2000 | 100 | 10000 |
  2078. ---
  2079. ### nav_mc_bank_angle
  2080. Maximum banking angle (deg) that multicopter navigation is allowed to set. Machine must be able to satisfy this angle without loosing altitude
  2081. | Default | Min | Max |
  2082. | --- | --- | --- |
  2083. | 30 | 15 | 45 |
  2084. ---
  2085. ### nav_mc_braking_bank_angle
  2086. max angle that MR is allowed to bank in BOOST mode
  2087. | Default | Min | Max |
  2088. | --- | --- | --- |
  2089. | 40 | 15 | 60 |
  2090. ---
  2091. ### nav_mc_braking_boost_disengage_speed
  2092. BOOST will be disabled when speed goes below this value
  2093. | Default | Min | Max |
  2094. | --- | --- | --- |
  2095. | 100 | 0 | 1000 |
  2096. ---
  2097. ### nav_mc_braking_boost_factor
  2098. acceleration factor for BOOST phase
  2099. | Default | Min | Max |
  2100. | --- | --- | --- |
  2101. | 100 | 0 | 200 |
  2102. ---
  2103. ### nav_mc_braking_boost_speed_threshold
  2104. BOOST can be enabled when speed is above this value
  2105. | Default | Min | Max |
  2106. | --- | --- | --- |
  2107. | 150 | 100 | 1000 |
  2108. ---
  2109. ### nav_mc_braking_boost_timeout
  2110. how long in ms BOOST phase can happen
  2111. | Default | Min | Max |
  2112. | --- | --- | --- |
  2113. | 750 | 0 | 5000 |
  2114. ---
  2115. ### nav_mc_braking_disengage_speed
  2116. braking is disabled when speed goes below this value
  2117. | Default | Min | Max |
  2118. | --- | --- | --- |
  2119. | 75 | 0 | 1000 |
  2120. ---
  2121. ### nav_mc_braking_speed_threshold
  2122. min speed in cm/s above which braking can happen
  2123. | Default | Min | Max |
  2124. | --- | --- | --- |
  2125. | 100 | 0 | 1000 |
  2126. ---
  2127. ### nav_mc_braking_timeout
  2128. timeout in ms for braking
  2129. | Default | Min | Max |
  2130. | --- | --- | --- |
  2131. | 2000 | 100 | 5000 |
  2132. ---
  2133. ### nav_mc_heading_p
  2134. P gain of Heading Hold controller (Multirotor)
  2135. | Default | Min | Max |
  2136. | --- | --- | --- |
  2137. | 60 | 0 | 255 |
  2138. ---
  2139. ### nav_mc_hover_thr
  2140. Multicopter hover throttle hint for altitude controller. Should be set to approximate throttle value when drone is hovering.
  2141. | Default | Min | Max |
  2142. | --- | --- | --- |
  2143. | 1500 | 1000 | 2000 |
  2144. ---
  2145. ### nav_mc_pos_deceleration_time
  2146. Used for stoping distance calculation. Stop position is computed as _speed_ * _nav_mc_pos_deceleration_time_ from the place where sticks are released. Braking mode overrides this setting
  2147. | Default | Min | Max |
  2148. | --- | --- | --- |
  2149. | 120 | 0 | 255 |
  2150. ---
  2151. ### nav_mc_pos_expo
  2152. Expo for PosHold control
  2153. | Default | Min | Max |
  2154. | --- | --- | --- |
  2155. | 10 | 0 | 255 |
  2156. ---
  2157. ### nav_mc_pos_xy_p
  2158. Controls how fast the drone will fly towards the target position. This is a multiplier to convert displacement to target velocity
  2159. | Default | Min | Max |
  2160. | --- | --- | --- |
  2161. | 65 | 0 | 255 |
  2162. ---
  2163. ### nav_mc_pos_z_p
  2164. P gain of altitude PID controller (Multirotor)
  2165. | Default | Min | Max |
  2166. | --- | --- | --- |
  2167. | 50 | 0 | 255 |
  2168. ---
  2169. ### nav_mc_vel_xy_d
  2170. D gain of Position-Rate (Velocity to Acceleration) PID controller. It can damp P and I. Increasing D might help when drone overshoots target.
  2171. | Default | Min | Max |
  2172. | --- | --- | --- |
  2173. | 100 | 0 | 255 |
  2174. ---
  2175. ### nav_mc_vel_xy_dterm_attenuation
  2176. Maximum D-term attenution percentage for horizontal velocity PID controller (Multirotor). It allows to smooth the PosHold CRUISE, WP and RTH when Multirotor is traveling at full speed. Dterm is not attenuated at low speeds, breaking and accelerating.
  2177. | Default | Min | Max |
  2178. | --- | --- | --- |
  2179. | 90 | 0 | 100 |
  2180. ---
  2181. ### nav_mc_vel_xy_dterm_attenuation_end
  2182. A point (in percent of both target and current horizontal velocity) where nav_mc_vel_xy_dterm_attenuation reaches maximum
  2183. | Default | Min | Max |
  2184. | --- | --- | --- |
  2185. | 60 | 0 | 100 |
  2186. ---
  2187. ### nav_mc_vel_xy_dterm_attenuation_start
  2188. A point (in percent of both target and current horizontal velocity) where nav_mc_vel_xy_dterm_attenuation begins
  2189. | Default | Min | Max |
  2190. | --- | --- | --- |
  2191. | 10 | 0 | 100 |
  2192. ---
  2193. ### nav_mc_vel_xy_dterm_lpf_hz
  2194. _// TODO_
  2195. | Default | Min | Max |
  2196. | --- | --- | --- |
  2197. | 2 | 0 | 100 |
  2198. ---
  2199. ### nav_mc_vel_xy_ff
  2200. _// TODO_
  2201. | Default | Min | Max |
  2202. | --- | --- | --- |
  2203. | 40 | 0 | 255 |
  2204. ---
  2205. ### nav_mc_vel_xy_i
  2206. I gain of Position-Rate (Velocity to Acceleration) PID controller. Used for drift compensation (caused by wind for example). Higher I means stronger response to drift. Too much I gain might cause target overshot
  2207. | Default | Min | Max |
  2208. | --- | --- | --- |
  2209. | 15 | 0 | 255 |
  2210. ---
  2211. ### nav_mc_vel_xy_p
  2212. P gain of Position-Rate (Velocity to Acceleration) PID controller. Higher P means stronger response when position error occurs. Too much P might cause "nervous" behavior and oscillations
  2213. | Default | Min | Max |
  2214. | --- | --- | --- |
  2215. | 40 | 0 | 255 |
  2216. ---
  2217. ### nav_mc_vel_z_d
  2218. D gain of velocity PID controller
  2219. | Default | Min | Max |
  2220. | --- | --- | --- |
  2221. | 10 | 0 | 255 |
  2222. ---
  2223. ### nav_mc_vel_z_i
  2224. I gain of velocity PID controller
  2225. | Default | Min | Max |
  2226. | --- | --- | --- |
  2227. | 50 | 0 | 255 |
  2228. ---
  2229. ### nav_mc_vel_z_p
  2230. P gain of velocity PID controller
  2231. | Default | Min | Max |
  2232. | --- | --- | --- |
  2233. | 100 | 0 | 255 |
  2234. ---
  2235. ### nav_mc_wp_slowdown
  2236. When ON, NAV engine will slow down when switching to the next waypoint. This prioritizes turning over forward movement. When OFF, NAV engine will continue to the next waypoint and turn as it goes.
  2237. | Default | Min | Max |
  2238. | --- | --- | --- |
  2239. | ON | | |
  2240. ---
  2241. ### nav_min_rth_distance
  2242. Minimum distance from homepoint when RTH full procedure will be activated [cm]. Below this distance, the mode will activate at the current location and the final phase is executed (loiter / land). Above this distance, the full procedure is activated, which may include initial climb and flying directly to the homepoint before entering the loiter / land phase.
  2243. | Default | Min | Max |
  2244. | --- | --- | --- |
  2245. | 500 | 0 | 5000 |
  2246. ---
  2247. ### nav_overrides_motor_stop
  2248. When set to OFF the navigation system will not take over the control of the motor if the throttle is low (motor will stop). When set to OFF_ALWAYS the navigation system will not take over the control of the motor if the throttle was low even when failsafe is triggered. When set to AUTO_ONLY the navigation system will only take over the control of the throttle in autonomous navigation modes (NAV WP and NAV RTH). When set to ALL_NAV (default) the navigation system will take over the control of the motor completely and never allow the motor to stop even when the throttle is low. This setting only has an effect on NAV modes which take control of the throttle when combined with MOTOR_STOP and is likely to cause a stall if fw_min_throttle_down_pitch isn't set correctly or the pitch estimation is wrong for fixed wing models when not set to ALL_NAV
  2249. | Default | Min | Max |
  2250. | --- | --- | --- |
  2251. | ALL_NAV | | |
  2252. ---
  2253. ### nav_position_timeout
  2254. If GPS fails wait for this much seconds before switching to emergency landing mode (0 - disable)
  2255. | Default | Min | Max |
  2256. | --- | --- | --- |
  2257. | 5 | 0 | 10 |
  2258. ---
  2259. ### nav_rth_abort_threshold
  2260. RTH sanity checking feature will notice if distance to home is increasing during RTH and once amount of increase exceeds the threshold defined by this parameter, instead of continuing RTH machine will enter emergency landing, self-level and go down safely. Default is 500m which is safe enough for both multirotor machines and airplanes. [cm]
  2261. | Default | Min | Max |
  2262. | --- | --- | --- |
  2263. | 50000 | | 65000 |
  2264. ---
  2265. ### nav_rth_allow_landing
  2266. If set to ON drone will land as a last phase of RTH.
  2267. | Default | Min | Max |
  2268. | --- | --- | --- |
  2269. | ALWAYS | | |
  2270. ---
  2271. ### nav_rth_alt_control_override
  2272. If set to ON RTH altitude and CLIMB FIRST settings can be overridden during the RTH climb phase using full pitch or roll stick held for > 1 second. RTH altitude is reset to the current altitude using pitch down stick. RTH CLIMB FIRST is overridden using right roll stick so craft turns and heads directly to home (CLIMB FIRST override only works for fixed wing)
  2273. | Default | Min | Max |
  2274. | --- | --- | --- |
  2275. | OFF | | |
  2276. ---
  2277. ### nav_rth_alt_mode
  2278. Configure how the aircraft will manage altitude on the way home, see Navigation modes on wiki for more details
  2279. | Default | Min | Max |
  2280. | --- | --- | --- |
  2281. | AT_LEAST | | |
  2282. ---
  2283. ### nav_rth_altitude
  2284. Used in EXTRA, FIXED and AT_LEAST rth alt modes [cm] (Default 1000 means 10 meters)
  2285. | Default | Min | Max |
  2286. | --- | --- | --- |
  2287. | 1000 | | 65000 |
  2288. ---
  2289. ### nav_rth_climb_first
  2290. If set to ON or ON_FW_SPIRAL aircraft will climb to nav_rth_altitude first before turning to head home. If set to OFF aircraft will turn and head home immediately climbing on the way. For a fixed wing ON will use a linear climb, ON_FW_SPIRAL will use a loiter turning climb with climb rate set by nav_auto_climb_rate, turn rate set by nav_fw_loiter_radius (ON_FW_SPIRAL is a fixed wing setting and behaves the same as ON for a multirotor)
  2291. | Default | Min | Max |
  2292. | --- | --- | --- |
  2293. | ON | | |
  2294. ---
  2295. ### nav_rth_climb_ignore_emerg
  2296. If set to ON, aircraft will execute initial climb regardless of position sensor (GPS) status.
  2297. | Default | Min | Max |
  2298. | --- | --- | --- |
  2299. | OFF | | |
  2300. ---
  2301. ### nav_rth_home_altitude
  2302. Aircraft will climb/descend to this altitude after reaching home if landing is not enabled. Set to 0 to stay at `nav_rth_altitude` (default) [cm]
  2303. | Default | Min | Max |
  2304. | --- | --- | --- |
  2305. | 0 | | 65000 |
  2306. ---
  2307. ### nav_rth_tail_first
  2308. If set to ON drone will return tail-first. Obviously meaningless for airplanes.
  2309. | Default | Min | Max |
  2310. | --- | --- | --- |
  2311. | OFF | | |
  2312. ---
  2313. ### nav_use_fw_yaw_control
  2314. Enables or Disables the use of the heading PID controller on fixed wing. Heading PID controller is always enabled for rovers and boats
  2315. | Default | Min | Max |
  2316. | --- | --- | --- |
  2317. | OFF | | |
  2318. ---
  2319. ### nav_use_midthr_for_althold
  2320. If set to OFF, the FC remembers your throttle stick position when enabling ALTHOLD and treats it as a neutral midpoint for holding altitude
  2321. | Default | Min | Max |
  2322. | --- | --- | --- |
  2323. | OFF | | |
  2324. ---
  2325. ### nav_user_control_mode
  2326. Defines how Pitch/Roll input from RC receiver affects flight in POSHOLD mode: ATTI - pitch/roll controls attitude like in ANGLE mode; CRUISE - pitch/roll controls velocity in forward and right direction.
  2327. | Default | Min | Max |
  2328. | --- | --- | --- |
  2329. | ATTI | | |
  2330. ---
  2331. ### nav_wp_load_on_boot
  2332. If set to ON, waypoints will be automatically loaded from EEPROM to the FC during startup.
  2333. | Default | Min | Max |
  2334. | --- | --- | --- |
  2335. | OFF | | |
  2336. ---
  2337. ### nav_wp_radius
  2338. Waypoint radius [cm]. Waypoint would be considered reached if machine is within this radius
  2339. | Default | Min | Max |
  2340. | --- | --- | --- |
  2341. | 100 | 10 | 10000 |
  2342. ---
  2343. ### nav_wp_safe_distance
  2344. First waypoint in the mission should be closer than this value [cm]. A value of 0 disables this check.
  2345. | Default | Min | Max |
  2346. | --- | --- | --- |
  2347. | 10000 | | 65000 |
  2348. ---
  2349. ### opflow_hardware
  2350. Selection of OPFLOW hardware.
  2351. | Default | Min | Max |
  2352. | --- | --- | --- |
  2353. | NONE | | |
  2354. ---
  2355. ### opflow_scale
  2356. _// TODO_
  2357. | Default | Min | Max |
  2358. | --- | --- | --- |
  2359. | 10.5 | 0 | 10000 |
  2360. ---
  2361. ### osd_ahi_bordered
  2362. Shows a border/corners around the AHI region (pixel OSD only)
  2363. | Default | Min | Max |
  2364. | --- | --- | --- |
  2365. | OFF | | |
  2366. ---
  2367. ### osd_ahi_camera_uptilt_comp
  2368. When set to `ON`, the AHI position is adjusted by `osd_camera_uptilt`. For example, with a cammera uptilt of 30 degrees, the AHI will appear in the middle of the OSD when the aircraft is pitched forward 30 degrees. When set to `OFF`, the AHI will appear in the center of the OSD regardless of camera angle, but can still be shifted up and down using `osd_horizon_offset` (`osd_ahi_vertical_offset` for pixel-OSD).
  2369. | Default | Min | Max |
  2370. | --- | --- | --- |
  2371. | OFF | | |
  2372. ---
  2373. ### osd_ahi_height
  2374. AHI height in pixels (pixel OSD only)
  2375. | Default | Min | Max |
  2376. | --- | --- | --- |
  2377. | 162 | | 255 |
  2378. ---
  2379. ### osd_ahi_max_pitch
  2380. Max pitch, in degrees, for OSD artificial horizon
  2381. | Default | Min | Max |
  2382. | --- | --- | --- |
  2383. | 20 | 10 | 90 |
  2384. ---
  2385. ### osd_ahi_reverse_roll
  2386. _// TODO_
  2387. | Default | Min | Max |
  2388. | --- | --- | --- |
  2389. | OFF | | |
  2390. ---
  2391. ### osd_ahi_style
  2392. Sets OSD Artificial Horizon style "DEFAULT" or "LINE" for the FrSky Graphical OSD.
  2393. | Default | Min | Max |
  2394. | --- | --- | --- |
  2395. | DEFAULT | | |
  2396. ---
  2397. ### osd_ahi_vertical_offset
  2398. AHI vertical offset from center (pixel OSD only)
  2399. | Default | Min | Max |
  2400. | --- | --- | --- |
  2401. | -18 | -128 | 127 |
  2402. ---
  2403. ### osd_ahi_width
  2404. AHI width in pixels (pixel OSD only)
  2405. | Default | Min | Max |
  2406. | --- | --- | --- |
  2407. | 132 | | 255 |
  2408. ---
  2409. ### osd_alt_alarm
  2410. Value above which to make the OSD relative altitude indicator blink (meters)
  2411. | Default | Min | Max |
  2412. | --- | --- | --- |
  2413. | 100 | 0 | 10000 |
  2414. ---
  2415. ### osd_baro_temp_alarm_max
  2416. Temperature above which the baro temperature OSD element will start blinking (decidegrees centigrade)
  2417. | Default | Min | Max |
  2418. | --- | --- | --- |
  2419. | 600 | -550 | 1250 |
  2420. ---
  2421. ### osd_baro_temp_alarm_min
  2422. Temperature under which the baro temperature OSD element will start blinking (decidegrees centigrade)
  2423. | Default | Min | Max |
  2424. | --- | --- | --- |
  2425. | -200 | -550 | 1250 |
  2426. ---
  2427. ### osd_camera_fov_h
  2428. Horizontal field of view for the camera in degres
  2429. | Default | Min | Max |
  2430. | --- | --- | --- |
  2431. | 135 | 60 | 150 |
  2432. ---
  2433. ### osd_camera_fov_v
  2434. Vertical field of view for the camera in degres
  2435. | Default | Min | Max |
  2436. | --- | --- | --- |
  2437. | 85 | 30 | 120 |
  2438. ---
  2439. ### osd_camera_uptilt
  2440. Set the camera uptilt for the FPV camera in degres, positive is up, negative is down, relative to the horizontal. Used for correct display of HUD items and AHI (when enabled).
  2441. | Default | Min | Max |
  2442. | --- | --- | --- |
  2443. | 0 | -40 | 80 |
  2444. ---
  2445. ### osd_coordinate_digits
  2446. _// TODO_
  2447. | Default | Min | Max |
  2448. | --- | --- | --- |
  2449. | 9 | 8 | 11 |
  2450. ---
  2451. ### osd_crosshairs_style
  2452. To set the visual type for the crosshair
  2453. | Default | Min | Max |
  2454. | --- | --- | --- |
  2455. | DEFAULT | | |
  2456. ---
  2457. ### osd_crsf_lq_format
  2458. To select LQ format
  2459. | Default | Min | Max |
  2460. | --- | --- | --- |
  2461. | TYPE1 | | |
  2462. ---
  2463. ### osd_current_alarm
  2464. Value above which the OSD current consumption element will start blinking. Measured in full Amperes.
  2465. | Default | Min | Max |
  2466. | --- | --- | --- |
  2467. | 0 | 0 | 255 |
  2468. ---
  2469. ### osd_dist_alarm
  2470. Value above which to make the OSD distance from home indicator blink (meters)
  2471. | Default | Min | Max |
  2472. | --- | --- | --- |
  2473. | 1000 | 0 | 50000 |
  2474. ---
  2475. ### osd_esc_temp_alarm_max
  2476. Temperature above which the IMU temperature OSD element will start blinking (decidegrees centigrade)
  2477. | Default | Min | Max |
  2478. | --- | --- | --- |
  2479. | 900 | -550 | 1500 |
  2480. ---
  2481. ### osd_esc_temp_alarm_min
  2482. Temperature under which the IMU temperature OSD element will start blinking (decidegrees centigrade)
  2483. | Default | Min | Max |
  2484. | --- | --- | --- |
  2485. | -200 | -550 | 1500 |
  2486. ---
  2487. ### osd_estimations_wind_compensation
  2488. Use wind estimation for remaining flight time/distance estimation
  2489. | Default | Min | Max |
  2490. | --- | --- | --- |
  2491. | ON | | |
  2492. ---
  2493. ### osd_failsafe_switch_layout
  2494. If enabled the OSD automatically switches to the first layout during failsafe
  2495. | Default | Min | Max |
  2496. | --- | --- | --- |
  2497. | OFF | | |
  2498. ---
  2499. ### osd_force_grid
  2500. Force OSD to work in grid mode even if the OSD device supports pixel level access (mainly used for development)
  2501. | Default | Min | Max |
  2502. | --- | --- | --- |
  2503. | OFF | | |
  2504. ---
  2505. ### osd_gforce_alarm
  2506. Value above which the OSD g force indicator will blink (g)
  2507. | Default | Min | Max |
  2508. | --- | --- | --- |
  2509. | 5 | 0 | 20 |
  2510. ---
  2511. ### osd_gforce_axis_alarm_max
  2512. Value above which the OSD axis g force indicators will blink (g)
  2513. | Default | Min | Max |
  2514. | --- | --- | --- |
  2515. | 5 | -20 | 20 |
  2516. ---
  2517. ### osd_gforce_axis_alarm_min
  2518. Value under which the OSD axis g force indicators will blink (g)
  2519. | Default | Min | Max |
  2520. | --- | --- | --- |
  2521. | -5 | -20 | 20 |
  2522. ---
  2523. ### osd_home_position_arm_screen
  2524. Should home position coordinates be displayed on the arming screen.
  2525. | Default | Min | Max |
  2526. | --- | --- | --- |
  2527. | ON | | |
  2528. ---
  2529. ### osd_horizon_offset
  2530. To vertically adjust the whole OSD and AHI and scrolling bars
  2531. | Default | Min | Max |
  2532. | --- | --- | --- |
  2533. | 0 | -2 | 2 |
  2534. ---
  2535. ### osd_hud_homepoint
  2536. To 3D-display the home point location in the hud
  2537. | Default | Min | Max |
  2538. | --- | --- | --- |
  2539. | OFF | | |
  2540. ---
  2541. ### osd_hud_homing
  2542. To display little arrows around the crossair showing where the home point is in the hud
  2543. | Default | Min | Max |
  2544. | --- | --- | --- |
  2545. | OFF | | |
  2546. ---
  2547. ### osd_hud_margin_h
  2548. Left and right margins for the hud area
  2549. | Default | Min | Max |
  2550. | --- | --- | --- |
  2551. | 3 | 0 | 4 |
  2552. ---
  2553. ### osd_hud_margin_v
  2554. Top and bottom margins for the hud area
  2555. | Default | Min | Max |
  2556. | --- | --- | --- |
  2557. | 3 | 1 | 3 |
  2558. ---
  2559. ### osd_hud_radar_disp
  2560. Maximum count of nearby aircrafts or points of interest to display in the hud, as sent from an ESP32 LoRa module. Set to 0 to disable (show nothing). The nearby aircrafts will appear as markers A, B, C, etc
  2561. | Default | Min | Max |
  2562. | --- | --- | --- |
  2563. | 0 | 0 | 4 |
  2564. ---
  2565. ### osd_hud_radar_nearest
  2566. To display an extra bar of informations at the bottom of the hud area for the closest radar aircraft found, if closest than the set value, in meters. Shows relative altitude (meters or feet, with an up or down arrow to indicate if above or below), speed (in m/s or f/s), and absolute heading (in °, 0 is north, 90 is east, 180 is south, 270 is west). Set to 0 (zero) to disable.
  2567. | Default | Min | Max |
  2568. | --- | --- | --- |
  2569. | 0 | 0 | 4000 |
  2570. ---
  2571. ### osd_hud_radar_range_max
  2572. In meters, radar aircrafts further away than this will not be displayed in the hud
  2573. | Default | Min | Max |
  2574. | --- | --- | --- |
  2575. | 4000 | 100 | 9990 |
  2576. ---
  2577. ### osd_hud_radar_range_min
  2578. In meters, radar aircrafts closer than this will not be displayed in the hud
  2579. | Default | Min | Max |
  2580. | --- | --- | --- |
  2581. | 3 | 1 | 30 |
  2582. ---
  2583. ### osd_hud_wp_disp
  2584. How many navigation waypoints are displayed, set to 0 (zero) to disable. As sample, if set to 2, and you just passed the 3rd waypoint of the mission, you'll see markers for the 4th waypoint (marked 1) and the 5th waypoint (marked 2)
  2585. | Default | Min | Max |
  2586. | --- | --- | --- |
  2587. | 0 | 0 | 3 |
  2588. ---
  2589. ### osd_imu_temp_alarm_max
  2590. Temperature above which the IMU temperature OSD element will start blinking (decidegrees centigrade)
  2591. | Default | Min | Max |
  2592. | --- | --- | --- |
  2593. | 600 | -550 | 1250 |
  2594. ---
  2595. ### osd_imu_temp_alarm_min
  2596. Temperature under which the IMU temperature OSD element will start blinking (decidegrees centigrade)
  2597. | Default | Min | Max |
  2598. | --- | --- | --- |
  2599. | -200 | -550 | 1250 |
  2600. ---
  2601. ### osd_left_sidebar_scroll
  2602. _// TODO_
  2603. | Default | Min | Max |
  2604. | --- | --- | --- |
  2605. | NONE | | |
  2606. ---
  2607. ### osd_left_sidebar_scroll_step
  2608. How many units each sidebar step represents. 0 means the default value for the scroll type.
  2609. | Default | Min | Max |
  2610. | --- | --- | --- |
  2611. | 0 | | 255 |
  2612. ---
  2613. ### osd_link_quality_alarm
  2614. LQ % indicator blinks below this value. For Crossfire use 70%, for Tracer use 50%
  2615. | Default | Min | Max |
  2616. | --- | --- | --- |
  2617. | 70 | 0 | 100 |
  2618. ---
  2619. ### osd_main_voltage_decimals
  2620. Number of decimals for the battery voltages displayed in the OSD [1-2].
  2621. | Default | Min | Max |
  2622. | --- | --- | --- |
  2623. | 1 | 1 | 2 |
  2624. ---
  2625. ### osd_neg_alt_alarm
  2626. Value below which (negative altitude) to make the OSD relative altitude indicator blink (meters)
  2627. | Default | Min | Max |
  2628. | --- | --- | --- |
  2629. | 5 | 0 | 10000 |
  2630. ---
  2631. ### osd_pan_servo_index
  2632. Index of the pan servo to adjust osd home heading direction based on camera pan. Note that this feature does not work with continiously rotating servos.
  2633. | Default | Min | Max |
  2634. | --- | --- | --- |
  2635. | 0 | 0 | 10 |
  2636. ---
  2637. ### osd_pan_servo_pwm2centideg
  2638. Centidegrees of pan servo rotation us PWM signal. A servo with 180 degrees of rotation from 1000 to 2000 us PWM typically needs `18` for this setting. Change sign to inverse direction.
  2639. | Default | Min | Max |
  2640. | --- | --- | --- |
  2641. | 0 | -36 | 36 |
  2642. ---
  2643. ### osd_plus_code_digits
  2644. Numer of plus code digits before shortening with `osd_plus_code_short`. Precision at the equator: 10=13.9x13.9m; 11=2.8x3.5m; 12=56x87cm; 13=11x22cm.
  2645. | Default | Min | Max |
  2646. | --- | --- | --- |
  2647. | 11 | 10 | 13 |
  2648. ---
  2649. ### osd_plus_code_short
  2650. Number of leading digits removed from plus code. Removing 2, 4 and 6 digits requires a reference location within, respectively, ~800km, ~40 km and ~2km to recover the original coordinates.
  2651. | Default | Min | Max |
  2652. | --- | --- | --- |
  2653. | 0 | | |
  2654. ---
  2655. ### osd_right_sidebar_scroll
  2656. _// TODO_
  2657. | Default | Min | Max |
  2658. | --- | --- | --- |
  2659. | NONE | | |
  2660. ---
  2661. ### osd_right_sidebar_scroll_step
  2662. Same as left_sidebar_scroll_step, but for the right sidebar
  2663. | Default | Min | Max |
  2664. | --- | --- | --- |
  2665. | 0 | | 255 |
  2666. ---
  2667. ### osd_row_shiftdown
  2668. Number of rows to shift the OSD display (increase if top rows are cut off)
  2669. | Default | Min | Max |
  2670. | --- | --- | --- |
  2671. | 0 | 0 | 1 |
  2672. ---
  2673. ### osd_rssi_alarm
  2674. Value below which to make the OSD RSSI indicator blink
  2675. | Default | Min | Max |
  2676. | --- | --- | --- |
  2677. | 20 | 0 | 100 |
  2678. ---
  2679. ### osd_rssi_dbm_alarm
  2680. RSSI dBm indicator blinks below this value [dBm]. 0 disables this alarm
  2681. | Default | Min | Max |
  2682. | --- | --- | --- |
  2683. | 0 | -130 | 0 |
  2684. ---
  2685. ### osd_sidebar_height
  2686. Height of sidebars in rows. 0 leaves only the level indicator arrows (Not for pixel OSD)
  2687. | Default | Min | Max |
  2688. | --- | --- | --- |
  2689. | 3 | 0 | 5 |
  2690. ---
  2691. ### osd_sidebar_horizontal_offset
  2692. Sidebar horizontal offset from default position. Positive values move the sidebars closer to the edges.
  2693. | Default | Min | Max |
  2694. | --- | --- | --- |
  2695. | 0 | -128 | 127 |
  2696. ---
  2697. ### osd_sidebar_scroll_arrows
  2698. _// TODO_
  2699. | Default | Min | Max |
  2700. | --- | --- | --- |
  2701. | OFF | | |
  2702. ---
  2703. ### osd_snr_alarm
  2704. Value below which Crossfire SNR Alarm pops-up. (dB)
  2705. | Default | Min | Max |
  2706. | --- | --- | --- |
  2707. | 4 | -20 | 10 |
  2708. ---
  2709. ### osd_speed_source
  2710. Sets the speed type displayed by the DJI OSD and OSD canvas (FrSky Pixel): GROUND, 3D, AIR
  2711. | Default | Min | Max |
  2712. | --- | --- | --- |
  2713. | GROUND | | |
  2714. ---
  2715. ### osd_stats_energy_unit
  2716. Unit used for the drawn energy in the OSD stats [MAH/WH] (milliAmpere hour/ Watt hour)
  2717. | Default | Min | Max |
  2718. | --- | --- | --- |
  2719. | MAH | | |
  2720. ---
  2721. ### osd_stats_min_voltage_unit
  2722. Display minimum voltage of the `BATTERY` or the average per `CELL` in the OSD stats.
  2723. | Default | Min | Max |
  2724. | --- | --- | --- |
  2725. | BATTERY | | |
  2726. ---
  2727. ### osd_telemetry
  2728. To enable OSD telemetry for antenna tracker. Possible values are `OFF`, `ON` and `TEST`
  2729. | Default | Min | Max |
  2730. | --- | --- | --- |
  2731. | OFF | | |
  2732. ---
  2733. ### osd_temp_label_align
  2734. Allows to chose between left and right alignment for the OSD temperature sensor labels. Valid values are `LEFT` and `RIGHT`
  2735. | Default | Min | Max |
  2736. | --- | --- | --- |
  2737. | LEFT | | |
  2738. ---
  2739. ### osd_time_alarm
  2740. Value above which to make the OSD flight time indicator blink (minutes)
  2741. | Default | Min | Max |
  2742. | --- | --- | --- |
  2743. | 10 | 0 | 600 |
  2744. ---
  2745. ### osd_units
  2746. IMPERIAL, METRIC, UK
  2747. | Default | Min | Max |
  2748. | --- | --- | --- |
  2749. | METRIC | | |
  2750. ---
  2751. ### osd_video_system
  2752. Video system used. Possible values are `AUTO`, `PAL` and `NTSC`
  2753. | Default | Min | Max |
  2754. | --- | --- | --- |
  2755. | AUTO | | |
  2756. ---
  2757. ### pid_type
  2758. Allows to set type of PID controller used in control loop. Possible values: `NONE`, `PID`, `PIFF`, `AUTO`. Change only in case of experimental platforms like VTOL, tailsitters, rovers, boats, etc. Airplanes should always use `PIFF` and multirotors `PID`
  2759. | Default | Min | Max |
  2760. | --- | --- | --- |
  2761. | AUTO | | |
  2762. ---
  2763. ### pidsum_limit
  2764. A limitation to overall amount of correction Flight PID can request on each axis (Roll/Pitch). If when doing a hard maneuver on one axis machine looses orientation on other axis - reducing this parameter may help
  2765. | Default | Min | Max |
  2766. | --- | --- | --- |
  2767. | 500 | PID_SUM_LIMIT_MIN | PID_SUM_LIMIT_MAX |
  2768. ---
  2769. ### pidsum_limit_yaw
  2770. A limitation to overall amount of correction Flight PID can request on each axis (Yaw). If when doing a hard maneuver on one axis machine looses orientation on other axis - reducing this parameter may help
  2771. | Default | Min | Max |
  2772. | --- | --- | --- |
  2773. | 350 | PID_SUM_LIMIT_MIN | PID_SUM_LIMIT_MAX |
  2774. ---
  2775. ### pinio_box1
  2776. Mode assignment for PINIO#1
  2777. | Default | Min | Max |
  2778. | --- | --- | --- |
  2779. | `BOX_PERMANENT_ID_NONE` | 0 | 255 |
  2780. ---
  2781. ### pinio_box2
  2782. Mode assignment for PINIO#1
  2783. | Default | Min | Max |
  2784. | --- | --- | --- |
  2785. | `BOX_PERMANENT_ID_NONE` | 0 | 255 |
  2786. ---
  2787. ### pinio_box3
  2788. Mode assignment for PINIO#1
  2789. | Default | Min | Max |
  2790. | --- | --- | --- |
  2791. | `BOX_PERMANENT_ID_NONE` | 0 | 255 |
  2792. ---
  2793. ### pinio_box4
  2794. Mode assignment for PINIO#1
  2795. | Default | Min | Max |
  2796. | --- | --- | --- |
  2797. | `BOX_PERMANENT_ID_NONE` | 0 | 255 |
  2798. ---
  2799. ### pitch_rate
  2800. Defines rotation rate on PITCH axis that UAV will try to archive on max. stick deflection. Rates are defined in tens of degrees (deca-degrees) per second [rate = dps/10]. That means, rate 20 represents 200dps rotation speed. Default 20 (200dps) is more less equivalent of old Cleanflight/Baseflight rate 0. Max. 180 (1800dps) is what gyro can measure.
  2801. | Default | Min | Max |
  2802. | --- | --- | --- |
  2803. | 20 | 4 | 180 |
  2804. ---
  2805. ### pitot_hardware
  2806. Selection of pitot hardware.
  2807. | Default | Min | Max |
  2808. | --- | --- | --- |
  2809. | NONE | | |
  2810. ---
  2811. ### pitot_lpf_milli_hz
  2812. _// TODO_
  2813. | Default | Min | Max |
  2814. | --- | --- | --- |
  2815. | 350 | 0 | 10000 |
  2816. ---
  2817. ### pitot_scale
  2818. _// TODO_
  2819. | Default | Min | Max |
  2820. | --- | --- | --- |
  2821. | 1.0 | 0 | 100 |
  2822. ---
  2823. ### platform_type
  2824. Defines UAV platform type. Allowed values: "MULTIROTOR", "AIRPLANE", "HELICOPTER", "TRICOPTER", "ROVER", "BOAT". Currently only MULTIROTOR, AIRPLANE and TRICOPTER types are implemented
  2825. | Default | Min | Max |
  2826. | --- | --- | --- |
  2827. | MULTIROTOR | | |
  2828. ---
  2829. ### pos_hold_deadband
  2830. Stick deadband in [r/c points], applied after r/c deadband and expo. Used for adjustments in navigation modes.
  2831. | Default | Min | Max |
  2832. | --- | --- | --- |
  2833. | 10 | 2 | 250 |
  2834. ---
  2835. ### prearm_timeout
  2836. Duration (ms) for which Prearm being activated is valid. after this, Prearm needs to be reset. 0 means Prearm does not timeout.
  2837. | Default | Min | Max |
  2838. | --- | --- | --- |
  2839. | 10000 | 0 | 10000 |
  2840. ---
  2841. ### rangefinder_hardware
  2842. Selection of rangefinder hardware.
  2843. | Default | Min | Max |
  2844. | --- | --- | --- |
  2845. | NONE | | |
  2846. ---
  2847. ### rangefinder_median_filter
  2848. 3-point median filtering for rangefinder readouts
  2849. | Default | Min | Max |
  2850. | --- | --- | --- |
  2851. | OFF | | |
  2852. ---
  2853. ### rate_accel_limit_roll_pitch
  2854. Limits acceleration of ROLL/PITCH rotation speed that can be requested by stick input. In degrees-per-second-squared. Small and powerful UAV flies great with high acceleration limit ( > 5000 dps^2 and even > 10000 dps^2). Big and heavy multirotors will benefit from low acceleration limit (~ 360 dps^2). When set correctly, it greatly improves stopping performance. Value of 0 disables limiting.
  2855. | Default | Min | Max |
  2856. | --- | --- | --- |
  2857. | 0 | | 500000 |
  2858. ---
  2859. ### rate_accel_limit_yaw
  2860. Limits acceleration of YAW rotation speed that can be requested by stick input. In degrees-per-second-squared. Small and powerful UAV flies great with high acceleration limit ( > 10000 dps^2). Big and heavy multirotors will benefit from low acceleration limit (~ 180 dps^2). When set correctly, it greatly improves stopping performance and general stability during yaw turns. Value of 0 disables limiting.
  2861. | Default | Min | Max |
  2862. | --- | --- | --- |
  2863. | 10000 | | 500000 |
  2864. ---
  2865. ### rate_dynamics_center_correction
  2866. The center stick correction for Rate Dynamics
  2867. | Default | Min | Max |
  2868. | --- | --- | --- |
  2869. | 10 | 10 | 95 |
  2870. ---
  2871. ### rate_dynamics_center_sensitivity
  2872. The center stick sensitivity for Rate Dynamics
  2873. | Default | Min | Max |
  2874. | --- | --- | --- |
  2875. | 100 | 25 | 175 |
  2876. ---
  2877. ### rate_dynamics_center_weight
  2878. The center stick weight for Rate Dynamics
  2879. | Default | Min | Max |
  2880. | --- | --- | --- |
  2881. | 0 | 0 | 95 |
  2882. ---
  2883. ### rate_dynamics_end_correction
  2884. The end stick correction for Rate Dynamics
  2885. | Default | Min | Max |
  2886. | --- | --- | --- |
  2887. | 10 | 10 | 95 |
  2888. ---
  2889. ### rate_dynamics_end_sensitivity
  2890. The end stick sensitivity for Rate Dynamics
  2891. | Default | Min | Max |
  2892. | --- | --- | --- |
  2893. | 100 | 25 | 175 |
  2894. ---
  2895. ### rate_dynamics_end_weight
  2896. The end stick weight for Rate Dynamics
  2897. | Default | Min | Max |
  2898. | --- | --- | --- |
  2899. | 0 | 0 | 95 |
  2900. ---
  2901. ### rc_expo
  2902. Exposition value used for the PITCH/ROLL axes by all the stabilized flights modes (all but `MANUAL`)
  2903. | Default | Min | Max |
  2904. | --- | --- | --- |
  2905. | 70 | 0 | 100 |
  2906. ---
  2907. ### rc_filter_frequency
  2908. RC data biquad filter cutoff frequency. Lower cutoff frequencies result in smoother response at expense of command control delay. Practical values are 20-50. Set to zero to disable entirely and use unsmoothed RC stick values
  2909. | Default | Min | Max |
  2910. | --- | --- | --- |
  2911. | 50 | 0 | 100 |
  2912. ---
  2913. ### rc_yaw_expo
  2914. Exposition value used for the YAW axis by all the stabilized flights modes (all but `MANUAL`)
  2915. | Default | Min | Max |
  2916. | --- | --- | --- |
  2917. | 20 | 0 | 100 |
  2918. ---
  2919. ### reboot_character
  2920. Special character used to trigger reboot
  2921. | Default | Min | Max |
  2922. | --- | --- | --- |
  2923. | 82 | 48 | 126 |
  2924. ---
  2925. ### receiver_type
  2926. Selection of receiver (RX) type. Additional configuration of a `serialrx_provider` and a UART will be needed for `SERIAL`
  2927. | Default | Min | Max |
  2928. | --- | --- | --- |
  2929. | _target default_ | | |
  2930. ---
  2931. ### report_cell_voltage
  2932. S.Port, D-Series, and IBUS telemetry: Send the average cell voltage if set to ON
  2933. | Default | Min | Max |
  2934. | --- | --- | --- |
  2935. | OFF | | |
  2936. ---
  2937. ### roll_rate
  2938. Defines rotation rate on ROLL axis that UAV will try to archive on max. stick deflection. Rates are defined in tens of degrees (deca-degrees) per second [rate = dps/10]. That means, rate 20 represents 200dps rotation speed. Default 20 (200dps) is more less equivalent of old Cleanflight/Baseflight rate 0. Max. 180 (1800dps) is what gyro can measure.
  2939. | Default | Min | Max |
  2940. | --- | --- | --- |
  2941. | 20 | 4 | 180 |
  2942. ---
  2943. ### rpm_gyro_filter_enabled
  2944. Enables gyro RPM filtere. Set to `ON` only when ESC telemetry is working and rotation speed of the motors is correctly reported to INAV
  2945. | Default | Min | Max |
  2946. | --- | --- | --- |
  2947. | OFF | | |
  2948. ---
  2949. ### rpm_gyro_harmonics
  2950. Number of harmonic frequences to be covered by gyro RPM filter. Default value of `1` usually works just fine
  2951. | Default | Min | Max |
  2952. | --- | --- | --- |
  2953. | 1 | 1 | 3 |
  2954. ---
  2955. ### rpm_gyro_min_hz
  2956. The lowest frequency for gyro RPM filtere. Default `150` is fine for 5" mini-quads. On 7-inch drones you can lower even down to `60`-`70`
  2957. | Default | Min | Max |
  2958. | --- | --- | --- |
  2959. | 100 | 30 | 200 |
  2960. ---
  2961. ### rpm_gyro_q
  2962. Q factor for gyro RPM filter. Lower values give softer, wider attenuation. Usually there is no need to change this setting
  2963. | Default | Min | Max |
  2964. | --- | --- | --- |
  2965. | 500 | 1 | 3000 |
  2966. ---
  2967. ### rssi_adc_channel
  2968. ADC channel to use for analog RSSI input. Defaults to board RSSI input (if available). 0 = disabled
  2969. | Default | Min | Max |
  2970. | --- | --- | --- |
  2971. | _target default_ | ADC_CHN_NONE | ADC_CHN_MAX |
  2972. ---
  2973. ### rssi_channel
  2974. RX channel containing the RSSI signal
  2975. | Default | Min | Max |
  2976. | --- | --- | --- |
  2977. | 0 | 0 | MAX_SUPPORTED_RC_CHANNEL_COUNT |
  2978. ---
  2979. ### rssi_max
  2980. The maximum RSSI value sent by the receiver, in %. For example, if your receiver's maximum RSSI value shows as 83% in the configurator/OSD set this parameter to 83. See also rssi_min.
  2981. | Default | Min | Max |
  2982. | --- | --- | --- |
  2983. | 100 | RSSI_VISIBLE_VALUE_MIN | RSSI_VISIBLE_VALUE_MAX |
  2984. ---
  2985. ### rssi_min
  2986. The minimum RSSI value sent by the receiver, in %. For example, if your receiver's minimum RSSI value shows as 42% in the configurator/OSD set this parameter to 42. See also rssi_max. Note that rssi_min can be set to a value bigger than rssi_max to invert the RSSI calculation (i.e. bigger values mean lower RSSI).
  2987. | Default | Min | Max |
  2988. | --- | --- | --- |
  2989. | 0 | RSSI_VISIBLE_VALUE_MIN | RSSI_VISIBLE_VALUE_MAX |
  2990. ---
  2991. ### rssi_source
  2992. Source of RSSI input. Possible values: `NONE`, `AUTO`, `ADC`, `CHANNEL`, `PROTOCOL`, `MSP`
  2993. | Default | Min | Max |
  2994. | --- | --- | --- |
  2995. | AUTO | | |
  2996. ---
  2997. ### rth_energy_margin
  2998. Energy margin wanted after getting home (percent of battery energy capacity). Use for the remaining flight time/distance calculation
  2999. | Default | Min | Max |
  3000. | --- | --- | --- |
  3001. | 5 | 0 | 100 |
  3002. ---
  3003. ### rx_max_usec
  3004. Defines the longest pulse width value used when ensuring the channel value is valid. If the receiver gives a pulse value higher than this value then the channel will be marked as bad and will default to the value of mid_rc.
  3005. | Default | Min | Max |
  3006. | --- | --- | --- |
  3007. | 2115 | PWM_PULSE_MIN | PWM_PULSE_MAX |
  3008. ---
  3009. ### rx_min_usec
  3010. Defines the shortest pulse width value used when ensuring the channel value is valid. If the receiver gives a pulse value lower than this value then the channel will be marked as bad and will default to the value of mid_rc.
  3011. | Default | Min | Max |
  3012. | --- | --- | --- |
  3013. | 885 | PWM_PULSE_MIN | PWM_PULSE_MAX |
  3014. ---
  3015. ### rx_spi_id
  3016. _// TODO_
  3017. | Default | Min | Max |
  3018. | --- | --- | --- |
  3019. | 0 | 0 | 0 |
  3020. ---
  3021. ### rx_spi_protocol
  3022. _// TODO_
  3023. | Default | Min | Max |
  3024. | --- | --- | --- |
  3025. | _target default_ | | |
  3026. ---
  3027. ### rx_spi_rf_channel_count
  3028. _// TODO_
  3029. | Default | Min | Max |
  3030. | --- | --- | --- |
  3031. | 0 | 0 | 8 |
  3032. ---
  3033. ### safehome_max_distance
  3034. In order for a safehome to be used, it must be less than this distance (in cm) from the arming point.
  3035. | Default | Min | Max |
  3036. | --- | --- | --- |
  3037. | 20000 | 0 | 65000 |
  3038. ---
  3039. ### safehome_usage_mode
  3040. Used to control when safehomes will be used. Possible values are `OFF`, `RTH` and `RTH_FS`. See [Safehome documentation](Safehomes.md#Safehome) for more information.
  3041. | Default | Min | Max |
  3042. | --- | --- | --- |
  3043. | RTH | | |
  3044. ---
  3045. ### sbus_sync_interval
  3046. _// TODO_
  3047. | Default | Min | Max |
  3048. | --- | --- | --- |
  3049. | 3000 | 500 | 10000 |
  3050. ---
  3051. ### sdcard_detect_inverted
  3052. This setting drives the way SD card is detected in card slot. On some targets (AnyFC F7 clone) different card slot was used and depending of hardware revision ON or OFF setting might be required. If card is not detected, change this value.
  3053. | Default | Min | Max |
  3054. | --- | --- | --- |
  3055. | _target default_ | | |
  3056. ---
  3057. ### serialrx_halfduplex
  3058. Allow serial receiver to operate on UART TX pin. With some receivers will allow control and telemetry over a single wire.
  3059. | Default | Min | Max |
  3060. | --- | --- | --- |
  3061. | AUTO | | |
  3062. ---
  3063. ### serialrx_inverted
  3064. Reverse the serial inversion of the serial RX protocol. When this value is OFF, each protocol will use its default signal (e.g. SBUS will use an inverted signal). Some OpenLRS receivers produce a non-inverted SBUS signal. This setting supports this type of receivers (including modified FrSKY).
  3065. | Default | Min | Max |
  3066. | --- | --- | --- |
  3067. | OFF | | |
  3068. ---
  3069. ### serialrx_provider
  3070. When feature SERIALRX is enabled, this allows connection to several receivers which output data via digital interface resembling serial. See RX section.
  3071. | Default | Min | Max |
  3072. | --- | --- | --- |
  3073. | _target default_ | | |
  3074. ---
  3075. ### servo_autotrim_rotation_limit
  3076. Servo midpoints are only updated when total aircraft rotation is less than this threshold [deg/s]. Only applies when using `feature FW_AUTOTRIM`.
  3077. | Default | Min | Max |
  3078. | --- | --- | --- |
  3079. | 15 | 1 | 60 |
  3080. ---
  3081. ### servo_center_pulse
  3082. Servo midpoint
  3083. | Default | Min | Max |
  3084. | --- | --- | --- |
  3085. | 1500 | PWM_RANGE_MIN | PWM_RANGE_MAX |
  3086. ---
  3087. ### servo_lpf_hz
  3088. Selects the servo PWM output cutoff frequency. Value is in [Hz]
  3089. | Default | Min | Max |
  3090. | --- | --- | --- |
  3091. | 20 | 0 | 400 |
  3092. ---
  3093. ### servo_protocol
  3094. An option to chose the protocol/option that would be used to output servo data. Possible options `PWM` (FC servo outputs), `SERVO_DRIVER` (I2C PCA9685 peripheral), `SBUS` (S.Bus protocol output via a configured serial port)
  3095. | Default | Min | Max |
  3096. | --- | --- | --- |
  3097. | PWM | | |
  3098. ---
  3099. ### servo_pwm_rate
  3100. Output frequency (in Hz) servo pins. When using tricopters or gimbal with digital servo, this rate can be increased. Max of 498Hz (for 500Hz pwm period), and min of 50Hz. Most digital servos will support for example 330Hz.
  3101. | Default | Min | Max |
  3102. | --- | --- | --- |
  3103. | 50 | 50 | 498 |
  3104. ---
  3105. ### setpoint_kalman_enabled
  3106. Enable Kalman filter on the gyro data
  3107. | Default | Min | Max |
  3108. | --- | --- | --- |
  3109. | OFF | | |
  3110. ---
  3111. ### setpoint_kalman_q
  3112. Quality factor of the setpoint Kalman filter. Higher values means less filtering and lower phase delay. On 3-7 inch multirotors can be usually increased to 200-300 or even higher of clean builds
  3113. | Default | Min | Max |
  3114. | --- | --- | --- |
  3115. | 100 | 1 | 16000 |
  3116. ---
  3117. ### sim_ground_station_number
  3118. Number of phone that is used to communicate with SIM module. Messages / calls from other numbers are ignored. If undefined, can be set by calling or sending a message to the module.
  3119. | Default | Min | Max |
  3120. | --- | --- | --- |
  3121. | _empty_ | | |
  3122. ---
  3123. ### sim_low_altitude
  3124. Threshold for low altitude warning messages sent by SIM module when the 'L' transmit flag is set in `sim_transmit_flags`.
  3125. | Default | Min | Max |
  3126. | --- | --- | --- |
  3127. | -32767 | -32768 | 32767 |
  3128. ---
  3129. ### sim_pin
  3130. PIN code for the SIM module
  3131. | Default | Min | Max |
  3132. | --- | --- | --- |
  3133. | 0000 | | |
  3134. ---
  3135. ### sim_transmit_flags
  3136. Bitmask specifying text message transmit condition flags for the SIM module. 1: continuous transmission, 2: continuous transmission in failsafe mode, 4: continuous transmission when GPS signal quality is low, 8: acceleration events, 16: continuous transmission when altitude is below `sim_low_altitude`
  3137. | Default | Min | Max |
  3138. | --- | --- | --- |
  3139. | `SIM_TX_FLAG_FAILSAFE` | | 63 |
  3140. ---
  3141. ### sim_transmit_interval
  3142. Text message transmission interval in seconds for SIM module. Minimum value: 10
  3143. | Default | Min | Max |
  3144. | --- | --- | --- |
  3145. | 60 | SIM_MIN_TRANSMIT_INTERVAL | 65535 |
  3146. ---
  3147. ### small_angle
  3148. If the aircraft tilt angle exceed this value the copter will refuse to arm.
  3149. | Default | Min | Max |
  3150. | --- | --- | --- |
  3151. | 25 | 0 | 180 |
  3152. ---
  3153. ### smartport_fuel_unit
  3154. S.Port telemetry only: Unit of the value sent with the `FUEL` ID (FrSky D-Series always sends percent). [PERCENT/MAH/MWH]
  3155. | Default | Min | Max |
  3156. | --- | --- | --- |
  3157. | MAH | | |
  3158. ---
  3159. ### smartport_master_halfduplex
  3160. _// TODO_
  3161. | Default | Min | Max |
  3162. | --- | --- | --- |
  3163. | ON | | |
  3164. ---
  3165. ### smartport_master_inverted
  3166. _// TODO_
  3167. | Default | Min | Max |
  3168. | --- | --- | --- |
  3169. | OFF | | |
  3170. ---
  3171. ### smith_predictor_delay
  3172. Expected delay of the gyro signal. In milliseconds
  3173. | Default | Min | Max |
  3174. | --- | --- | --- |
  3175. | 0 | 0 | 8 |
  3176. ---
  3177. ### smith_predictor_lpf_hz
  3178. Cutoff frequency for the Smith Predictor Low Pass Filter
  3179. | Default | Min | Max |
  3180. | --- | --- | --- |
  3181. | 50 | 1 | 500 |
  3182. ---
  3183. ### smith_predictor_strength
  3184. The strength factor of a Smith Predictor of PID measurement. In percents
  3185. | Default | Min | Max |
  3186. | --- | --- | --- |
  3187. | 0.5 | 0 | 1 |
  3188. ---
  3189. ### spektrum_sat_bind
  3190. 0 = disabled. Used to bind the spektrum satellite to RX
  3191. | Default | Min | Max |
  3192. | --- | --- | --- |
  3193. | `SPEKTRUM_SAT_BIND_DISABLED` | SPEKTRUM_SAT_BIND_DISABLED | SPEKTRUM_SAT_BIND_MAX |
  3194. ---
  3195. ### srxl2_baud_fast
  3196. _// TODO_
  3197. | Default | Min | Max |
  3198. | --- | --- | --- |
  3199. | ON | | |
  3200. ---
  3201. ### srxl2_unit_id
  3202. _// TODO_
  3203. | Default | Min | Max |
  3204. | --- | --- | --- |
  3205. | 1 | 0 | 15 |
  3206. ---
  3207. ### stats
  3208. General switch of the statistics recording feature (a.k.a. odometer)
  3209. | Default | Min | Max |
  3210. | --- | --- | --- |
  3211. | OFF | | |
  3212. ---
  3213. ### stats_total_dist
  3214. Total flight distance [in meters]. The value is updated on every disarm when "stats" are enabled.
  3215. | Default | Min | Max |
  3216. | --- | --- | --- |
  3217. | 0 | | 2147483647 |
  3218. ---
  3219. ### stats_total_energy
  3220. _// TODO_
  3221. | Default | Min | Max |
  3222. | --- | --- | --- |
  3223. | 0 | | 2147483647 |
  3224. ---
  3225. ### stats_total_time
  3226. Total flight time [in seconds]. The value is updated on every disarm when "stats" are enabled.
  3227. | Default | Min | Max |
  3228. | --- | --- | --- |
  3229. | 0 | | 2147483647 |
  3230. ---
  3231. ### switch_disarm_delay
  3232. Delay before disarming when requested by switch (ms) [0-1000]
  3233. | Default | Min | Max |
  3234. | --- | --- | --- |
  3235. | 250 | 0 | 1000 |
  3236. ---
  3237. ### telemetry_halfduplex
  3238. S.Port telemetry only: Turn UART into UNIDIR for usage on F1 and F4 target. See Telemetry.md for details
  3239. | Default | Min | Max |
  3240. | --- | --- | --- |
  3241. | ON | | |
  3242. ---
  3243. ### telemetry_inverted
  3244. Determines if the telemetry protocol default signal inversion is reversed. This should be OFF in most cases unless a custom or hacked RX is used.
  3245. | Default | Min | Max |
  3246. | --- | --- | --- |
  3247. | OFF | | |
  3248. ---
  3249. ### telemetry_switch
  3250. Which aux channel to use to change serial output & baud rate (MSP / Telemetry). It disables automatic switching to Telemetry when armed.
  3251. | Default | Min | Max |
  3252. | --- | --- | --- |
  3253. | OFF | | |
  3254. ---
  3255. ### thr_comp_weight
  3256. Weight used for the throttle compensation based on battery voltage. See the [battery documentation](Battery.md#automatic-throttle-compensation-based-on-battery-voltage)
  3257. | Default | Min | Max |
  3258. | --- | --- | --- |
  3259. | 1 | 0 | 2 |
  3260. ---
  3261. ### thr_expo
  3262. Throttle exposition value
  3263. | Default | Min | Max |
  3264. | --- | --- | --- |
  3265. | 0 | 0 | 100 |
  3266. ---
  3267. ### thr_mid
  3268. Throttle value when the stick is set to mid-position. Used in the throttle curve calculation.
  3269. | Default | Min | Max |
  3270. | --- | --- | --- |
  3271. | 50 | 0 | 100 |
  3272. ---
  3273. ### throttle_idle
  3274. The percentage of the throttle range (`max_throttle` - `min_command`) above `min_command` used for minimum / idle throttle.
  3275. | Default | Min | Max |
  3276. | --- | --- | --- |
  3277. | 15 | 0 | 30 |
  3278. ---
  3279. ### throttle_scale
  3280. Throttle scaling factor. `1` means no throttle scaling. `0.5` means throttle scaled down by 50%
  3281. | Default | Min | Max |
  3282. | --- | --- | --- |
  3283. | 1.0 | 0 | 1 |
  3284. ---
  3285. ### throttle_tilt_comp_str
  3286. Can be used in ANGLE and HORIZON mode and will automatically boost throttle when banking. Setting is in percentage, 0=disabled.
  3287. | Default | Min | Max |
  3288. | --- | --- | --- |
  3289. | 0 | 0 | 100 |
  3290. ---
  3291. ### tpa_breakpoint
  3292. See tpa_rate.
  3293. | Default | Min | Max |
  3294. | --- | --- | --- |
  3295. | 1500 | PWM_RANGE_MIN | PWM_RANGE_MAX |
  3296. ---
  3297. ### tpa_rate
  3298. Throttle PID attenuation reduces influence of P on ROLL and PITCH as throttle increases. For every 1% throttle after the TPA breakpoint, P is reduced by the TPA rate.
  3299. | Default | Min | Max |
  3300. | --- | --- | --- |
  3301. | 0 | 0 | 100 |
  3302. ---
  3303. ### tri_unarmed_servo
  3304. On tricopter mix only, if this is set to ON, servo will always be correcting regardless of armed state. to disable this, set it to OFF.
  3305. | Default | Min | Max |
  3306. | --- | --- | --- |
  3307. | ON | | |
  3308. ---
  3309. ### turtle_mode_power_factor
  3310. Turtle mode power factor
  3311. | Default | Min | Max |
  3312. | --- | --- | --- |
  3313. | 55 | 0 | 100 |
  3314. ---
  3315. ### tz_automatic_dst
  3316. Automatically add Daylight Saving Time to the GPS time when needed or simply ignore it. Includes presets for EU and the USA - if you live outside these areas it is suggested to manage DST manually via `tz_offset`.
  3317. | Default | Min | Max |
  3318. | --- | --- | --- |
  3319. | OFF | | |
  3320. ---
  3321. ### tz_offset
  3322. Time zone offset from UTC, in minutes. This is applied to the GPS time for logging and time-stamping of Blackbox logs
  3323. | Default | Min | Max |
  3324. | --- | --- | --- |
  3325. | 0 | -1440 | 1440 |
  3326. ---
  3327. ### vbat_adc_channel
  3328. ADC channel to use for battery voltage sensor. Defaults to board VBAT input (if available). 0 = disabled
  3329. | Default | Min | Max |
  3330. | --- | --- | --- |
  3331. | _target default_ | ADC_CHN_NONE | ADC_CHN_MAX |
  3332. ---
  3333. ### vbat_cell_detect_voltage
  3334. Maximum voltage per cell, used for auto-detecting the number of cells of the battery in 0.01V units.
  3335. | Default | Min | Max |
  3336. | --- | --- | --- |
  3337. | 425 | 100 | 500 |
  3338. ---
  3339. ### vbat_max_cell_voltage
  3340. Maximum voltage per cell in 0.01V units, default is 4.20V
  3341. | Default | Min | Max |
  3342. | --- | --- | --- |
  3343. | 420 | 100 | 500 |
  3344. ---
  3345. ### vbat_meter_type
  3346. Vbat voltage source. Possible values: `NONE`, `ADC`, `ESC`. `ESC` required ESC telemetry enebled and running
  3347. | Default | Min | Max |
  3348. | --- | --- | --- |
  3349. | ADC | | |
  3350. ---
  3351. ### vbat_min_cell_voltage
  3352. Minimum voltage per cell, this triggers battery out alarms, in 0.01V units, default is 330 (3.3V)
  3353. | Default | Min | Max |
  3354. | --- | --- | --- |
  3355. | 330 | 100 | 500 |
  3356. ---
  3357. ### vbat_scale
  3358. Battery voltage calibration value. 1100 = 11:1 voltage divider (10k:1k) x 100. Adjust this slightly if reported pack voltage is different from multimeter reading. You can get current voltage by typing "status" in cli.
  3359. | Default | Min | Max |
  3360. | --- | --- | --- |
  3361. | _target default_ | 0 | 65535 |
  3362. ---
  3363. ### vbat_warning_cell_voltage
  3364. Warning voltage per cell, this triggers battery-warning alarms, in 0.01V units, default is 350 (3.5V)
  3365. | Default | Min | Max |
  3366. | --- | --- | --- |
  3367. | 350 | 100 | 500 |
  3368. ---
  3369. ### vtx_band
  3370. Configure the VTX band. Set to zero to use `vtx_freq`. Bands: 1: A, 2: B, 3: E, 4: F, 5: Race.
  3371. | Default | Min | Max |
  3372. | --- | --- | --- |
  3373. | 4 | VTX_SETTINGS_NO_BAND | VTX_SETTINGS_MAX_BAND |
  3374. ---
  3375. ### vtx_channel
  3376. Channel to use within the configured `vtx_band`. Valid values are [1, 8].
  3377. | Default | Min | Max |
  3378. | --- | --- | --- |
  3379. | 1 | VTX_SETTINGS_MIN_CHANNEL | VTX_SETTINGS_MAX_CHANNEL |
  3380. ---
  3381. ### vtx_halfduplex
  3382. Use half duplex UART to communicate with the VTX, using only a TX pin in the FC.
  3383. | Default | Min | Max |
  3384. | --- | --- | --- |
  3385. | ON | | |
  3386. ---
  3387. ### vtx_low_power_disarm
  3388. When the craft is disarmed, set the VTX to its lowest power. `ON` will set the power to its minimum value on startup, increase it to `vtx_power` when arming and change it back to its lowest setting after disarming. `UNTIL_FIRST_ARM` will start with minimum power, but once the craft is armed it will increase to `vtx_power` and it will never decrease until the craft is power cycled.
  3389. | Default | Min | Max |
  3390. | --- | --- | --- |
  3391. | OFF | | |
  3392. ---
  3393. ### vtx_max_power_override
  3394. Some VTXes may report max power incorrectly (i.e. 200mW for a 600mW VTX). Use this to override max supported power. 0 to disable and use whatever VTX reports as its capabilities
  3395. | Default | Min | Max |
  3396. | --- | --- | --- |
  3397. | 0 | 0 | 10000 |
  3398. ---
  3399. ### vtx_pit_mode_chan
  3400. _// TODO_
  3401. | Default | Min | Max |
  3402. | --- | --- | --- |
  3403. | 1 | VTX_SETTINGS_MIN_CHANNEL | VTX_SETTINGS_MAX_CHANNEL |
  3404. ---
  3405. ### vtx_power
  3406. VTX RF power level to use. The exact number of mw depends on the VTX hardware.
  3407. | Default | Min | Max |
  3408. | --- | --- | --- |
  3409. | 1 | VTX_SETTINGS_MIN_POWER | VTX_SETTINGS_MAX_POWER |
  3410. ---
  3411. ### vtx_smartaudio_early_akk_workaround
  3412. Enable workaround for early AKK SAudio-enabled VTX bug.
  3413. | Default | Min | Max |
  3414. | --- | --- | --- |
  3415. | ON | | |
  3416. ---
  3417. ### yaw_deadband
  3418. These are values (in us) by how much RC input can be different before it's considered valid. For transmitters with jitter on outputs, this value can be increased. Defaults are zero, but can be increased up to 10 or so if rc inputs twitch while idle.
  3419. | Default | Min | Max |
  3420. | --- | --- | --- |
  3421. | 5 | 0 | 100 |
  3422. ---
  3423. ### yaw_lpf_hz
  3424. Yaw low pass filter cutoff frequency. Should be disabled (set to `0`) on small multirotors (7 inches and below)
  3425. | Default | Min | Max |
  3426. | --- | --- | --- |
  3427. | 0 | 0 | 200 |
  3428. ---
  3429. ### yaw_rate
  3430. Defines rotation rate on YAW axis that UAV will try to archive on max. stick deflection. Rates are defined in tens of degrees (deca-degrees) per second [rate = dps/10]. That means, rate 20 represents 200dps rotation speed. Default 20 (200dps) is more less equivalent of old Cleanflight/Baseflight rate 0. Max. 180 (1800dps) is what gyro can measure.
  3431. | Default | Min | Max |
  3432. | --- | --- | --- |
  3433. | 20 | 1 | 180 |
  3434. ---