Merge pull request #727 from mikeller/added_frsky_fport_support

Added support for the FrSky FPort protocol.
10.3.x-maintenance
Raphael Coeffic 2017-11-15 00:59:50 +01:00 committed by GitHub
commit 2a55145163
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>');