mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 16:55:24 +03:00
Added switches to enable/disable anti-gravity and dynamic filter to Configuration tab
Added inputs for changing anti-gravity settings to PID Tuning tab
This commit is contained in:
parent
bc86e8bc18
commit
830155a473
6 changed files with 60 additions and 6 deletions
|
@ -80,7 +80,14 @@ var Features = function (config) {
|
|||
if (semver.gte(CONFIG.apiVersion, "1.31.0")) {
|
||||
features.push(
|
||||
{bit: 27, group: 'other', name: 'ESC_SENSOR'}
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
if (semver.gte(CONFIG.apiVersion, "1.36.0")) {
|
||||
features.push(
|
||||
{bit: 28, group: 'other', name: 'ANTI_GRAVITY'},
|
||||
{bit: 29, group: 'other', name: 'DYNAMIC_FILTER'}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue