mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-16 21:05:30 +03:00
Renamed ESC Telemetry to ESC Sensor
This commit is contained in:
parent
bcb361cac6
commit
35e307d1ba
4 changed files with 7 additions and 7 deletions
|
@ -527,8 +527,8 @@
|
||||||
"featureBLACKBOXTip": {
|
"featureBLACKBOXTip": {
|
||||||
"message": "Configure via the BlackBox tab after enabling."
|
"message": "Configure via the BlackBox tab after enabling."
|
||||||
},
|
},
|
||||||
"featureESC_TELEMETRY": {
|
"featureESC_SENSOR": {
|
||||||
"message": "KISS ESC 24A telemetry support"
|
"message": "Use KISS ESC 24A telemetry as sensor"
|
||||||
},
|
},
|
||||||
"featureCHANNEL_FORWARDING": {
|
"featureCHANNEL_FORWARDING": {
|
||||||
"message": "Forward aux channels to servo outputs"
|
"message": "Forward aux channels to servo outputs"
|
||||||
|
@ -798,8 +798,8 @@
|
||||||
"portsFunction_TELEMETRY_SMARTPORT": {
|
"portsFunction_TELEMETRY_SMARTPORT": {
|
||||||
"message": "SmartPort"
|
"message": "SmartPort"
|
||||||
},
|
},
|
||||||
"portsFunction_TELEMETRY_ESC": {
|
"portsFunction_ESC_SENSOR": {
|
||||||
"message": "ESC Telemetry"
|
"message": "ESC"
|
||||||
},
|
},
|
||||||
"portsFunction_RX_SERIAL": {
|
"portsFunction_RX_SERIAL": {
|
||||||
"message": "Serial RX"
|
"message": "Serial RX"
|
||||||
|
|
|
@ -67,7 +67,7 @@ var Features = function (config) {
|
||||||
|
|
||||||
if (semver.gte(config.flightControllerVersion, "3.1.0")) {
|
if (semver.gte(config.flightControllerVersion, "3.1.0")) {
|
||||||
features.push(
|
features.push(
|
||||||
{bit: 27, group: 'other', name: 'ESC_TELEMETRY'}
|
{bit: 27, group: 'other', name: 'ESC_SENSOR'}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,7 @@ function MspHelper () {
|
||||||
'RX_SERIAL': 6,
|
'RX_SERIAL': 6,
|
||||||
'BLACKBOX': 7,
|
'BLACKBOX': 7,
|
||||||
'TELEMETRY_MAVLINK': 9,
|
'TELEMETRY_MAVLINK': 9,
|
||||||
'TELEMETRY_ESC': 10
|
'ESC_SENSOR': 10
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ TABS.ports.initialize = function (callback, scrollPosition) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (semver.gte(CONFIG.flightControllerVersion, "3.1.0")) {
|
if (semver.gte(CONFIG.flightControllerVersion, "3.1.0")) {
|
||||||
var escTlmFunctionRule = {name: 'TELEMETRY_ESC', groups: ['sensors'], maxPorts: 1};
|
var escTlmFunctionRule = {name: 'ESC_SENSOR', groups: ['sensors'], maxPorts: 1};
|
||||||
functionRules.push(escTlmFunctionRule);
|
functionRules.push(escTlmFunctionRule);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue