Remove deprecated features (#3268)

Remove features
10.9-maintenance
Mark Haslinghuis 2023-01-23 16:13:44 +01:00 committed by GitHub
parent 88b522d172
commit c14a056dae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 48 deletions

View File

@ -1040,9 +1040,6 @@
"featureRX_PPM": {
"message": "PPM/CPPM (single wire)"
},
"featureVBAT": {
"message": "Battery voltage monitoring"
},
"featureINFLIGHT_ACC_CAL": {
"message": "In-flight level calibration"
},
@ -1076,9 +1073,6 @@
"featureTELEMETRY": {
"message": "Telemetry output"
},
"featureCURRENT_METER": {
"message": "Battery current monitoring"
},
"feature3D": {
"message": "3D mode (for use with reversible ESCs)"
},
@ -1100,23 +1094,8 @@
"featureDISPLAYTip": {
"message": "If this feature is enabled, and no display device is connected (or the display device is not powered up), there will be a delay of approx. 10 seconds on every reboot of the flight controller."
},
"featureONESHOT125": {
"message": "ONESHOT ESC support"
},
"featureONESHOT125Tip": {
"message": "Disconnect flight battery and remove props before enabling."
},
"featureBLACKBOX": {
"message": "Blackbox flight data recorder"
},
"featureBLACKBOXTip": {
"message": "Configure via the BlackBox tab after enabling."
},
"featureRX_SPI": {
"message": "SPI Rx (e.g. built-in Rx)"
},
"featureESC_SENSOR": {
"message": "Use KISS/BLHeli_32 ESC telemetry <b>over a separate wire</b>"
"featureOSD": {
"message": "On Screen Display"
},
"featureCHANNEL_FORWARDING": {
"message": "Forward aux channels to servo outputs"
@ -1130,17 +1109,11 @@
"featureAIRMODE": {
"message": "Permanently enable Airmode"
},
"featureSUPEREXPO_RATES": {
"message": "Super Expo Rates"
"featureRX_SPI": {
"message": "SPI Rx (e.g. built-in Rx)"
},
"featureSDCARD": {
"message": "SDCard support (for logging)"
},
"featureOSD": {
"message": "On Screen Display"
},
"featureVTX": {
"message": "Video Transmitter"
"featureESC_SENSOR": {
"message": "Use KISS/BLHeli_32 ESC telemetry <b>over a separate wire</b>"
},
"featureANTI_GRAVITY": {
"message": "Permanently enable"
@ -1151,18 +1124,6 @@
"featureDYNAMIC_FILTER": {
"message": "Dynamic gyro notch filtering"
},
"featureFAILSAFE": {
"message": "Enable Failsafe Stage 2"
},
"featureFAILSAFEOld": {
"message": "Enable Failsafe"
},
"featureFAILSAFETip": {
"message": "<strong>Note:</strong> When Stage 2 is DISABLED, the fallback setting <strong>Auto</strong> is used instead of the user settings for all flightchannels (Roll, Pitch, Yaw and Throttle)."
},
"featureFAILSAFEOldTip": {
"message": "Apply Failsafe settings on RX signal loss"
},
"configurationFeatureEnabled": {
"message": "Enabled"
},

View File

@ -8,7 +8,6 @@ const Features = function (config) {
const features = [
{bit: 0, group: 'rxMode', mode: 'select', name: 'RX_PPM'},
{bit: 1, group: 'batteryVoltage', name: 'VBAT'},
{bit: 2, group: 'other', name: 'INFLIGHT_ACC_CAL'},
{bit: 3, group: 'rxMode', mode: 'select', name: 'RX_SERIAL'},
{bit: 4, group: 'escMotorStop', name: 'MOTOR_STOP'},
@ -17,7 +16,6 @@ const Features = function (config) {
{bit: 7, group: 'gps', name: 'GPS', haveTip: true},
{bit: 9, group: 'other', name: 'SONAR'},
{bit: 10, group: 'telemetry', name: 'TELEMETRY'},
{bit: 11, group: 'batteryCurrent', name: 'CURRENT_METER'},
{bit: 12, group: '3D', name: '3D'},
{bit: 13, group: 'rxMode', mode: 'select', name: 'RX_PARALLEL_PWM'},
{bit: 14, group: 'rxMode', mode: 'select', name: 'RX_MSP'},
@ -25,7 +23,6 @@ const Features = function (config) {
{bit: 16, group: 'other', name: 'LED_STRIP'},
{bit: 17, group: 'other', name: 'DISPLAY', haveTip: true},
{bit: 18, group: 'other', name: 'OSD'},
{bit: 19, group: 'other', name: 'BLACKBOX', haveTip: true},
{bit: 20, group: 'other', name: 'CHANNEL_FORWARDING'},
{bit: 21, group: 'other', name: 'TRANSPONDER', haveTip: true},
{bit: 22, group: 'other', name: 'AIRMODE'},