mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-23 08:15:22 +03:00
Merge pull request #720 from wind0r/remove_vtx_feature_in_current_versions
feature vtx got removed with 1.35 and is active by default
This commit is contained in:
commit
d145147ba3
1 changed files with 5 additions and 1 deletions
|
@ -73,8 +73,12 @@ var Features = function (config) {
|
|||
if (semver.gte(CONFIG.apiVersion, "1.20.0")) {
|
||||
features.push(
|
||||
{bit: 18, group: 'other', name: 'OSD'},
|
||||
{bit: 24, group: 'other', name: 'VTX'}
|
||||
);
|
||||
if (!semver.gte(CONFIG.apiVersion, "1.35.0")) {
|
||||
features.push(
|
||||
{bit: 24, group: 'other', name: 'VTX'}
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
if (semver.gte(CONFIG.apiVersion, "1.31.0")) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue