1
0
Fork 0
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:
Bas Delfos 2017-07-12 13:52:59 +02:00
parent bc86e8bc18
commit 830155a473
6 changed files with 60 additions and 6 deletions

View file

@ -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'}
);
}
}