1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-26 17:55:24 +03:00

Move telemetry to receiver tab

This commit is contained in:
Mark Haslinghuis 2022-05-22 04:56:43 +02:00
parent d92a49aac8
commit 6f0bdba5f4
5 changed files with 31 additions and 26 deletions

View file

@ -12,7 +12,7 @@ const Features = function (config) {
{bit: 6, group: 'other', name: 'SOFTSERIAL', haveTip: true},
{bit: 7, group: 'gps', name: 'GPS', haveTip: true},
{bit: 9, group: 'other', name: 'SONAR'},
{bit: 10, group: 'other', name: 'TELEMETRY'},
{bit: 10, group: 'telemetry', name: 'TELEMETRY'},
{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'},

View file

@ -360,7 +360,7 @@ TABS.receiver.initialize = function (callback) {
FC.FEATURE_CONFIG.features.updateData(element);
updateTabList(FC.FEATURE_CONFIG.features);
if (element.attr('name') === "RSSI_ADC") {
if (element.attr('name') === "RSSI_ADC" || element.attr('name') === "TELEMETRY") {
updateSaveButton(true);
}
});