Added support for the FrSky FPort protocol.

10.3.x-maintenance
mikeller 2017-11-15 02:03:44 +13:00
parent 89c417f608
commit 70e17ad49f
2 changed files with 5 additions and 0 deletions

1
.gitignore vendored
View File

@ -8,3 +8,4 @@ npm-debug.log
cache/
apps/
dist/
debug/

View File

@ -552,6 +552,10 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
serialRXtypes.push('TARGET_CUSTOM');
}
if (semver.gte(CONFIG.apiVersion, "1.37.0")) {
serialRXtypes.push('FrSky FPort');
}
var serialRX_e = $('select.serialRX');
for (var i = 0; i < serialRXtypes.length; i++) {
serialRX_e.append('<option value="' + i + '">' + serialRXtypes[i] + '</option>');