mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-22 15:55:33 +03:00
Added configuration of KISS ESC Telemetry
This commit is contained in:
parent
0123388a7f
commit
8aa40f1a2c
4 changed files with 144 additions and 135 deletions
|
@ -527,6 +527,9 @@
|
|||
"featureBLACKBOXTip": {
|
||||
"message": "Configure via the BlackBox tab after enabling."
|
||||
},
|
||||
"featureESC_TELEMETRY": {
|
||||
"message": "KISS ESC 24A telemetry support"
|
||||
},
|
||||
"featureCHANNEL_FORWARDING": {
|
||||
"message": "Forward aux channels to servo outputs"
|
||||
},
|
||||
|
@ -777,6 +780,9 @@
|
|||
"portsFunction_TELEMETRY_SMARTPORT": {
|
||||
"message": "SmartPort"
|
||||
},
|
||||
"portsFunction_TELEMETRY_ESC": {
|
||||
"message": "ESC telemetry"
|
||||
},
|
||||
"portsFunction_RX_SERIAL": {
|
||||
"message": "Serial RX"
|
||||
},
|
||||
|
|
|
@ -21,7 +21,8 @@ var Features = function (config) {
|
|||
{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}
|
||||
{bit: 19, group: 'other', name: 'BLACKBOX', haveTip: true},
|
||||
{bit: 27, group: 'other', name: 'ESC_TELEMETRY'}
|
||||
];
|
||||
|
||||
if (semver.gte(config.apiVersion, "1.12.0")) {
|
||||
|
|
|
@ -20,6 +20,7 @@ function MspHelper () {
|
|||
'RX_SERIAL': 6,
|
||||
'BLACKBOX': 7,
|
||||
'TELEMETRY_MAVLINK': 8,
|
||||
'TELEMETRY_ESC': 10
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@ TABS.ports.initialize = function (callback, scrollPosition) {
|
|||
{name: 'TELEMETRY_FRSKY', groups: ['telemetry'], sharableWith: ['msp'], notSharableWith: ['blackbox'], maxPorts: 1},
|
||||
{name: 'TELEMETRY_HOTT', groups: ['telemetry'], sharableWith: ['msp'], notSharableWith: ['blackbox'], maxPorts: 1},
|
||||
{name: 'TELEMETRY_SMARTPORT', groups: ['telemetry'], maxPorts: 1},
|
||||
{name: 'TELEMETRY_ESC', groups: ['telemetry'], maxPorts: 1},
|
||||
{name: 'RX_SERIAL', groups: ['rx'], maxPorts: 1},
|
||||
{name: 'BLACKBOX', groups: ['logging', 'blackbox'], sharableWith: ['msp'], notSharableWith: ['telemetry'], maxPorts: 1},
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue