Skip to content

Commit 909a405

Browse files
committed
Webconfig: Turn off Postcard settings. Fix NavIC spelling.
1 parent 9de1fb5 commit 909a405

File tree

2 files changed

+30
-25
lines changed

2 files changed

+30
-25
lines changed

Firmware/RTK_Everywhere/AP-Config/index.html

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -282,29 +282,33 @@
282282
</div>
283283
</div>
284284

285-
<div class="form-group row">
286-
<label for="minElev" class="col-sm-4 col-6 col-form-label">Min SV Elevation:
287-
<span class="tt" data-bs-placement="right"
288-
title="Minimum elevation in degrees for a GNSS satellite to be used in a fix.">
289-
<span class="icon-info-circle text-primary ms-2"></span>
290-
</span>
291-
</label>
292-
<div class="col-sm-4 col-6">
293-
<input type="number" class="form-control" id="minElev">
294-
<p id="minElevError" class="inlineError"></p>
285+
<div class="form-group row" id="minElevConfig">
286+
<div class="form-group row">
287+
<label for="minElev" class="col-sm-4 col-6 col-form-label">Min SV Elevation:
288+
<span class="tt" data-bs-placement="right"
289+
title="Minimum elevation in degrees for a GNSS satellite to be used in a fix.">
290+
<span class="icon-info-circle text-primary ms-2"></span>
291+
</span>
292+
</label>
293+
<div class="col-sm-4 col-6">
294+
<input type="number" class="form-control" id="minElev">
295+
<p id="minElevError" class="inlineError"></p>
296+
</div>
295297
</div>
296298
</div>
297299

298-
<div class="form-group row">
299-
<label for="minCNO" class="col-sm-4 col-6 col-form-label">Min C/N0:
300-
<span class="tt" data-bs-placement="right"
301-
title="Minimum satellite signal level to be used in a fix. Default: 6dBHz for ZED-F9P and 10dBHz for UM980.">
302-
<span class="icon-info-circle text-primary ms-2"></span>
303-
</span>
304-
</label>
305-
<div class="col-sm-4 col-6">
306-
<input type="number" class="form-control" id="minCNO">
307-
<p id="minCNOError" class="inlineError"></p>
300+
<div class="form-group row" id="minCNOConfig">
301+
<div class="form-group row">
302+
<label for="minCNO" class="col-sm-4 col-6 col-form-label">Min C/N0:
303+
<span class="tt" data-bs-placement="right"
304+
title="Minimum satellite signal level to be used in a fix. Default: 6dBHz for ZED-F9P and 10dBHz for UM980.">
305+
<span class="icon-info-circle text-primary ms-2"></span>
306+
</span>
307+
</label>
308+
<div class="col-sm-4 col-6">
309+
<input type="number" class="form-control" id="minCNO">
310+
<p id="minCNOError" class="inlineError"></p>
311+
</div>
308312
</div>
309313
</div>
310314

@@ -331,8 +335,8 @@
331335
<input class="form-check-input" type="checkbox" value="" id="constellation_GPS">
332336
</div>
333337
<div id="constellationNavic" class="form-check mt-3 box-margin20">
334-
<label class="form-check-label" for="constellation_MAVIC">NAVIC</label>
335-
<input class="form-check-input" type="checkbox" value="" id="constellation_NAVIC">
338+
<label class="form-check-label" for="constellation_NavIC">NAVIC</label>
339+
<input class="form-check-input" type="checkbox" value="" id="constellation_NavIC">
336340
</div>
337341
<div id="constellationQzss" class="form-check mt-3 box-margin20">
338342
<label class="form-check-label" for="constellation_QZSS">QZSS</label>
@@ -1653,8 +1657,7 @@
16531657
</div>
16541658

16551659
<div class="form-check mt-3">
1656-
<input type="checkbox" value="" id="enableNtripCaster"
1657-
onClick="tcpServerBoxes()">
1660+
<input type="checkbox" value="" id="enableNtripCaster" onClick="tcpServerBoxes()">
16581661
<label for="enableNtripCaster">NTRIP Caster</label>
16591662
<span class="tt" data-bs-placement="right"
16601663
title="If enabled, device will emulate an NTRIP caster, allowing inbound NTRIP Clients to connect and get RTCM over the given port.">

Firmware/RTK_Everywhere/AP-Config/src/main.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,9 @@ function parseIncoming(msg) {
235235
hide("constellationSbas"); //Not supported on LG290P
236236
show("constellationNavic");
237237

238-
hide("dynamicModel"); //Not supported on LG290P
238+
hide("dynamicModelDropdown"); //Not supported on LG290P
239+
hide("minElevConfig"); //Not supported on LG290P
240+
hide("minCNOConfig"); //Not supported on LG290P
239241

240242
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.');
241243
}

0 commit comments

Comments
 (0)