1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 16:25:22 +03:00

Added feature for SDCard.

This commit is contained in:
Michael Keller 2017-02-23 14:37:51 +13:00
parent 1809723142
commit d503c79ebb
2 changed files with 13 additions and 4 deletions

View file

@ -53,10 +53,16 @@ var Features = function (config) {
);
}
if (semver.gte(config.flightControllerVersion, "2.8.0") && !semver.gte(config.flightControllerVersion, "3.0.0")) {
features.push(
{bit: 23, group: 'pidTuning', name: 'SUPEREXPO_RATES'}
);
if (semver.gte(config.flightControllerVersion, "2.8.0")) {
if (!semver.gte(config.flightControllerVersion, "3.0.0")) {
features.push(
{bit: 23, group: 'pidTuning', name: 'SUPEREXPO_RATES'}
);
} else {
features.push(
{bit: 23, group: 'other', name: 'SDCARD'}
);
}
}
if (semver.gte(config.flightControllerVersion, "3.0.0")) {