Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tabs/gps.js')
-rw-r--r--tabs/gps.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/tabs/gps.js b/tabs/gps.js
index 0d103ea8..7254369c 100644
--- a/tabs/gps.js
+++ b/tabs/gps.js
@@ -76,9 +76,15 @@ TABS.gps.initialize = function (callback) {
gps_protocol_e.change(function () {
MISC.gps_type = parseInt($(this).val());
+ if (MISC.gps_type == 0) {
+ $('#nmeaWarning').show();
+ } else {
+ $('#nmeaWarning').hide();
+ }
});
gps_protocol_e.val(MISC.gps_type);
+ gps_protocol_e.change();
var gps_ubx_sbas_e = $('#gps_ubx_sbas');
for (i = 0; i < gpsSbas.length; i++) {