Added recent SPI RX protocols to dropdown menu
parent
9c0d297fe5
commit
332359cc7b
|
@ -678,6 +678,14 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (semver.gte(CONFIG.apiVersion, "1.41.0")) {
|
||||||
|
spiRxTypes.push(
|
||||||
|
'SFHSS',
|
||||||
|
'SPEKTRUM',
|
||||||
|
'FRSKY_X_LBT'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
var spiRx_e = $('select.spiRx');
|
var spiRx_e = $('select.spiRx');
|
||||||
for (var i = 0; i < spiRxTypes.length; i++) {
|
for (var i = 0; i < spiRxTypes.length; i++) {
|
||||||
spiRx_e.append('<option value="' + i + '">' + spiRxTypes[i] + '</option>');
|
spiRx_e.append('<option value="' + i + '">' + spiRxTypes[i] + '</option>');
|
||||||
|
|
Loading…
Reference in New Issue