Merge pull request #133 from iNavFlight/feature-osd

feature OSD
pull/136/head
Paweł Spychalski 8 years ago committed by GitHub
commit 9111365cbb

@ -558,6 +558,9 @@
"featureRSSI_ADCTip": {
"message": "RSSI is a measurement of signal strength and is very handy so you know when your aircraft is going out of range or if it is suffering RF interference."
},
"featureOSD": {
"message": "OSD"
},
"configurationFeatureEnabled": {
"message": "Enabled"
},

@ -423,6 +423,13 @@ var FC = {
{bit: 27, group: 'other', name: 'PWM_SERVO_DRIVER', haveTip: true, showNameInTip: true}
);
}
if (semver.gte(CONFIG.flightControllerVersion, '1.5.0')) {
features.push(
{bit: 29, group: 'other', name: 'OSD', haveTip: false, showNameInTip: false}
);
}
return features.reverse();
},
isFeatureEnabled: function (featureName, features) {

Loading…
Cancel
Save