You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title="Select your geographic region. This defines the L-Band frequency and Regional Correction topic. Default: US">
1200
+
title="The device will attempt to use PointPerfect for corrections. The device must be registered through SparkFun. NTRIP/RTCM service requires WiFi. Default: Disabled">
title="If enabled, device will turn off if no external charger is present. This is helpful when deploying in machinery or where a user may forget to turn the device off. Default: Disabled">
@@ -186,6 +194,14 @@ function parseIncoming(msg) {
186
194
ge("messageRateInfoText").setAttribute('data-bs-original-title','The GNSS can output NMEA and RTCMv3 at different rates. For NMEA: select a stream for each message, and set an interval for each stream. For RTCMv3: set an interval for each message group, and enable individual messages.');
187
195
ge("rtcmRateInfoText").setAttribute('data-bs-original-title','RTCM is transmitted by the base at a default of 1Hz for messages 1005, MSM4, and 0.1Hz for 1033. This can be lowered for radios with low bandwidth or tailored to transmit any/all RTCM messages. Limits: 0.1 to 600.');
188
196
ge("enableExtCorrRadioInfoText").setAttribute('data-bs-original-title','Enable external radio corrections: RTCMv3 on mosaic COM2. Default: False');
197
+
198
+
select=ge("pointPerfectService");
199
+
newOption=newOption('Disabled','0');
200
+
select.add(newOption,undefined);
201
+
newOption=newOption('Flex NTRIP/RTCM','1');
202
+
select.add(newOption,undefined);
203
+
newOption=newOption('Flex L-Band North America','2');
204
+
select.add(newOption,undefined);
189
205
}
190
206
elseif(platformPrefix=="Torch"){
191
207
show("baseConfig");
@@ -215,6 +231,11 @@ function parseIncoming(msg) {
215
231
216
232
ge("rtcmRateInfoText").setAttribute('data-bs-original-title','RTCM is transmitted by the base at a default of 1Hz for messages 1005, 1074, 1084, 1094, 1124, and 0.1Hz for 1033. This can be lowered for radios with low bandwidth or tailored to transmit any/all RTCM messages. Limits: 0 to 20. Note: The measurement rate is overridden to 1Hz when in Base mode.');
217
233
234
+
select=ge("pointPerfectService");
235
+
newOption=newOption('Disabled','0');
236
+
select.add(newOption,undefined);
237
+
newOption=newOption('Flex NTRIP/RTCM','1');
238
+
select.add(newOption,undefined);
218
239
}
219
240
elseif(platformPrefix=="Postcard"){
220
241
show("baseConfig");
@@ -245,6 +266,12 @@ function parseIncoming(msg) {
245
266
hide("minCNOConfig");//Not supported on LG290P
246
267
247
268
ge("rtcmRateInfoText").setAttribute('data-bs-original-title','RTCM is transmitted by the base at a default of 1Hz for messages 1005, 1074, 1084, 1094, 1114, 1124, 1134. This can be lowered for radios with low bandwidth or tailored to transmit any/all RTCM messages. Limits: 0 to 20. Note: The measurement rate is overridden to 1Hz when in Base mode.');
0 commit comments