Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/betaflight/betaflight-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--locales/en/messages.json5
-rw-r--r--src/js/msp/MSPHelper.js1
-rw-r--r--src/js/tabs/ports.js1
3 files changed, 1 insertions, 6 deletions
diff --git a/locales/en/messages.json b/locales/en/messages.json
index 9b6d4c7b..7c268c65 100644
--- a/locales/en/messages.json
+++ b/locales/en/messages.json
@@ -1628,10 +1628,7 @@
"message": "OSD (FrSky Protocol)"
},
"portsFunction_VTX_MSP": {
- "message": "VTX (MSP)"
- },
- "portsFunction_MSP_DISPLAYPORT": {
- "message": "OSD (MSP Displayport)"
+ "message": "VTX (MSP + Displayport)"
},
"pidTuningProfileOption": {
"message": "Profile $1"
diff --git a/src/js/msp/MSPHelper.js b/src/js/msp/MSPHelper.js
index 044ff4cb..19387bfa 100644
--- a/src/js/msp/MSPHelper.js
+++ b/src/js/msp/MSPHelper.js
@@ -34,7 +34,6 @@ function MspHelper() {
'LIDAR_TF': 15,
'FRSKY_OSD': 16,
'VTX_MSP': 17,
- 'MSP_DISPLAYPORT': 18,
};
self.REBOOT_TYPES = {
diff --git a/src/js/tabs/ports.js b/src/js/tabs/ports.js
index 9a8b3753..a4a40588 100644
--- a/src/js/tabs/ports.js
+++ b/src/js/tabs/ports.js
@@ -60,7 +60,6 @@ ports.initialize = function (callback) {
if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_45)) {
functionRules.push({ name: 'VTX_MSP', groups: ['peripherals'], sharableWith: ['msp'], maxPorts: 1 });
- functionRules.push({ name: 'MSP_DISPLAYPORT', groups: ['peripherals'], sharableWith: ['msp'], maxPorts: 1 });
}
for (const rule of functionRules) {