1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-22 07:45:19 +03:00
This commit is contained in:
Nicola De Pasquale 2020-03-23 09:27:55 +01:00
parent 7ba9f41b87
commit ad91e65699
2 changed files with 24 additions and 6 deletions

View file

@ -702,14 +702,14 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
];
var gpsSbas = [
'Auto-detect',
'European EGNOS',
'North American WAAS',
'Japanese MSAS',
'Indian GAGAN'
i18n.getMessage('gpsSbasAutoDetect'),
i18n.getMessage('gpsSbasEuropeanEGNOS'),
i18n.getMessage('gpsSbasNorthAmericanWAAS'),
i18n.getMessage('gpsSbasJapaneseMSAS'),
i18n.getMessage('gpsSbasIndianGAGAN')
];
if (semver.gte(CONFIG.apiVersion, "1.43.0")) {
gpsSbas.push('NONE');
gpsSbas.push(i18n.getMessage('gpsSbasNone'));
}
var gps_protocol_e = $('select.gps_protocol');