mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-23 16:25:22 +03:00
Initial FrSky ACCST V2.1.x support
This commit is contained in:
parent
2b8b0a2417
commit
fef1e6b5ca
1 changed files with 7 additions and 0 deletions
|
@ -903,6 +903,13 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
|
|||
);
|
||||
}
|
||||
|
||||
if (semver.gte(CONFIG.apiVersion, API_VERSION_1_44)) {
|
||||
spiRxTypes.push(
|
||||
'FRSKY_X_V2',
|
||||
'FRSKY_X_LBT_V2'
|
||||
);
|
||||
}
|
||||
|
||||
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