'use strict;' var Features = function (config) { var features = [ {bit: 0, group: 'rxMode', mode: 'group', name: 'RX_PPM'}, {bit: 1, group: 'batteryVoltage', name: 'VBAT'}, {bit: 2, group: 'other', name: 'INFLIGHT_ACC_CAL'}, {bit: 3, group: 'rxMode', mode: 'group', name: 'RX_SERIAL'}, {bit: 4, group: 'esc', name: 'MOTOR_STOP'}, {bit: 5, group: 'other', name: 'SERVO_TILT'}, {bit: 6, group: 'other', name: 'SOFTSERIAL', haveTip: true}, {bit: 7, group: 'gps', name: 'GPS', haveTip: true}, {bit: 8, group: 'rxFailsafe', name: 'FAILSAFE'}, {bit: 9, group: 'other', name: 'SONAR'}, {bit: 10, group: 'other', name: 'TELEMETRY'}, {bit: 11, group: 'batteryCurrent', name: 'CURRENT_METER'}, {bit: 12, group: 'other', name: '3D'}, {bit: 13, group: 'rxMode', mode: 'group', name: 'RX_PARALLEL_PWM'}, {bit: 14, group: 'rxMode', mode: 'group', name: 'RX_MSP'}, {bit: 15, group: 'rssi', name: 'RSSI_ADC'}, {bit: 16, group: 'other', name: 'LED_STRIP'}, {bit: 17, group: 'other', name: 'DISPLAY'}, {bit: 19, group: 'other', name: 'BLACKBOX', haveTip: true} ]; if (semver.gte(config.apiVersion, "1.12.0")) { features.push( {bit: 20, group: 'other', name: 'CHANNEL_FORWARDING'} ); } if (semver.gte(config.apiVersion, "1.16.0")) { features.push( {bit: 21, group: 'other', name: 'TRANSPONDER', haveTip: true} ); } if (semver.gte(config.flightControllerVersion, "2.8.0")) { features.push( {bit: 22, group: 'other', name: 'AIRMODE'}, {bit: 23, group: 'pidTuning', name: 'SUPEREXPO_RATES'}, {bit: 24, group: 'other', name: 'OSD'} ); } this._features = features; } Features.prototype.isFeatureEnabled = function (featureSet, featureName) { var features = this._features; for (var i = 0; i < features.length; i++) { if (features[i].name === featureName && bit_check(featureSet, features[i].bit)) { return true; } } return false; } Features.prototype.generateElements = function (featuresElements, radioGroups) { var features = this._features; for (var i = 0; i < features.length; i++) { var row_e; var feature_tip_html = ''; if (features[i].haveTip) { feature_tip_html = '
'; } if (features[i].mode === 'group') { row_e = $('