mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-17 05:15:21 +03:00
Merge pull request #752 from mikeller/added_spi_rx_protocols
Added new SPI RX protocols.
This commit is contained in:
commit
8278ba83a4
1 changed files with 8 additions and 0 deletions
|
@ -581,6 +581,14 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
|
|||
'FRSKY_D'
|
||||
];
|
||||
|
||||
if (semver.gte(CONFIG.apiVersion, "1.37.0")) {
|
||||
spiRxTypes.push(
|
||||
'FRSKY_X',
|
||||
'A7105_FLYSKY',
|
||||
'A7105_FLYSKY_2A'
|
||||
);
|
||||
}
|
||||
|
||||
var spiRx_e = $('select.spiRx');
|
||||
for (var i = 0; i < spiRxTypes.length; i++) {
|
||||
spiRx_e.append('<option value="' + i + '">' + spiRxTypes[i] + '</option>');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue