Skip to content

Commit 8278ba8

Browse files
authored
Merge pull request #752 from mikeller/added_spi_rx_protocols
Added new SPI RX protocols.
2 parents b1c4dbf + 7e7d84e commit 8278ba8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tabs/configuration.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,14 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
581581
'FRSKY_D'
582582
];
583583

584+
if (semver.gte(CONFIG.apiVersion, "1.37.0")) {
585+
spiRxTypes.push(
586+
'FRSKY_X',
587+
'A7105_FLYSKY',
588+
'A7105_FLYSKY_2A'
589+
);
590+
}
591+
584592
var spiRx_e = $('select.spiRx');
585593
for (var i = 0; i < spiRxTypes.length; i++) {
586594
spiRx_e.append('<option value="' + i + '">' + spiRxTypes[i] + '</option>');

0 commit comments

Comments
 (0)