sbp-settings 0.7.0

SwiftNav settings API library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
---

- group: aar
  name: pnm_id
  expert: false
  type: integer
  units: N/A
  default value: '0'
  readonly: false
  Description: PNM Identification. Range [0..2]. 0 = Non-locomotive, startup, advanced configuration; 1 = PNM1; 2 = PNM2
  Notes:

- group: aar
  name: pcps_pos_reference
  expert: false
  type: string
  units: N/A
  default value: '1'
  readonly: false
  Description: Reported locomotive position reference. Range [1..4]. 1 = Antenna ARP; 2 = Antenna Centroid; 3 = Front Coupler; 4 = Rear Coupler
  Notes: Valid locomotive attitude is required to compute Antenna Centroid, Front Coupler and Rear Coupler positions. Attitude may not be available after receiver start before the locomotive movement in a good sky visibility conditions.

- group: aar
  name: pcsh_ss_ssd_thr_high_precision_mph
  expert: true
  type: float
  units: MPH
  default_value: 0.05
  Description: Speed SD threshold below which speed High Precision mode is reported. Range [0.0..1000.0].
  Notes: Default value is as defined in AAR S-9103 v1.0 standard.

- group: aar
  name: pcsh_ss_ssd_thr_standard_mph
  expert: true
  type: float
  units: MPH
  default_value: 0.5
  Description: Speed SD threshold below which speed Standard mode is reported. Range [0.0..1000.0].
  Notes: Default value is as defined in AAR S-9103 v1.0 standard.

- group: aar
  name: pcsh_ss_ssd_thr_degraded_mph
  expert: true
  type: float
  units: MPH
  default_value: 1.0
  Description: Speed SD threshold below which speed Degraded mode is reported. Range [0.0..1000.0].
  Notes: Speed Very Low Confidence mode is reported when the speed is valid and speed SD is above this threshold. Default value is as defined in AAR S-9103 v1.0 standard.

- group: aar
  name: pcsh_ss_hsd_thr_high_precision_deg
  expert: true
  type: float
  units: degrees
  default_value: 1.0
  Description: Heading SD threshold below which heading High Precision mode is reported. Range [0.0..180.0].
  Notes: Default value is as defined in AAR S-9103 v1.0 standard.

- group: aar
  name: pcsh_ss_hsd_thr_standard_deg
  expert: true
  type: float
  units: degrees
  default_value: 5.0
  Description: Heading SD threshold below which heading Standard mode is reported. Range [0.0..180.0].
  Notes: Default value is as defined in AAR S-9103 v1.0 standard.

- group: aar
  name: pcsh_ss_hsd_thr_degraded_deg
  expert: true
  type: float
  units: degrees
  default_value: 20.0
  Description: Heading SD threshold below which heading Degraded mode is reported. Range [0.0..180.0].
  Notes: Heading Very Low Confidence mode is reported when the heading is valid and heading SD is above this threshold. Default value is as defined in AAR S-9103 v1.0 standard.

- group: aar
  name: pcof_along_track_offset_m
  expert: false
  type: float
  units: m
  default_value: 0.0
  Description: Antenna ARP Along Track Offset. Range [0.0..655.35].
  Notes: Distance is measured from the pulling face of the front coupler towards the rear of the locomotive.

- group: aar
  name: pcof_cross_track_offset_m
  expert: false
  type: float
  units: m
  default_value: 0.0
  Description: Antenna ARP Cross Track Offset. Range [-327.68..327.67].
  Notes: Distance is measured from the locomotive centerline towards the right of the locomotive.

- group: aar
  name: pcof_vertical_offset_m
  expert: false
  type: float
  units: m
  default_value: 0.0
  Description: Antenna ARP Vertical Offset. Range [0.0..655.35].
  Notes: Distance is measured from the top of the rail up.

- group: aar
  name: pcof_along_track_offset_ac_m
  expert: false
  type: float
  units: m
  default_value: 0.0
  Description: Antenna Centroid Along Track Offset. Range [0.0..655.35].
  Notes: Distance is measured from the pulling face of the front coupler towards the rear of the locomotive.

- group: aar
  name: pcof_cross_track_offset_ac_m
  expert: false
  type: float
  units: m
  default_value: 0.0
  Description: Antenna Centroid Cross Track Offset. Range [-327.68..327.67].
  Notes: Distance is measured from the locomotive centerline towards the right of the locomotive.

- group: aar
  name: pcof_vertical_offset_ac_m
  expert: false
  type: float
  units: m
  default_value: 0.0
  Description: Antenna Centroid Vertical Offset. Range [0.0..655.35].
  Notes: Distance is measured from the top of the rail up.

- group: aar
  name: pcof_loco_length_m
  expert: false
  type: float
  units: m
  default_value: 0.0
  Description: Locomotive length. Range [0.0..655.35].
  Notes: Distance is measured from the pulling face of the front coupler to the pulling face of the rear coupler.

- group: aar
  name: loco_coupler_height_m
  expert: false
  type: float
  units: m
  default_value: 0.84
  Description: Locomotive coupler height. Range [0.0..655.35].
  Notes: Distance is measured from the top of the rail up.

- group: aar
  name: pccf_mfg_id
  expert: true
  type: integer
  units: N/A
  default value: '0'
  readonly: false
  Description: Manufacturer ID. Range [0..255].
  Notes:

- group: aar
  name: pccf_device_reported
  expert: true
  type: integer
  units: N/A
  default value: '0'
  readonly: false
  Description: Device being reported. Range [0..65535].
  Notes:

- group: aar
  name: pccf_equipment_description
  expert: true
  type: string
  units: N/A
  default value: ''
  readonly: false
  Description: Equipment description. Maximum 32 characters.
  Notes:

- group: aar
  name: pcsd_imu_stat_period_s
  expert: true
  type: integer
  units: N/A
  default value: '1'
  readonly: false
  Description: IMU statistic computation period. Range [0..1000].
  Notes: When set to zero statistic will be computed at the position output rate.

- group: acquisition
  name: sbas_acquisition_enabled
  expert: false
  type: boolean
  units: N/A
  default value: 'True'
  readonly: false
  enumerated possible values: True,False
  Description: Enable SBAS acquisition.
  Notes: If SBAS satellites are already being tracked, this setting will not remove them from tracking or exclude SBAS corrections from being used in positioning - the setting must be saved and the receiver must be restarted for this to take effect.

- group: acquisition
  name: bds2_acquisition_enabled
  expert: false
  type: boolean
  units: N/A
  default value: 'True'
  readonly: false
  enumerated possible values: True,False
  Description: Enable Beidou2 acquisition.
  Notes: If Beidou2 satellites are already being tracked, this setting will not remove them from tracking or exclude them from being used in positioning - the setting must be saved and the receiver must be restarted for this to take effect.

- group: acquisition
  name: galileo_acquisition_enabled
  expert: false
  type: boolean
  units: N/A
  default value: 'True'
  readonly: false
  enumerated possible values: True,False
  Description: Enable Galileo acquisition.
  Notes: If Galileo satellites are already being tracked, this setting will not remove them from tracking or exclude them from being used in positioning - the setting must be saved and the receiver must be restarted for this to take effect.

- group: acquisition
  name: qzss_acquisition_enabled
  expert: true
  type: boolean
  units: N/A
  default value: 'False'
  readonly: false
  enumerated possible values: True,False
  Description: Enable QZSS acquisition.
  Notes:

- group: acquisition
  name: glonass_acquisition_enabled
  expert: false
  type: boolean
  units: N/A
  default value: 'True'
  readonly: false
  enumerated possible values: True,False
  Description: Enable GLONASS acquisition.
  Notes: If GLONASS satellites are already being tracked, this setting will not remove them from tracking or exclude them from being used in positioning - the setting must be saved and the receiver must be restarted for this to take effect.

- group: acquisition
  name: almanacs_enabled
  expert: true
  type: boolean
  units: N/A
  default value: 'False'
  readonly: false
  enumerated possible values: True,False
  Description: Enable the almanac-based acquisition.
  Notes:

- group: cell_modem
  name: modem_type
  expert: true
  type: enum
  enumerated possible values: GSM,CDMA
  default value: 'GSM'
  readonly: false
  Description: The type of cell modem in use.

- group: cell_modem
  name: debug
  expert: true
  type: boolean
  default value: 'False'
  readonly: false
  Description: Additional debug messages for cell modem. This setting must be saved and the device rebooted for it to take effect.

- group: cell_modem
  name: enable
  expert: true
  type: boolean
  default value: 'False'
  readonly: false
  units: N/A

- group: cell_modem
  name: device
  expert: true
  type: string
  default value: 'ttyACM0'
  readonly: false
  units: N/A

- group: cell_modem
  name: APN
  expert: true
  type: string
  default value: INTERNET
  readonly: false
  Description: Access point name (provided by cell carrier).
  units: N/A

- group: cell_modem
  name: device_override
  expert: true
  type: string
  default value: ''
  readonly: false
  Description: Override the device used for cell modem connectivity. If left empty, uses default device discovery to determine the correct device to use.
  Notes: Cell modem 'enable' must be 'False' in order to change this setting.

- group: ethernet
  name: interface_mode
  expert: false
  type: enum
  enumerated possible values: Config,Active
  units: N/A
  default value: 'Active'
  readonly: false
  Description: Ethernet configuration mode.
  Notes: |
    "Config" IP configuration can be changed freely, but no change is made on the device. Returning to 'Active' mode will refresh ethernet connection with current values.

    "Active" The current IP configuration is sent to the device and updated. Afterward, no IP settings can be changed until returned to 'Config' mode.

- group: ethernet
  name: ip_config_mode
  expert: false
  type: enum
  enumerated possible values: Static,DHCP
  units: N/A
  default value: 'Static'
  readonly: false
  Description: Ethernet configuration mode.
  Notes: "If DHCP is chosen the IP address will be assigned automatically. Note: The DHCP assigned IP address cannot be viewed under the Settings tab, instead use the Advanced -> Networking Tab and click on 'Refresh Network Status'."

- group: ethernet
  name: ip_address
  expert: false
  type: string
  units: N/A
  default value: '192.168.0.222'
  readonly: false
  Description: The static IP address.
  Notes: "The configured IP address in XXX.XXX.XXX.XXX format. Note: If DHCP is used, the DHCP assigned IP address cannot be viewed under the Settings tab, instead use the Advanced -> Networking Tab and click on 'Refresh Network Status'."

- group: ethernet
  name: netmask
  expert: false
  type: string
  units: N/A
  default value: '255.255.255.0'
  readonly: false
  Description: The netmask for the IP config.
  Notes: The configured netmask in XXX.XXX.XXX.XXX format.

- group: ethernet
  name: gateway
  expert: false
  type: string
  units: N/A
  default value: '192.168.0.1'
  readonly: false
  Description: The default gateway for the IP config.
  Notes: The configured gateway in XXX.XXX.XXX.XXX format.

- group: ethernet
  name: ip_address2
  expert: true
  type: string
  units: N/A
  default value: ''
  readonly: false
  Description: The secondary static IP address in XXX.XXX.XXX.XXX format.
  Notes: Secondary IP is used only if the ip_config_mode is set to static and ip_address2 is set to a valid IP address on the same subnet as the main IP address.

- group: ext_event_a
  name: edge_trigger
  expert: false
  type: enum
  units: N/A
  default value: None
  readonly: false
  enumerated possible values: None,Rising,Falling,Both
  Description: Select edges to trigger timestamped event capture.
  Notes: You can use this to record the exact time that some external
    event in your system occurred, e.g. camera shutter time. Upon
    detecting the event, receiver will generate a MSG_EXT_EVENT message
    reporting the event, including a timestamp accurate to better than
    a microsecond.

- group: ext_event_a
  name: sensitivity
  expert: false
  type: integer
  units: us (microseconds)
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Minimum time between events (0 = disabled).
  Notes: Any event that is triggered within the sensitivity window after the previous event will be ignored and no MSG_EXT_EVENT will be generated.

- group: ext_event_b
  name: edge_trigger
  expert: true
  type: enum
  units: N/A
  default value: None
  readonly: false
  enumerated possible values: None,Rising,Falling,Both
  Description: Duro only. Select edges to trigger timestamped event capture.
  Notes: You can use this to record the exact time that some external
    event in your system occurred, e.g. camera shutter time. Upon
    detecting the event, receiver will generate a MSG_EXT_EVENT message
    reporting the event, including a timestamp accurate to better than
    a microsecond.

- group: ext_event_b
  name: sensitivity
  expert: true
  type: integer
  units: us (microseconds)
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Duro only. Minimum time between events (0 = disabled).
  Notes: Any event that is triggered within the sensitivity window after the previous event will be ignored and no MSG_EXT_EVENT will be generated.

- group: ext_event_c
  name: edge_trigger
  expert: true
  type: enum
  units: N/A
  default value: None
  readonly: false
  enumerated possible values: None,Rising,Falling,Both
  Description: Duro only. Select edges to trigger timestamped event capture.
  Notes: You can use this to record the exact time that some external
    event in your system occurred, e.g. camera shutter time. Upon
    detecting the event, receiver will generate a MSG_EXT_EVENT message
    reporting the event, including a timestamp accurate to better than
    a microsecond.

- group: ext_event_c
  name: sensitivity
  expert: true
  type: integer
  units: us (microseconds)
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Duro only. Minimum time between events (0 = disabled).
  Notes: Any event that is triggered within the sensitivity window after the previous event will be ignored and no MSG_EXT_EVENT will be generated.

- group: frontend
  expert: false
  name: antenna_selection
  type: enum
  units: N/A
  default value: 'Primary'
  readonly: false
  enumerated possible values: Primary,Secondary
  Description: Determines which antenna to use.
  Notes: This setting selects the antenna input that should be used by the receiver.
    Piksi Multi boards and Duro units ship with only a "Primary" antenna connector,
    so this should always be set to "Primary."

- group: frontend
  name: antenna_bias
  expert: false
  type: bool
  units: N/A
  default value: 'True'
  readonly: false
  Description: Enable/Disable 4.85V antenna bias.
  Notes: Most active antennas require an antenna bias in order to power
    the amplifier in the antenna.

- group: frontend
  name: use_ext_clk
  expert: false
  type: bool
  units: N/A
  default value: 'False'
  readonly: false
  Description: Enable/Disable External Clock Input.
  Notes: This setting toggles the hardware switch for Piksi Multi 10Mhz clock source.
    When true, Piksi Multi will be configured to use an external clock source rather
    than its onboard oscillator. It is only available on Piksi Multi hardware versions
    greater than or equal to 5.1 (00108-05 rev 1). The external clock input signal can
    be provided on the Piksi Multi evaluation board through a labeled SMA connector.
    It is not exposed on Duro.

- group: frontend
  name: activate_clock_steering
  expert: true
  type: bool
  units: N/A
  default value: 'False'
  readonly: false
  Description: Enable/Disable Clock Steering of RF frontend.
  Notes: This setting toggles the clock steering for the RF frontend. If timing drift
    is detected in the onboard oscillator, the clock will be continuously adjusted to align
    more precisely with clock data encoded within the GNSS signals received by the device.

- group: imu
  name: imu_raw_output
  expert: false
  type: boolean
  default value: 'False'
  readonly: false
  Description: Enable/Disable IMU raw data output from onboard Bosch BMI160 IMU.
  Notes:  The IMU raw data can be seen in the Advanced Tab of the Swift Console.
    The default enabled_sbp_messages settings on all interfaces decimate the
    raw IMU messages sent by the device by a factor of 50 to reduce bandwidth.

- group: imu
  name: imu_rate
  expert: false
  type: enum
  default value: '100'
  readonly: false
  enumerated possible values: 25,50,100,200
  units: Hz
  Description: The data rate (in Hz) for IMU raw output.
  Notes: It is recommended to use Ethernet or USB for IMU data output
    for data rates over 25 Hz. Make sure that the rate is greater than that of
    INS solutions.

- group: imu
  name: acc_range
  expert: false
  type: enum
  default value: '8'
  readonly: false
  enumerated possible values: 2,4,8,16
  units: g
  Description: The approximate range of accelerations that can be measured.
  Notes: When 2 g is chosen, it means the accelerometer is scaled to measure
    about +/- 2 g of acceleration. Refer to the IMU datasheet for detailed information.

- group: imu
  name: gyro_range
  expert: false
  type: enum
  default value: '125'
  readonly: false
  enumerated possible values: 125,250,500,1000,2000
  units: deg/s
  Description: The approximate range of angular rate that can be measured.
  Notes: When 125 is chosen, it means the gyro is scaled to measure
    about +/- 125 deg/s of angular rate. Refer to the IMU datasheet for detailed information.

- group: imu
  name: mag_raw_output
  expert: false
  type: boolean
  default value: 'False'
  readonly: false
  Description: Enable/Disable raw data output from onboard Bosch BMM150 Magnetometer.
  Notes:  The magnetometer raw data can be seen in the Advanced Tab of the Swift Console. imu.imu_raw_output must also be set to True for the magnetometer output to be enabled.

- group: imu
  name: mag_rate
  expert: false
  type: enum
  default value: '12.5'
  readonly: false
  enumerated possible values: 6.25,12.5,25
  units: Hz
  Description: The data rate (in Hz) for magnetometer raw output.

- group: ins
  name: output_mode
  expert: false
  type: enum
  units: N/A
  default value: 'Disabled'
  readonly: false
  enumerated possible values: Disabled, Loosely Coupled
  Description: Determines output mode of the inertial navigation outputs.
  Notes: |
    Disabled - output GNSS-only solutions.
    Loosely Coupled - output loosely coupled solutions, utilizing GNSS and inertial data.

- group: ins
  name: odometry_noise_1
  expert: true
  type: double
  units: m/s
  default value: '0.28'
  readonly: false
  Description: Noise parameter for odometry source 1

- group: ins
  name: odometry_noise_2
  expert: true
  type: double
  units: m/s
  default value: '0.28'
  readonly: false
  Description: Noise parameter for odometry source 2

- group: ins
  name: odometry_noise_3
  expert: true
  type: double
  units: m/s
  default value: '0.28'
  readonly: false
  Description: Noise parameter for odometry source 3

- group: ins
  name: odometry_noise_4
  expert: true
  type: double
  units: m/s
  default value: '0.28'
  readonly: false
  Description: Noise parameter for odometry source 4

- group: ins
  name: vehicle_frame_roll
  expert: false
  type: double
  units: degrees
  default value: '0'
  readonly: false
  Description: Roll angle representing rotation from vehicle frame to device frame.
  Notes:       The euler angles are applied extrinsically in order roll, pitch, then yaw
    about the defined vehicle axes to describe how the vehicle should rotate to align
    with the device frame as mounted in the vehicle. These rotations directly affect
    body velocities, attitude outputs.

- group: ins
  name: vehicle_frame_pitch
  expert: false
  type: double
  units: degrees
  default value: '0'
  readonly: false
  Description: Pitch angle representing rotation from vehicle frame to device frame.
  Notes:       The euler angles are applied extrinsically in order roll, pitch, then yaw
    about the defined vehicle axes to describe how the vehicle should rotate to align
    with the device frame as mounted in the vehicle. These rotations directly affect
    body velocities, attitude outputs.

- group: ins
  name: vehicle_frame_yaw
  expert: false
  type: double
  units: degrees
  default value: '0'
  readonly: false
  Description: Yaw angle representing rotation from vehicle frame to device frame.
  Notes:       The euler angles are applied extrinsically in order roll, pitch, then yaw
    about the defined vehicle axes to describe how the vehicle should rotate to align
    with the device frame as mounted in the vehicle. These rotations directly affect
    body velocities, attitude outputs.

- group: ins
  name: antenna_offset_x
  expert: false
  type: double
  units: meters
  default value: '0'
  readonly: false
  Description: X component of vector from device frame to antenna phase center
  Notes:       The vector is measured in the device frame according to the markings on the device.

- group: ins
  name: antenna_offset_y
  expert: false
  type: double
  units: meters
  default value: '0'
  readonly: false
  Description: Y component of vector from device frame to antenna phase center
  Notes:       The vector is measured in the device frame according to the markings on the device.

- group: ins
  name: antenna_offset_z
  expert: false
  type: double
  units: meters
  default value: '-0.12674'
  readonly: false
  Description: Z component of vector from device frame to antenna phase center
  Notes:       The vector is measured in the device frame according to the markings on the device. The default
    value represents the offset from the Duro Device Frame to the antenna phase center when the antenna
    mounting bracket shipped with Duro is in use.

- group: ins
  name: vehicle_frame_offset_x
  expert: false
  type: double
  units: meters
  default value: '0'
  readonly: false
  Description: X component of vector from device frame to vehicle frame origin in which inertial outputs are provided
  Notes: The vector is measured in the device frame according to the markings on the device. In order to output inertial solutions at the antenna phase center, this should be the same value (both sign and magnitude) as antenna_offset_x setting.

- group: ins
  name: vehicle_frame_offset_y
  expert: false
  type: double
  units: meters
  default value: '0'
  readonly: false
  Description: Y component of vector from device frame to vehicle frame origin in which inertial outputs are provided
  Notes: The vector is measured in the device frame according to the markings on the device. In order to output inertial solutions at the antenna phase center, this should be the same value (both sign and magnitude) as antenna_offset_x setting.

- group: ins
  name: vehicle_frame_offset_z
  expert: false
  type: double
  units: meters
  default value: '-0.12674'
  readonly: false
  Description: Z component of vector from device frame to vehicle frame origin in which inertial outputs are provided
  Notes: The vector is measured in the device frame according to the markings on the device. In order to output inertial solutions at the antenna phase center, this should be the same value (both sign and magnitude) as antenna_offset_x setting.
    The default value represents vehicle outpus at the antenna phase center when the Duro antenna mounting bracket is in use.

- group: ins
  name: constrain_vehicle_sideslip
  expert: true
  type: boolean
  units: N/A
  default value: false
  readonly: false
  Description: Experimental non-holonomic constraint feature that allows inertial system to make assumptions about vehicle dynamics
  Notes: This settings should only be enabled provided the vehicle frame Euler angles are measured precisely and are correct. It assumes a vehicle can have no velocity in the direction aligned with the vehicle "y" axis (i.e no sideslip). This is a reasonable assumption for passenger vehicles and many tractors.

- group: ins
  name: stillness_detection_enable
  expert: true
  type: boolean
  units: N/A
  default value: false
  readonly: false
  Description: Experimental stillness detection feature
  Notes: This settings attempts to automatically determine that a particular vehicle is still based upon its vibration and dynamics profile. It can improve performance on vehicles when stopped and/or idling.

- group: ins
  name: dr_duration_max
  expert: false
  type: double
  units: seconds
  default value: '600'
  readonly: false
  Description: Indicates the maximum duration in seconds for which the inertial system will dead reckon.
  Notes: The default value of 600 seconds was chosen as the expected duration for which the Duro Inertial solution can maintain sub-meter accuracy.

- group: ins
  name: dr_timeout_pos_stddev
  expert: false
  type: double
  units: meters
  default value: '20'
  readonly: false
  Description: Indicates the maximum standard deviation of position for which the inertial system will dead reckon.
  Notes: The default value of 20 meters was chosen as the logical minimum standard of the position accuracy during dead reckon mode.

- group: ins
  name: build_name
  expert: true
  type: string
  units: N/A
  default value: N/A
  readonly: true
  Description: inertial navigation system build name

- group: ins
  name: build_date
  expert: true
  type: string
  units: N/A
  default value: N/A
  readonly: true
  Description: inertial navigation system build date

- group: ins
  name: antenna_offset_deviation
  type: double
  units: meters
  default value: '0.05'
  readonly: False
  Description: Standard deviation of antenna lever arm measurement.
  Notes: |
    Must be greater than 0.

    This value should overestimate the actual expected error.

- group: ins
  name: pos_std_deviation_cutoff_meters
  expert: true
  type: double
  units: meters
  default value: '30'
  readonly: False
  Description: GNSS position standard deviation cutoff - only solutions with a standard deviation lower than this will be used.
  Notes: |

- group: ins
  name: vehicle_frame_deviation
  type: double
  units: degrees
  default value: '1'
  readonly: False
  Description: Standard deviation of misalignment measurement.
  Notes: |
    Must be greater than 0.

    This value should overestimate the actual expected error.

- group: ins
  name: fused_soln_freq
  type: double
  expert: False
  units: hertz
  default value: '10'
  readonly: False
  Description: Fusion engine output rate in Hertz.
  Notes: Make sure that the rate is less than the imu rate.

- group: ins
  name: solution_accuracy_confidence_level
  type: enum
  expert: true
  units: percent
  default value: '68'
  readonly: False
  enumerated possible values: 40,68
  Description: Sets the confidence level for the message SBP MSG_LLH_ACC.
  Notes: |

- group: ins
  name: gyro_angular_random_walk_degpersqrth_sensorframe_x
  type: double
  expert: true
  units: degrees per square root hour
  default value: '.69'
  readonly: False
  Description: Angular rate white noise.
  Notes: |

- group: ins
  name: gyro_angular_random_walk_degpersqrth_sensorframe_y
  type: double
  expert: true
  units: degrees per square root hour
  default value: '.69'
  readonly: False
  Description: Angular rate white noise.
  Notes: |

- group: ins
  name: gyro_angular_random_walk_degpersqrth_sensorframe_z
  type: double
  expert: true
  units: degrees per square root hour
  default value: '.69'
  readonly: False
  Description: Angular rate white noise.
  Notes: |

- group: ins
  name: gyro_bias_instability_avar_degperh_sensorframe_x
  type: double
  expert: true
  units: degrees per hour
  default value: '10'
  readonly: False
  Description: Angular rate bias instability as defined in an Allan Variance plot.
  Notes: |

- group: ins
  name: gyro_bias_instability_avar_degperh_sensorframe_y
  type: double
  expert: true
  units: degrees per hour
  default value: '10'
  readonly: False
  Description: Angular rate bias instability as defined in an Allan Variance plot.
  Notes: |

- group: ins
  name: gyro_bias_instability_avar_degperh_sensorframe_z
  type: double
  expert: true
  units: degrees per hour
  default value: '10'
  readonly: False
  Description: Angular rate bias instability as defined in an Allan Variance plot.
  Notes: |

- group: ins
  name: accel_velocity_random_walk_microgpersqrtHz_sensorframe_x
  type: double
  expert: true
  units: micro-g per square root hertz
  default value: '177'
  readonly: False
  Description: Accelerometer white noise.
  Notes: |

- group: ins
  name: accel_velocity_random_walk_microgpersqrtHz_sensorframe_y
  type: double
  expert: true
  units: micro-g per square root hertz
  default value: '177'
  readonly: False
  Description: Accelerometer white noise.
  Notes: |

- group: ins
  name: accel_velocity_random_walk_microgpersqrtHz_sensorframe_z
  type: double
  expert: true
  units: micro-g per square root hertz
  default value: '177'
  readonly: False
  Description: Accelerometer white noise.
  Notes: |

- group: ins
  name: accel_bias_instability_avar_millig_sensorframe_x
  type: double
  expert: true
  units: milli-g
  default value: '0.3'
  readonly: False
  Description: Accelerometer bias instability as defined in an Allan Variance plot.
  Notes: |

- group: ins
  name: accel_bias_instability_avar_millig_sensorframe_y
  type: double
  expert: true
  units: milli-g
  default value: '0.3'
  readonly: False
  Description: Accelerometer bias instability as defined in an Allan Variance plot.
  Notes: |

- group: ins
  name: accel_bias_instability_avar_millig_sensorframe_z
  type: double
  expert: true
  units: milli-g
  default value: '0.3'
  readonly: False
  Description: Accelerometer bias instability as defined in an Allan Variance plot.
  Notes: |

- group: ins
  name: lowpass_filter_cutoff_hz
  type: double
  expert: true
  units: gertz
  default value: '1'
  readonly: False
  Description: The cut-off frequency of the low-pass filter (smaller than half the nominal_sample_rate_hz).
  Notes: |

- group: ins
  name: zupt_acceleration_threshold_mpers2
  type: double
  expert: true
  units: meters per second squared
  default value: '0.05'
  readonly: False
  Description: Maximum allowed acceleration while in ZUPT.
  Notes: |

- group: ins
  name: zupt_angular_rate_threshold_degpers
  type: double
  expert: true
  units:  degrees per second
  default value: '0.3'
  readonly: False
  Description: Maximum allowed angular rate while in in ZUPT.
  Notes: |

- group: ins
  name: zupt_enable_partial_zerovel_update
  type: boolean
  expert: true
  units:
  default value: 'true'
  readonly: False
  Description: Enable partial zero-velocity update (ZUPT).
  Notes: |

- group: ins
  name: zupt_enable_full_zerovel_update
  type: boolean
  expert: true
  units:
  default value: 'true'
  readonly: False
  Description: Enable full zero-velocity update (ZUPT).
  Notes: |

- group: ins
  name: zupt_enable_zero_angular_rate_update
  type: boolean
  expert: true
  units:
  default value: 'true'
  readonly: False
  Description: Enable zero angular rate update.
  Notes: |

- group: ins
  name: zupt_settings_1
  type: double
  expert: True
  units:
  default value: '0.1'
  readonly: False
  Description:
  Notes: |

- group: ins
  name: zupt_settings_2
  type: double
  expert: True
  units:
  default value: '0.1'
  readonly: False
  Description:
  Notes: |

- group: ins
  name: zupt_settings_3
  type: double
  expert: True
  units:
  default value: '0.05'
  readonly: False
  Description:
  Notes: |

- group: ins
  name: zupt_settings_4
  type: double
  expert: True
  units:
  default value: '0.5'
  readonly: False
  Description:
  Notes: |

- group: ins
  name: zupt_settings_5
  type: double
  expert: True
  units:
  default value: '4'
  readonly: False
  Description:
  Notes: |

- group: ins
  name: alignment_cog_enable
  type: boolean
  expert: true
  units:
  default value: 'true'
  readonly: False
  Description: Enable updating the alignment algorithm by assuming course over ground (i.e. the horizontal direction of the velocity vector) is equal to the vehicle heading.
  Notes: |

- group: ins
  name: alignment_cog_low_speed_disambiguation_enable
  type: boolean
  expert: true
  units:
  default value: 'false'
  readonly: False
  Description: If this parameter is set to true, COG updates will also be used if the current vehicle speed does not exceed alignment_cog_min_speed_meters_per_second.
  Notes: |

- group: ins
  name: alignment_cog_min_speed_meters_per_second
  type: double
  expert: true
  units: meters per second
  default value: '5'
  readonly: False
  Description: If enabled, COG updates will only be used if the current vehicle speed exceeds this threshold. Value should be >= 1m/s.
  Notes: |

- group: ins
  name: alignment_settings_1
  type: double
  expert: true
  units:
  default value: '3'
  readonly: False
  Description:
  Notes: |

- group: ins
  name:  filter_vel_max_half_life_ms
  expert: true
  type: float
  units: milliseconds
  default_value: 20000
  Description: Time constant parameter for low-speed velocity filtering

- group: ins
  name:  filter_vel_half_life_alpha
  expert: true
  type: float
  units: N/A
  default_value: 0.02
  Description: Parameter for low-speed velocity filtering

- group: ins
  name:  filter_vel_max
  expert: true
  type: float
  units: m/s
  default_value: 0.4
  Description: Velocity above which to disable velocity filtering

- group: ins
  name:  filter_vel_min
  expert: true
  type: float
  units: m/s
  default_value: 0.1
  Description: Velocity below whih to enable advanced velocity filtering

- group: ins
  name:  filter_vel
  expert: true
  type: boolean
  default_value: false
  Description: Enabled low-speed velocity filtering (advanced use only)

- group: ins
  name:  filter_pos
  expert: true
  type: boolean
  default_value: false
  Description: Enabled low-speed position filtering (advanced use only)

- group: ins
  name:  stillness_autotune
  expert: true
  type: boolean
  default_value: false
  Description: Automatically attempt to tune stillness detection thresholds

- group: ins
  name:  gyro_still_threshold
  expert: true
  type: float
  units: rad/sec
  default_value: 0.0005
  Description: Gyro magnitude stillness thresold

- group: ins
  name:  accel_still_threshold
  expert: true
  type: float
  units: Gs
  default_value: 0.01
  readonly: false
  Description: Gyro magnitude stillness thresold

- group: ins
  name:  vel_still_threshold
  expert: true
  type: float
  units: m/s
  default_value: 0.02
  Description: Gyro magnitude stillness thresold

- group: ins
  name:  stillness_detection_use_accel
  expert: true
  type: boolean
  default_value: False
  Description: Use accelermoter in detecting stillness

- group: ins
  name:  stillness_detection_use_gyro
  expert: true
  type: boolean
  default_value: False
  Description: Use gyro in detecting stillness

- group: ins
  name:  accel_noise
  expert: true
  type: float
  units: Gs
  default_value: 0.08
  Description: Noise estimate for raw sensor

- group: ins
  name:  gyro_noise
  expert: true
  type: float
  units: deg/s
  default_value: 0.002
  Description: Noise estimate for raw sensor

- group: metrics_daemon
  name: metrics_update_interval
  expert: true
  type: integer
  units: seconds
  default value: '1'
  readonly: false
  Description: Set metric update interval
  Notes:

- group: metrics_daemon
  name: enable_log_to_file
  expert: true
  type: bool
  units: N/A
  default value: 'true'
  readonly: false
  Description: Enable metric logging to file
  Notes:

- group: ndb
  name: erase_ephemeris
  expert: true
  type: boolean
  default value: 'True'
  readonly: false
  Description: Erase stored ephmerides during boot.

- group: ndb
  name: erase_almanac
  expert: true
  type: boolean
  default value: 'False'
  readonly: false
  Description: Erase stored almanacs during boot.

- group: ndb
  name: erase_almanac_wn
  expert: true
  type: boolean
  default value: 'False'
  readonly: false
  Description: Erase stored almanac week numbers during boot.

- group: ndb
  name: erase_iono
  expert: true
  type: boolean
  default value: 'False'
  readonly: false
  Description: Erase stored ionospheric parameters during boot.

- group: ndb
  name: erase_lgf
  expert: true
  type: boolean
  default value: 'True'
  readonly: false
  Description: Erase stored last fix information during boot.

- group: ndb
  name: erase_gnss_capb
  expert: true
  type: boolean
  default value: 'False'
  readonly: false
  Description: Erase stored GNSS capability mask during boot.

- group: ndb
  name: erase_utc_params
  expert: true
  type: boolean
  default value: 'False'
  readonly: false
  Description: Erase stored UTC offset parameters during boot.

- group: ndb
  name: lgf_update_s
  expert: true
  type: int
  default value: '1800'
  readonly: false
  units: seconds
  Description: Update period for navigation database last good fix.

- group: ndb
  name: lgf_update_m
  expert: true
  type: int
  default value: '10000'
  readonly: false
  units: meters
  Description: Change in position required to update last good fix.

- group: ndb
  name: valid_alm_days
  expert: true
  type: int
  default value: '6'
  readonly: false
  units: days
  Description: Number of days for which Almanac is valid.

- group: ndb
  name: valid_eph_acc
  expert: true
  type: int
  default value: '100'
  readonly: false
  units: meters

- group: ndb
  name: valid_alm_acc
  expert: true
  type: int
  default value: '5000'
  readonly: false
  units: meters

- group: nmea
  name: gpgsv_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '10'
  readonly: false
  Description: Number of Solution Periods between GSV NMEA messages being sent.
  Notes: This setting represents the integer number of solution periods between each transmission of the NMEA message. For example, if the solution rate is 10 Hz, and this rate setting is 2, the NMEA message will be sent every two solution epochs at a rate of 5 Hz. If this setting is 0, the msg will be suppressed.

- group: nmea
  name: gpgga_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '1'
  readonly: false
  Description: Number of Solution Periods between GGA NMEA messages being sent.
  Notes: This setting represents the integer number of solution periods between each transmission of the NMEA message. For example, if the solution rate is 10 Hz, and this rate setting is 2, the NMEA message will be sent every two solution epochs at a rate of 5 Hz. If this setting is 0, the msg will be suppressed.

- group: nmea
  name: gphdt_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '1'
  readonly: false
  Description: Number of Solution Periods between HDT NMEA messages being sent.
  Notes: This setting represents the integer number of solution periods between each transmission of the NMEA message. For example, if the solution rate is 10 Hz, and this rate setting is 2, the NMEA message will be sent every two solution epochs at a rate of 5 Hz. If this setting is 0, the msg will be suppressed.

- group: nmea
  name: gprmc_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '10'
  readonly: false
  Description: Number of Solution Periods between RMC NMEA messages being sent.
  Notes: This setting represents the integer number of solution periods between each transmission of the NMEA message. For example, if the solution rate is 10 Hz, and this rate setting is 2, the NMEA message will be sent every two solution epochs at a rate of 5 Hz. If this setting is 0, the msg will be suppressed.

- group: nmea
  name: gpvtg_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '1'
  readonly: false
  Description: Number of Solution Periods between VTG NMEA messages being sent.
  Notes: This setting represents the integer number of solution periods between each transmission of the NMEA message. For example, if the solution rate is 10 Hz, and this rate setting is 2, the NMEA message will be sent every two solution epochs at a rate of 5 Hz. If this setting is 0, the msg will be suppressed.

- group: nmea
  name: gpgll_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '10'
  readonly: false
  Description: Number of Solution Periods between GLL NMEA messages being sent.
  Notes: This setting represents the integer number of solution periods between each transmission of the NMEA message. For example, if the solution rate is 10 Hz, and this rate setting is 2, the NMEA message will be sent every two solution epochs at a rate of 5 Hz. If this setting is 0, the msg will be suppressed.

- group: nmea
  name: gpzda_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '10'
  readonly: false
  enumerated possible values:
  Description: Number of Solution Periods between ZDA NMEA messages being sent.
  Notes: This setting represents the integer number of solution periods between each transmission of the NMEA message. For example, if the solution rate is 10 Hz, and this rate setting is 2, the NMEA message will be sent every two solution epochs at a rate of 5 Hz. If this setting is 0, the msg will be suppressed.

- group: nmea
  name: gsa_msg_rate
  expert: false
  type: integer
  units: Solution Periods
  default value: '10'
  readonly: false
  enumerated possible values:
  Description: Number of Solution Periods between GSA NMEA messages being sent.
  Notes: This setting represents the integer number of solution periods between each transmission of the NMEA message. For example, if the solution rate is 10 Hz, and this rate setting is 2, the NMEA message will be sent every two solution epochs at a rate of 5 Hz. If this setting is 0, the msg will be suppressed.

- group: nmea
  name: gpgsa_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '10'
  readonly: false
  enumerated possible values:
  Description: Number of Solution Periods between GSA NMEA messages being sent.
  Notes: This setting represents the integer number of solution periods between each transmission of the NMEA message.

- group: nmea
  name: gpgst_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '1'
  readonly: false
  enumerated possible values:
  Description: Number of Solution Periods between GST NMEA messages being sent.
  Notes: This setting represents the integer number of solution periods between each transmission of the NMEA message.

- group: nmea
  name: pcps_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '1'
  readonly: false
  enumerated possible values:
  Description: Number of Solution Periods between AAR PNM PCPS messages being sent.
  Notes:

- group: nmea
  name: pcsh_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '1'
  readonly: false
  enumerated possible values:
  Description: Number of Solution Periods between AAR PNM PCSH messages being sent.
  Notes:

- group: nmea
  name: pcgd_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '5'
  readonly: false
  enumerated possible values:
  Description: Number of Solution Periods between AAR PNM PCGD messages being sent.
  Notes:

- group: nmea
  name: pcof_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '50'
  readonly: false
  enumerated possible values:
  Description: Number of Solution Periods between AAR PNM PCOF messages being sent.
  Notes:

- group: nmea
  name: pccf_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '50'
  readonly: false
  enumerated possible values:
  Description: Number of Solution Periods between AAR PNM PCCF messages being sent.
  Notes:

- group: nmea
  name: pcsd_msg_rate
  expert: false
  type: integer
  units: Solution Period
  default value: '5'
  readonly: false
  enumerated possible values:
  Description: Number of Solution Periods between AAR PNM PCSD messages being sent.
  Notes:

- group: nmea
  name: cog_output_min_speed
  expert: true
  type: float
  units: Meters per second
  digits: '2'
  default value: '0.1'
  readonly: false
  enumerated possible values:
  Description: Minimum speed for outputting Course-Over-Ground values.
  Notes: For value '0' Course-Over-Ground is output always when fix is available.

- group: nmea
  name: cog_update_min_speed
  expert: true
  type: float
  units: Meters per second
  digits: '2'
  default value: '0.1'
  readonly: false
  enumerated possible values:
  Description: Minimum speed for updating the current Course-Over-Ground value.
  Notes: For value '0' Course-Over-Ground is updated always when a fix is available. For non '0' values, the Course-Over-Ground value will only be recomputed and updated when the speed exceeds the specified value.

- group: nmea
  name: max_reported_sats
  expert: true
  type: integer
  units: N/A
  default value: '99'
  readonly: false
  Description: Maximum number of used satellites reported in GGA message. Range [0..99].
  Notes:

- group: nmea
  name: pos_mode_spp_report_as
  expert: true
  type: enum
  units: N/A
  default value: 'SPP'
  readonly: false
  enumerated possible values: Invalid,SPP
  Description: A valid SPP solution will be reported as selected in GGA, RMC, VTG, GLL and GSA messages.
  Notes:

- group: nmea
  name: pos_mode_dgnss_report_as
  expert: true
  type: enum
  units: N/A
  default value: 'DGNSS'
  readonly: false
  enumerated possible values: Invalid,SPP,DGNSS
  Description: A valid DGNSS solution will be reported as selected in GGA, RMC, VTG, GLL and GSA messages.
  Notes:

- group: nmea
  name: pos_mode_float_rtk_report_as
  expert: true
  type: enum
  units: N/A
  default value: 'Float RTK'
  readonly: false
  enumerated possible values: Invalid,SPP,DGNSS,Float RTK
  Description: A valid Float RTK solution will be reported as selected in GGA, RMC, VTG, GLL and GSA messages.
  Notes:

- group: nmea
  name: pos_mode_fixed_rtk_report_as
  expert: true
  type: enum
  units: N/A
  default value: 'Fixed RTK'
  readonly: false
  enumerated possible values: Invalid,SPP,DGNSS,Float RTK,Fixed RTK
  Description: A valid Fixed RTK solution will be reported as selected in GGA, RMC, VTG, GLL and GSA messages.
  Notes:

- group: nmea
  name: pos_mode_dr_report_as
  expert: true
  type: enum
  units: N/A
  default value: 'DR'
  readonly: false
  enumerated possible values: Invalid,SPP,DR
  Description: A valid DR solution will be reported as selected in GGA, RMC, VTG, GLL and GSA messages.
  Notes: If the SPP is selected, the number of used satellites will be set to 4, PDOP to 3.0, HDOP to 2.0, and VDOP to 2.0.

- group: nmea
  name: pos_mode_sbas_report_as
  expert: true
  type: enum
  units: N/A
  default value: 'DGNSS'
  readonly: false
  enumerated possible values: Invalid,SPP,DGNSS
  Description: A valid SBAS solution will be reported as selected in GGA, RMC, VTG, GLL and GSA messages.
  Notes:

- group: ntrip
  name: enable
  expert: false
  type: boolean
  units: N/A
  default value: 'False'
  readonly: false
  enumerated possible values: True,False
  Description: Enable NTRIP client.
  Notes: If True, NTRIP client will be used.

- group: ntrip
  name: url
  expert: false
  type: string
  units: N/A
  default value: N/A
  readonly: false
  enumerated possible values:
  Description: NTRIP URL to use.
  Notes: NTRIP must be enabled to use this setting. URLs should be HTTP URLs with a port, and a mountpoint path such as example.com:2101/BAZ_RTCM3.
    NTRIP 'enable' must be 'False' in order to change this setting.

- group: ntrip
  name: username
  expert: false
  type: string
  units: N/A
  default value: N/A
  readonly: false
  enumerated possible values:
  Description: NTRIP username to use.
  Notes: Username to use with NTRIP client. NTRIP must be enabled to use this setting.

- group: ntrip
  name: password
  expert: false
  type: string
  units: N/A
  default value: N/A
  readonly: false
  enumerated possible values:
  Description: NTRIP password to use.
  Notes: Password to use with NTRIP client. NTRIP must be enabled to use this setting.

- group: ntrip
  name: gga_out_interval
  expert: false
  type: integer
  units: seconds
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Interval at which the NMEA GGA sentence is uploaded to the NTRIP server
  Notes: The interval (in seconds) at which the NMEA GGA sentence is uploaded to
    the specified NTRIP server. The default of 0 disables the GGA sentence upload.

- group: ntrip
  name: gga_out_rev1
  expert: true
  type: boolean
  units: seconds
  default value: 'False'
  readonly: false
  enumerated possible values:
  Description: If True, the NTRIP client will use an NTRIP 1.0 formatted GGA sentence.
  Notes: |
    By default, the NTRIP client will use an NTRIP 2.0 formatted GGA sentence,
    which prefixes the GGA sentence with "Ntrip-GGA: ". If this option is
    enabled, the prefix will be dropped.

- group: ntrip
  name: debug
  expert: true
  type: boolean
  default value: 'False'
  readonly: false
  Description: Additional debug messages for NTRIP (sent to /var/log/messages).

- group: pps
  name: width
  expert: false
  type: integer
  units: us (microseconds)
  default value: '2000'
  readonly: false
  enumerated possible values:
  Description: Number of microseconds the PPS will remain active (allowed range from 1 to 999999 us).
  Notes:

- group: pps
  name: polarity
  expert: false
  type: integer
  units: Logic Level
  default value: '1'
  readonly: false
  enumerated possible values: 0, 1
  Description: Logic level on output pin when the PPS is active.
  Notes:

- group: pps
  name: offset
  expert: false
  type: integer
  units: ns (nanoseconds)
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Offset in nanoseconds between GPS time and the PPS.
  Notes: This setting can be used to compensate for cable delays in timing systems.

- group: pps
  name: frequency
  expert: false
  type: double
  units: Hz
  default value: '1.0'
  readonly: false
  enumerated possible values:
  Description: Generate a pulse with the given frequency (maximum = 20 Hz).
  Notes:

- group: pps
  name: propagation_mode
  expert: false
  type: enum
  units: N/A
  default value: Time Limited
  enumerated possible values: None,Time Limited,Unlimited
  Description: Configures the behavior of the PPS when no GNSS fix is available.

- group: pps
  name: propagation_timeout
  expert: false
  type: float
  units: seconds
  default value: '5'
  readonly: false
  Description: Configures the timeout length of the PPS when using the "Time Limited" propagation mode.

- group: rtcm_out
  name: output_mode
  expert: true
  type: enum
  units: N/A
  default value: 'MSM5'
  readonly: false
  enumerated possible values: Legacy, MSM4, MSM5
  Description: Selects the format of RTCM observation messages for the RTCMv3 OUT protocol
  Notes: Legacy mode outputs the RTCMv3.1 1004 & 1012 observation messages (GPS&GLO only),
    whereas the RTCMv3.2 MSM4 and MSM5 modes send observations from all constellations.

- group: rtcm_out
  name: rcv_descriptor
  expert: true
  type: string
  units: N/A
  default value: 'PIKSI'
  readonly: false
  enumerated possible values:
  Description: Receiver type description to be sent out in the RTCMv3 1033 message.
  Notes: Alphanumeric characters. Maxmimum 31 characters.

- group: rtcm_out
  name: ant_descriptor
  expert: true
  type: string
  units: N/A
  default value: 'HXCGPS500       NONE'
  readonly: false
  enumerated possible values:
  Description: Antenna description to be sent out in RTCMv3 messages 1008 and 1033.
  Notes: Alphanumeric characters. IGS limits the number of characters to 20 at
    this time, but this setting allows for 31 characters for future extension.

- group: rtcm_out
  name: antenna_height
  expert: true
  type: double
  units: meters
  default value: '0.0'
  readonly: false
  enumerated possible values:
  Description: Antenna height to be sent out in RTCMv3 message 1006.
  Notes: The Antenna Height field provides the height of the Antenna Reference Point
    above the marker used in the survey campaign.

- group: rtcm_out
  name: enable_ephemeris
  expert: true
  type: boolean
  units: N/A
  default value: 'false'
  readonly: false
  enumerated possible values:
  Description: Allow output of RTCMv3 ephemeris messages.
  Notes: RTCM Message Type - 1019 (GPS Ephemeris), 1020 (GLONASS Ephemeris),
    1045/1046 (Galileo Ephemeris), 1042 (Beidou Ephemeris)

- group: sample_daemon
  name: enabled
  expert: true
  type: boolean
  units: N/A
  default value: 'false'
  readonly: false
  Description: Enables or disables the SDK sample daemon.

- group: sample_daemon
  name: enable_broadcast
  expert: true
  type: boolean
  units: N/A
  default value: 'false'
  readonly: false
  Description: Enables or disables UDP broadcast in the SDK sample daemon.

- group: sample_daemon
  name: offset
  expert: true
  type: float
  units: meters
  default value: '-32.1597'
  readonly: false
  Description: Sets the height offset for the SDK sample daemon.

- group: sample_daemon
  name: broadcast_hostname
  expert: true
  type: string
  units: N/A
  default value: '255.255.255.255'
  readonly: false
  Description: Sets the broadcast hostname for the SDK sample daemon.

- group: sample_daemon
  name: broadcast_port
  expert: true
  type: integer
  units: N/A
  default value: '56666'
  readonly: false
  Description: Sets the broadcast port for the SDK sample daemon.

- group: sbp
  name: obs_msg_max_size
  expert: true
  type: integer
  units: bytes
  default value: '255'
  readonly: false
  enumerated possible values:
  Description: Determines the maximum message length for raw observation sbp messages.
  Notes: This parameter is useful for tuning observation messages for compatibility
    with radio modems. Some serial modems will internally split serial packets for
    their protocol and this parameter allows the size of the message to be reduced
    as to prevent the modem from sending multiple packets. If the parameter exceeds
    255 bytes (the maximum size of an SBP message), the receiver firmware will ignore
    the parameter and use 255 bytes. If the parameter is set smaller than the size
    of one observation, the firmware will ignore the parameter and use the size
    of one observation as the maximum message size.

- group: simulator
  expert: false
  name: enabled
  type: boolean
  units: N/A
  default value: 'False'
  readonly: false
  enumerated possible values: True,False
  Description: Toggles the receiver internal simulator on and off.
  Notes: The simulator will provide simulated outputs of a
    stationary base station and the Local receiver moving in a circle around the
    base station. The simulator is intended to aid in system integration by
    providing realistic looking outputs but does not faithfully simulate every
    aspect of device operation.

- group: simulator
  name: start_date
  expert: false
  type: string
  default value: '2023-01-01'
  readonly: false
  Description: Simulation start date in format YYYY-MM-DD.
  units: N/A
  Notes:

- group: simulator
  name: start_time
  expert: false
  type: string
  default value: '00:00:00'
  readonly: false
  Description: Simulation start UTC time in format HH:MM:SS, HH in range [00..23], MM and SS in range [00..59].
  units: N/A
  Notes:

- group: simulator
  name: base_lat_deg
  expert: false
  type: double
  units: degrees
  default value: '0.0'
  readonly: false
  enumerated possible values:
  Description: Simulated base station latitude. Range [-90.0..90.0].
  Notes: ECEF base position is used if base_lat_deg, base_lon_deg and base_alt_m are zeroes.

- group: simulator
  name: base_lon_deg
  expert: false
  type: double
  units: degrees
  default value: '0.0'
  readonly: false
  enumerated possible values:
  Description: Simulated base station longitude. Range [-180.0..180.0].
  Notes: ECEF base position is used if base_lat_deg, base_lon_deg and base_alt_m are zeroes.

- group: simulator
  name: base_alt_m
  expert: false
  type: double
  units: meters
  default value: '0.0'
  readonly: false
  enumerated possible values:
  Description: Simulated base station altitude. Range [-1000.0..10000.0].
  Notes: ECEF base position is used if base_lat_deg, base_lon_deg and base_alt_m are zeroes.

- group: simulator
  name: base_ecef_x
  expert: false
  type: double
  units: meters
  default value: '-2706098.845'
  readonly: false
  enumerated possible values:
  Description: Simulated base station position.
  Notes: Earth Centered Earth Fixed (ECEF) x position of the simulated base station.

- group: simulator
  name: base_ecef_y
  expert: false
  type: double
  units: meters
  default value: '-4261216.475'
  readonly: false
  enumerated possible values:
  Description: Simulated base station position.
  Notes: Earth Centered Earth Fixed (ECEF) y position of the simulated base station.

- group: simulator
  name: base_ecef_z
  expert: false
  type: double
  units: meters
  default value: '3885597.912'
  readonly: false
  enumerated possible values:
  Description: Simulated base station position.
  Notes: Earth Centered Earth Fixed (ECEF) z position of the simulated base station.

- group: simulator
  name: speed
  expert: false
  type: double
  units: m/s
  default value: '4'
  readonly: false
  enumerated possible values:
  Description: Simulated tangential speed of the receiver.
  Notes:

- group: simulator
  name: radius
  expert: false
  type: double
  units: meters
  default value: '100'
  readonly: false
  enumerated possible values:
  Description: Radius of the circle around which the simulated receiver will move.
  Notes:

- group: simulator
  name: pos_sigma
  expert: false
  type: double
  units: meters^2
  default value: '1.5'
  readonly: false
  enumerated possible values:
  Description: Standard deviation of simulated single point position.
  Notes:

- group: simulator
  name: speed_sigma
  expert: false
  type: double
  units: meters^2/s^2
  default value: '0.15'
  readonly: false
  enumerated possible values:
  Description: Standard deviation of noise addition to simulated tangential speed.
  Notes:

- group: simulator
  name: cn0_sigma
  expert: false
  type: double
  units: dBm-Hz
  default value: '0.3'
  readonly: false
  enumerated possible values:
  Description: Standard deviation of noise added to the simulated signal to noise.
    ratio
  Notes:

- group: simulator
  name: pseudorange_sigma
  expert: false
  type: double
  units: meters
  default value: '4'
  readonly: false
  enumerated possible values:
  Description: Standard deviation of noise added to the simulated pseudo range.
  Notes:

- group: simulator
  name: phase_sigma
  expert: false
  type: double
  units: cycles
  default value: '0.03'
  readonly: false
  enumerated possible values:
  Description: Standard deviation of noise added to the simulated carrier phase.
  Notes:

- group: simulator
  name: num_sats
  expert: false
  type: integer
  units: N/A
  default value: '9'
  readonly: false
  enumerated possible values:
  Description: The number of satellites for the simulator.
  Notes:

- group: simulator
  name: mode_mask
  expert: false
  type: packed bitfield
  units: N/A
  default value: 15 (decimal), 0xF (hexadecimal)
  readonly: false
  enumerated possible values:
  Description: Determines the types of position outputs for the simulator.
  Notes: |
    bit 0 (decimal value 1) turns on single point position PVT simulated outputs
    bit 1 (decimal value 2) turns on the satellite tracking simulated outputs
    bit 2 (decimal value 4) turns on Float IAR simulated RTK outputs
    bit 3 (decimal value 8) turns on Fixed IAR simulated RTK outputs

- group: solution
  name: elevation_mask
  expert: false
  type: float
  units: degrees
  default value: '10'
  readonly: false
  enumerated possible values:
  Description: SPP / RTK solution elevation mask.
  Notes: Satellites must be above the horizon by at least this angle before they
    will be used in a solution.

- group: solution
  name: dgnss_filter
  expert: true
  type: enum
  units: N/A
  default value: 'Fixed'
  readonly: false
  enumerated possible values: Fixed,Float
  Description: Determines the type of carrier phase ambiguity resolution that the receiver will attempt to achieve.
  Notes: If "fixed", the receiver will output a integer fixed ambiguity estimate. If
    no fixed solution is available, it will revert to the float solution. If "float",
    the device will only output the float ambiguity estimate.

- group: solution
  name: dynamic_motion_model
  expert: true
  type: enum
  units: N/A
  default value: 'High Dynamics'
  readonly: false
  enumerated possible values: High Dynamics, High Horizontal Dynamics, Low Dynamics
  Description: Selects the Filter Uncertainity of position, velocity & acceleration in the Horizontal &
    Vertical directions.
  Notes: High dynamics - suitable when dynamics are high in all axes, High horizontal dynamics - suitable
    when dynamics are high in the horizontal plane and low in the vertical axis and Low dynamics - suitable
    when dynamics are high in all axes.

- group: solution
  name: correction_age_max
  expert: false
  type: float
  units: seconds
  default value: '30'
  readonly: false
  enumerated possible values:
  Description: The maximum age of corrections for which an RTK solution will be generated.
  Notes:

- group: solution
  name: enable_glonass
  expert: false
  type: boolean
  units: N/A
  default value: 'True'
  readonly: false
  enumerated possible values: True,False
  Description: Enable GLONASS measurement processing in the navigation filter.
  Notes: If set to True, GLONASS measurements are processed in the navigation filter for SPP and RTK.

- group: solution
  name: enable_galileo
  expert: false
  type: boolean
  units: N/A
  default value: 'True'
  readonly: false
  enumerated possible values: True,False
  Description: Enable Galileo measurement processing in the navigation filter.
  Notes: If set to True, Galileo measurements are processed in the navigation filter for SPP and RTK.

- group: solution
  name: enable_beidou
  expert: false
  type: boolean
  units: N/A
  default value: 'True'
  readonly: false
  enumerated possible values: True,False
  Description: Enable Beidou measurement processing in the navigation filter.
  Notes: If set to True, Beidou measurements are processed in the navigation filter for SPP and RTK.

- group: solution
  name: glonass_measurement_std_downweight_factor
  expert: true
  type: float
  units: N/A
  default value: '4.0'
  readonly: false
  enumerated possible values:
  Description: Down weights GLONASS measurements by a given factor in the navigation filter.
  Notes: This parameter down weights GLONASS observations relative to GPS observations by this factor.

- group: solution
  name: dgnss_solution_mode
  expert: false
  type: enum
  units: N/A
  default value: 'Low Latency'
  readonly: false
  enumerated possible values: Low Latency, Time Matched, No DGNSS
  Description: Selects the type of RTK solution to output.
  Notes: A "Low Latency" solution uses an internal model of anticipated satellite observations
    to provide RTK output with minimal latency but slightly reduced accuracy. "Low Latency" mode
    assumes that the base station is stationary. For applications where accuracy is desired over timeliness
    or when both receivers are moving, "Time Matched" mode should be chosen. This
    means that the RTK output will require a corresponding set of correction observations
    for each timestamp. When "No DGNSS" is chosen, no differential output will be
    attempted by the receiver.

- group: solution
  name: heading_offset
  expert: False
  type: double
  units:  degrees
  default value: '0.0'
  readonly: false
  enumerated possible values: N/A
  Description: Rotate the heading output.
  Notes: |
    Adds an offset to the heading output to rotate the heading vector to align the
    baseline heading with a desired 0 heading. Valid values are -180.0 to 180.0 degrees

- group: solution
  name: send_heading
  expert: False
  type: boolean
  units:  N/A
  default value: 'False'
  readonly: false
  enumerated possible values: True,False
  Description: |
    Enables SBP heading output.
    Heading is calculated from base station to rover and represents
    the inverse tangent of the north and east components of the baseline.
  Notes: |
    No smoothing or additional processing is provided to improve heading output.
    The heading feature requires the following additional settings
        Time Matched Mode
        Equal Observation rate between both base and rover
    The observation rate will also determine the heading output rate and is defined as "soln freq" / "output every n obs"

- group: solution
  name: disable_raim
  expert: true
  type: boolean
  units:
  default value: 'False'
  readonly: false
  enumerated possible values: True,False
  Description: Receiver Autonomous Integrity Monitoring.
  Notes: If True, RAIM checks will not be performed on observation output.

- group: solution
  name: soln_freq
  expert: false
  type: integer
  units: Hz
  default value: '10'
  readonly: false
  enumerated possible values:
  Description: |
    The frequency at which GNSS navigation solution is computed.
  Notes: |
    Minimum is 1 Hz. Maximum is 10 Hz for RTK positioning with a maximum of 15 used satellites.
    At 5 Hz and lower the maximum number of used satellites is 22. 20 Hz is an absolute maximum with
    a limit of 5 used satellites.

    System with inertial fusion (Duro Inertial, Piksi Multi Inertial) can output position at a higher rate
    than the GNSS-only solution. See fused_soln_freq in the INS group.

- group: solution
  name: output_every_n_obs
  expert: false
  type: integer
  units: N/A
  default value: '10'
  readonly: false
  enumerated possible values:
  Description: Integer divisor of solution frequency for which the observations will
    be output.
  Notes: For instance, if the solution frequency (soln_freq) is 10 Hz, and the output_every_n_obs
    setting is 10, it means that the observation output will occur at a rate
    of 1 Hz. This parameter is designed to tune the rate at which correction information is passed
    from one receiver to the other as to efficiently use radio modem bandwidth and fit with user applications.

- group: solution
  name: min_modelled_baseline_len_km
  expert: false
  type: double
  units: km
  default value: '0.0'
  readonly: false
  enumerated possible values: N/A
  Description: Minimum assumed baseline length to use in RTK model calculations. This parameter
    can be used to improve performance with virtual reference station (VRS) services that generate
    the virtual base at an arbitrary location, independent from the quality of atmospheric models.
  Notes: Typically 50 km can be used with most VRS services.

- group: solution
  name: known_baseline_n
  expert: false
  type: double
  units: meters
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Determines the baseline vector for the "init known baseline" feature.
  Notes: This sets the number of meters that the rover is North from the
    base station when the "init known baseline" feature is used.

- group: solution
  name: known_baseline_e
  expert: false
  type: double
  units: meters
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Determines the baseline vector for the "init known baseline" feature.
  Notes: This sets the number of meters that the rover is East from the
    base station when the "init known baseline" feature is used.

- group: solution
  name: known_baseline_d
  expert: false
  type: double
  units: meters
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Determines the baseline vector for the "init known baseline" feature.
  Notes: This sets the number of meters that the rover is Down from the
    base station when the "init known baseline" feature is used.

- group: solution
  name: disable_klobuchar_correction
  expert: false
  type: boolean
  units: N/A
  default value: 'False'
  readonly: false
  enumerated possible values: True,False
  Description: Disable Klobuchar ionospheric corrections.
  Notes: |
    If True, Klobuchar ionospheric corrections will not be applied.

- group: standalone_logging
  name: blacklist_sdcard
  expert: true
  type: boolean
  default value: 'False'
  readonly: false
  Description: Enable/Disable SD Card.

- group: standalone_logging
  name: enable
  type: boolean
  expert: false
  default value: 'False'
  readonly: false
  units: N/A
  Description: Standalone logging enabled.
  Notes: Setting this to true triggers the logger to start trying to write logs to the output_directory.
    Setting this to false will immediately close the current file and stop logging.
    Reenabling logging will increment the session counter which is reflected in the log file names (see USB Logging File Output section).

- group: standalone_logging
  name: output_directory
  expert: false
  type: string
  default value: '/media/sda1/'
  readonly: false
  Description: Standalone logging path.
  units: N/A
  Notes: Sets the paths in which to write logs. A warning will be logged every 30 seconds if this path is invalid or unavailable. The system will not create a folder that does not exist.
    If this setting is changed while logging is enabled, it will go into effect on the next file that’s created.

- group: standalone_logging
  name: sdcard_enable
  expert: true
  type: boolean
  default value: 'False'
  readonly: false
  Description: Enable/Disable SD Card.

- group: standalone_logging
  name: max_fill
  expert: false
  type: int
  default value: '95'
  readonly: false
  Description: Maximum storage device usage.
  units: percent
  Notes: Sets a limit on how full the storage device can be before logging is stopped. If the drive is more than this percent full, no new log files will be created and a warning will be logged every 30 seconds.
    If this setting is changed while logging is enabled, it will go into effect on the next file that’s created.

- group: standalone_logging
  name: file_duration
  expert: false
  type: int
  default value: '10'
  readonly: false
  Description: Duration of each logfile.
  units: minutes
  Notes: Sets the number of minutes to output to each standalone log file before opening the next one.
    If this setting is changed while logging is enabled, it will go into effect immediately which will close the current file if its length exceeds the new duration.

- group: standalone_logging
  name: logging_file_system
  type: enum
  expert: true
  default value: 'FAT'
  readonly: false
  units: N/A
  Description: Configure the file-system used for standalone logging (SD card only).
  Notes: Configures the file-system used for standalone logging.
    Setting this to F2FS will reparition and the reformat any SD card
    that is not formatted with F2FS upon system reboot. Settings must
    be persisted for this to take effect.

- group: standalone_logging
  name: copy_system_logs
  type: boolean
  expert: true
  default value: 'False'
  readonly: false
  units: N/A
  Description: Copy system logs to the SD card at regular intervals.
  Notes: Setting this to true will cause the device to copy the system logs to the SD card at regular intervals.
    Setting this to false will stop the device from copying the systems logs to the SD card.

- group: surveyed_position
  name: broadcast
  expert: false
  type: boolean
  units:
  default value: 'False'
  readonly: false
  enumerated possible values: True,False
  Description: Broadcast surveyed base station position.
  Notes: This flag ultimately determines whether the SBP message with identifier
    MSG_BASE_POS_ECEF will be calculated and sent. Logically, setting this attribute to
    "true" sets the Local receiver as a base station and configures the unit to send
    its surveyed position coordinates to the other receiver(s) with which the base
    station is communicating. If "true", the remote receiver that receives the
    surveyed position will calculate and communicate a pseudo absolute
    RTK position based upon the received position.

- group: surveyed_position
  name: surveyed_lat
  expert: false
  type: Double
  units: degrees
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Surveyed latitude of the antenna.
  Notes: This setting represents the latitude of the local receiver's antenna, expressed
    in decimal degrees relative to the equator (north = positive, south = negative).
    If surveyed position "broadcast" is set to "true", the coordinate will be
    communicated to remote receivers for use in calculating their pseudo-absolute
    RTK position. The value should be as accurate as possible and should have
    precision to at least 7 digits following the decimal point. For reference,
    1e-7 degrees of latitude is about 1.1 cm on the surface of the earth. Any
    errors in the surveyed position will directly affect the pseudo-absolute
    RTK position measurement reported by the remote receiver.

- group: surveyed_position
  name: surveyed_lon
  expert: false
  type: Double
  units: degrees
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Surveyed longitude of the antenna.
  Notes: This setting represents the longitude of the local receiver's antenna, expressed
    in decimal degrees relative to the Prime Meridian (east = positive, west = negative).
    If surveyed position "broadcast" is set to "true", the coordinate will be
    communicated to remote receivers for use in calculating their pseudo-absolute
    RTK position. The value should be as accurate as possible and should have
    precision to at least 7 digits following the decimal point. For reference,
    1e-7 degrees of longitude at 35 degree latitude is about 1 cm. Any
    errors in the surveyed position will directly affect the pseudo-absolute
    RTK position measurement reported by the remote receiver.

- group: surveyed_position
  name: surveyed_alt
  expert: false
  type: Double
  units: meters
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Surveyed altitude of the antenna.
  Notes: This setting represents the altitude of the receiver's antenna above the
    WGS84 ellipsoid, in meters. If surveyed position "broadcast" is set to "true",
    this coordinate will be communicated to remote receivers for use in calculating
    their pseudo-absolute position. This value should be precise to 1 cm. Any
    errors in the surveyed position will directly affect the pseudo-absolute
    RTK position measurement reported by the Rover.

- group: system
  name: system_time
  type: enum
  expert: false
  default value: 'GPS'
  enumerated possible values: GPS+NTP,GPS,NTP
  readonly: false
  Description: Sources for Linux System Time.
  units: N/A
  Notes: Configures the possible sources for Linux system time on the Swift Device.
    Linux system time is required for HTTPS certification validation and other Linux system functionality.

- group: system
  name: log_ping_activity
  type: boolean
  expert: true
  default value: 'False'
  readonly: false
  units: N/A
  Description: If set to true, the network poll service will also log ping activity.
  Notes: Configures the network poll service to log ping activity to /var/log/ping.log.

- group: system
  name: connectivity_check_frequency
  type: float
  expert: true
  default value: '0.1'
  readonly: false
  units: Hz
  Description: The frequency at which the network poll service checks for connectivity.
  Notes: The network poll service will perform a connectivity check with a well known IP
    address at the frequency configured by this setting. A value of 0 will disable
    the connectivity check and the Link LED will not show Internet access status.

- group: system
  name: connectivity_retry_frequency
  type: float
  expert: true
  default value: '1.0'
  readonly: false
  units: Hz
  Description: The frequency at which the network poll service retries after a failed connectivity check.
  Notes: If a connectivity check fails, this settings controls the frequency at which a new
    connectivity check is performed.

- group: system
  name: connectivity_check_addresses
  type: string
  expert: true
  default value: '8.8.8.8'
  readonly: false
  units: N/A
  Description: A comma separated list of addresses to ping to check for network connectivity.
  Notes: 'A comma separated list of addresses, for example: 8.8.8.8,1.1.1.1 to which
         an ICMP echo request is sent, each in succession until a successful response
         is received.'

- group: system
  name: ota_enabled
  type: boolean
  expert: true
  default value: 'False'
  readonly: false
  units: N/A
  Description: Enables or disables the Over-The-Air upgrade daemon.
  Notes: The OTA daemon contacts the OTA server once per hour and checks if the offered version is newer
    than currently installed. If the offered version is newer, then the image is downloaded and an
    upgrade is performed. After the upgrade the device is automatically rebooted.

- group: system
  name: ota_debug
  type: boolean
  expert: true
  default value: 'False'
  readonly: false
  units: N/A
  Description: Enables or disables the Over-The-Air upgrade daemon's verbose output.
  Notes: The OTA daemon must be disabled in order to change this setting.

- group: system
  name: ota_url
  type: string
  expert: true
  default value: N/A
  readonly: false
  units: N/A
  Description: Set the URL of the Over-The-Air upgrade server. If empty, an internal
    default address is used.
  Notes: The OTA daemon must be disabled in order to change this setting.

- group: system
  name: heading_forwarding
  type: boolean
  expert: false
  default value: 'False'
  readonly: false
  units: N/A
  Description: Resend any SBP_MSG_HEADING or SBP_MSG_BASELINE_NED messages
    received by this device to this device's output interfaces
  Notes: This is intended to enable a dual piksi / duro installation so a consumer
    can read both RTK heading or moving baseline and RTK position
    from the same communication interface.

- group: system
  name: resource_monitor_update_interval
  expert: true
  type: integer
  units: seconds
  default value: '0'
  readonly: false
  Description: Interval to run the resource monitor at
  Notes: Value of 0 disables the resource monitor

- group: system_info
  name: imageset_build_id
  expert: True
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: Build id for the linux system image.
  Notes: Relevant for determining uimage version when using DEV image,
    otherwise this will be identical to the firmware build id. This is a read only setting.

- group: system_info
  name: firmware_build_id
  expert: False
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: Full build id for firmware version.
  Notes: For user generated images, this will appear
    the same as the command "git describe --dirty". This is a read only setting.

- group: system_info
  name: firmware_version
  expert: False
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: Firmware version of the receiver.
  Notes: The git hash is removed from this version identifier. This is a read only setting.

- group: system_info
  name: firmware_build_date
  expert: False
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: Firmware build date.
  Notes: This is a read only setting.

- group: system_info
  name: loader_build_id
  expert: true
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: build id for loader (uboot).
  Notes: This is a read only setting

- group: system_info
  name: loader_build_date
  expert: true
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: build date for boot loader (uboot).
  Notes: This is a read only setting.

- group: system_info
  name: hw_version
  expert: True
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: Hardware version number.
  Notes: This is a read only setting that corresponds to the version number printed on the oem module hardware version sticker.

- group: system_info
  name: hw_revision
  expert: True
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: Hardware revision of the receiver.
  Notes: This is a read only setting that refers to the product family of the hardware.

- group: system_info
  name: hw_variant
  expert: True
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: Hardware Product Variant
  Notes: This is a read only setting that corresponds to the variant of the current hardware revision that is connected to the console.

- group: system_info
  name: product_id
  expert: False
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: Product ID
  Notes: This is a read only setting that displays the product id of the device.

- group: system_info
  name: build_variant
  expert: true
  type: string
  units: N/A
  default value: 'release'
  readonly: True
  enumerated possible values:
  Description: The build variant type for the current firmware.
  Notes: This is a read only setting.

- group: system_info
  name: sbp_sender_id
  expert: false
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: The SBP sender ID for any messages sent by the device.
  Notes: ID value is equal to the lower 16 bits of the UUID. This is a read only setting.

- group: system_info
  name: serial_number
  expert: False
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: The serial number of the receiver.
  Notes: This number should match the number on the barcode on the board and cannot be modified.

- group: system_info
  name: pfwp_build_id
  expert: true
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: build id for real-time GNSS firmware (piksi_firmware).
  Notes: This is a read only setting.

- group: system_info
  name: pfwp_build_date
  expert: true
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: build date for real-time GNSS firmware (piksi_firmware).
  Notes: This is a read only setting.

- group: system_info
  name: nap_build_id
  expert: true
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: build id for SwiftNap FPGA bitstream.
  Notes: This is a read only setting.

- group: system_info
  name: nap_build_date
  expert: true
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: build date for SwiftNap FPGA bitstream.
  Notes: This is a read only setting.

- group: system_info
  name: nap_channels
  expert: true
  type: string
  units: N/A
  default value: '40'
  readonly: True
  enumerated possible values:
  Description: Number of channels in SwiftNap FPGA.
  Notes: This is a read only setting.

- group: system_info
  name: mac_address
  expert: False
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: The MAC address of the receiver.
  Notes: This is a read only setting.

- group: system_info
  name: uuid
  expert: False
  type: string
  units: N/A
  default value: N/A
  readonly: True
  enumerated possible values:
  Description: The UUID of the receiver.
  Notes: The UUID is a Universally Unique IDentifier for this receiver.
    The lower 16 bits of the UUID are used for the SBP Sender ID. This is a read only setting.

- group: system_info
  name: uptime_s
  expert: False
  type: integer
  units: s
  default value: ''
  readonly: True
  enumerated possible values:
  Description: Device uptime measured from power up / reset.
  Notes:

- group: system_monitor
  name: heartbeat_period_milliseconds
  expert: true
  type: integer
  units: ms
  default value: '1000'
  readonly: false
  enumerated possible values:
  Description: Period for sending the SBP_HEARTBEAT messages.
  Notes:

- group: system_monitor
  name: spectrum_analyzer
  expert: true
  type: boolean
  units: N/A
  default value: 'False'
  readonly: false
  enumerated possible values: True,False
  Description: Enable spectrum analyzer.
  Notes: This setting enables the on-device spectrum analyzer and associated SBP output.
    The spectrum analyzer is available from the "Advanced" tab of the console.

- group: system_monitor
  name: watchdog
  expert: true
  type: boolean
  units: N/A
  default value: 'True'
  readonly: false
  enumerated possible values: True,False
  Description: Enable hardware watchdog timer to reset the receiver if it locks up for.
    any reason
  Notes: You must reset the receiver for this change to take effect.

- group: tls_client0
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'Disabled'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for TLS client 0. The client will initiate a connection with the server and establish bi-directional communications.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting and to receive incoming SBP messages. If the mode is changed from SBP the console will no longer be able to communicate over the interface.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not transmit or receive any other messages.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages.

    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

    The connection is bi-directional so these modes behave the same as the UART modes.

- group: tls_client0
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: '23,65,72,74,81,97,117,134,136,137,138,139, 144,149,163,165,166,167,171,175,181, 185,187,188,189,190,257,258,259,520,522, 524,526,527,528,1025,2304/50,2305,2306/50, 30583,65280,65282,65535'
  readonly: false
  Description: Configure which messages should be sent on the port. Does not effect which incoming messages are listened to.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For Ethernet,
    the default value is optimal for logging and communication with the console.

- group: tls_client0
  name: address
  expert: false
  type: string
  units: N/A
  default value: ''
  readonly: false
  Description: IP address and port for TLS client 0 to connect to.
  Notes: The address setting is defined according to the convention "hostname:port".
    For example, it should match the format 192.168.0.222:55555 or xxxxx.net:2101 .

- group: tcp_client0
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'Disabled'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for TCP client 0. The client will initiate a connection with the server and establish bi-directional communications.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting and to receive incoming SBP messages. If the mode is changed from SBP the console will no longer be able to communicate over the interface.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not transmit or receive any other messages.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages.

    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

    The connection is bi-directional so these modes behave the same as the UART modes.

- group: tcp_client0
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: '23,65,72,74,81,97,117,134,136,137,138,139, 144,149,163,165,166,167,171,175,181, 185,187,188,189,190,257,258,259,520,522, 524,526,527,528,1025,2304/50,2305,2306/50, 30583,65280,65282,65535'
  readonly: false
  Description: Configure which messages should be sent on the port. Does not effect which incoming messages are listened to.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For Ethernet,
    the default value is optimal for logging and communication with the console.

- group: tcp_client0
  name: enabled_emp_messages
  expert: false
  type: string
  units: N/A
  default value: '50,51,52/5,53/50,54/50,55/5'
  readonly: false
  Description: Configure which AAR S-9103 EMP messages should be sent to the port. This setting is used only if EMP OUT mode is selected.
  Notes: The enabled emp messages settings is a list of message IDs and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent at their default rates. If not blank, a comma separated list of EMP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each ID. For example, an entry of 50/10 would provide message with ID 50 at 1/10th the normal rate.

- group: tcp_client0
  name: address
  expert: false
  type: string
  units: N/A
  default value: ''
  readonly: false
  Description: IP address and port for TCP client 0 to connect to.
  Notes: The address setting is defined according to the convention "hostname:port".
    For example, it should match the format 192.168.0.222:55555 or xxxxx.net:2101 .

- group: tcp_client1
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'Disabled'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for TCP client 1. The client will initiate a connection with the server and establish bi-directional communications.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting and to receive incoming SBP messages. If the mode is changed from SBP the console will no longer be able to communicate over the interface.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not transmit or receive any other messages.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages.

    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

    The connection is bi-directional so these modes behave the same as the UART modes.

- group: tcp_client1
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: '23,65,72,74,81,97,117,134,136,137,138,139, 144,149,163,165,166,167,171,175,181, 185,187,188,189,190,257,258,259,520,522, 524,526,527,528,1025,2304/50,2305,2306/50, 30583,65280,65282,65535'
  readonly: false
  Description: Configure which messages should be sent on the port. Does not effect which incoming messages are listened to.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For Ethernet,
    the default value is optimal for logging and communication with the console.

- group: tcp_client1
  name: enabled_emp_messages
  expert: false
  type: string
  units: N/A
  default value: '50,51,52/5,53/50,54/50,55/5'
  readonly: false
  Description: Configure which AAR S-9103 EMP messages should be sent to the port. This setting is used only if EMP OUT mode is selected.
  Notes: The enabled emp messages settings is a list of message IDs and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent at their default rates. If not blank, a comma separated list of EMP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each ID. For example, an entry of 50/10 would provide message with ID 50 at 1/10th the normal rate.

- group: tcp_client1
  name: address
  expert: false
  type: string
  units: N/A
  default value: ''
  readonly: false
  Description: IP address and port for TCP client 1 to connect to.
  Notes: The address setting is defined according to the convention "hostname:port".
    For example, it should match the format 192.168.0.222:55555 or xxxxx.net:2101 .

- group: tcp_server0
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'SBP'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for TCP server 0. The server will listen for incoming client connections and establish a bi-directional communications.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting and to receive incoming SBP messages. If the mode is changed from SBP the console will no longer be able to communicate over the interface.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not transmit or receive any other messages.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages.

    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

    The connection is bi-directional so these modes behave the same as the UART modes.

- group: tcp_server0
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: '23,65,72,74,81,97,117,134,136,137,138,139, 144,149,163,165,166,167,171,175,181, 185,187,188,189,190,257,258,259,520,522, 524,526,527,528,1025,2304/50,2305,2306/50, 30583,65280,65282,65535'
  readonly: false
  Description: Configure which messages should be sent on the port. Does not effect which incoming messages are listened to.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For Ethernet,
    the default value is optimal for logging and communication with the console.

- group: tcp_server0
  name: enabled_emp_messages
  expert: false
  type: string
  units: N/A
  default value: '50,51,52/5,53/50,54/50,55/5'
  readonly: false
  Description: Configure which AAR S-9103 EMP messages should be sent to the port. This setting is used only if EMP OUT mode is selected.
  Notes: The enabled emp messages settings is a list of message IDs and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent at their default rates. If not blank, a comma separated list of EMP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each ID. For example, an entry of 50/10 would provide message with ID 50 at 1/10th the normal rate.

- group: tcp_server0
  name: port
  expert: false
  type: integer
  units: N/A
  default value: '55555'
  readonly: false
  Description: Port for TCP server 0 to listen on.
  Notes:

- group: tcp_server1
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'SBP'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for TCP server 1. The server will listen for incoming client connections and establish a bi-directional communications.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting and to receive incoming SBP messages. If the mode is changed from SBP the console will no longer be able to communicate over the interface.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not transmit or receive any other messages.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages.

    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

    The connection is bi-directional so these modes behave the same as the UART modes.

- group: tcp_server1
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: '23,65,72,74,81,97,117,134,136,137,138,139, 144,149,163,165,166,167,171,175,181, 185,187,188,189,190,257,258,259,520,522, 524,526,527,528,1025,2304/50,2305,2306/50, 30583,65280,65282,65535'
  readonly: false
  Description: Configure which messages should be sent on the port. Does not effect which incoming messages are listened to.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For Ethernet,
    the default value is optimal for logging and communication with the console.

- group: tcp_server1
  name: enabled_emp_messages
  expert: false
  type: string
  units: N/A
  default value: '50,51,52/5,53/50,54/50,55/5'
  readonly: false
  Description: Configure which AAR S-9103 EMP messages should be sent to the port. This setting is used only if EMP OUT mode is selected.
  Notes: The enabled emp messages settings is a list of message IDs and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent at their default rates. If not blank, a comma separated list of EMP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each ID. For example, an entry of 50/10 would provide message with ID 50 at 1/10th the normal rate.

- group: tcp_server1
  name: port
  expert: false
  type: integer
  units: N/A
  default value: '55556'
  readonly: false
  Description: Port for TCP server 1 to listen on.
  Notes:

- group: track
  name: elevation_mask
  expert: true
  type: float
  units: degrees
  default value: '0'
  readonly: false
  enumerated possible values:
  Description: Tracking elevation mask.
  Notes: Satellites must be above the horizon by at least this angle before they
    will be tracked.

- group: track
  name: send_trk_detailed
  expert: true
  type: boolean
  default value: false
  readonly: false
  Description: send detailed tracking state message.
  Notes:

- group: track
  name: mode
  expert: true
  type: enum
  default value: rover
  readonly: false
  enumerated possible values: rover,base station
  Description: Set the tracking loop configuration
  Notes: Base station profile should only be used in situations where the receiver is kept static. Degraded performance will be seen if the receiver is moving with base station profile enabled.

- group: track
  name: iq_output_mask
  expert: true
  type: integer
  units: N/A
  default value: 0
  readonly: false
  enumerated possible values:
  Description: Output raw I/Q correlations.
  Notes: Bitmask of channel IDs (not PRNs)

- group: track
  name: max_pll_integration_time_ms
  expert: true
  type: integer
  units: N/A
  default value: '20'
  readonly: false
  enumerated possible values:
  Description: Controls maximum possible integration time for a measurement.
  Notes: This can be used to configure the sensitivity and dynamic tracking modes permitted to be used by receiver.
    Lower values provide lower sensitivity and noisier phase measurements but better performance in dynamic conditions.

- group: uart0
  name: baudrate
  expert: false
  type: enum
  units: bps
  default value: '115200'
  readonly: false
  enumerated possible values: 1200,2400,4800,9600,19200,38400,57600,115200,230400,460800,921600
  Description: The Baud rate for the UART 0.
  Notes: The maximum baud rate supported by the USB to RS232 adapter cable provided in the Piksi Multi / Duro kits is 230400.

- group: uart0
  name: flow_control
  expert: false
  type: enum
  units: NA
  default value: 'None'
  readonly: false
  enumerated possible values: None,RTS/CTS
  Description: Enable hardware flow control (RTS/CTS).
  Notes:

- group: uart0
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'SBP'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for UART0.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting and to receive incoming SBP messages. If the mode is changed from SBP the console will no longer be able to communicate over the interface.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not transmit or receive any other messages.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages.

    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

- group: uart0
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: '72,74,117,65535'
  readonly: false
  Description: Configure which messages should be sent on the port.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For uart1,
    the default value is optimal for logging and communication with the console.

- group: uart0
  name: enabled_emp_messages
  expert: false
  type: string
  units: N/A
  default value: '50,51,52/5,53/50,54/50,55/5'
  readonly: false
  Description: Configure which AAR S-9103 EMP messages should be sent to the port. This setting is used only if EMP OUT mode is selected.
  Notes: The enabled emp messages settings is a list of message IDs and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent at their default rates. If not blank, a comma separated list of EMP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each ID. For example, an entry of 50/10 would provide message with ID 50 at 1/10th the normal rate.

- group: uart1
  name: baudrate
  expert: false
  type: enum
  units: bps
  default value: '115200'
  readonly: false
  enumerated possible values: 1200,2400,4800,9600,19200,38400,57600,115200,230400,460800,921600
  Description: The Baud rate for the UART 1.
  Notes: The maximum baud rate supported by the USB to RS232 adapter cable provided in the Piksi Multi / Duro kits is 230400.

- group: uart1
  name: flow_control
  expert: false
  type: enum
  units: NA
  default value: 'None'
  readonly: false
  enumerated possible values: None,RTS/CTS
  Description: Enable hardware flow control (RTS/CTS).
  Notes:

- group: uart1
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'SBP'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for UART 1.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting and to receive incoming SBP messages. If the mode is changed from SBP the console will no longer be able to communicate over the interface.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not transmit or receive any other messages.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages.

    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

- group: uart1
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: '23,65,72,74,81,97,117,134,136,137,138,139, 144,149,163,165,166,167,171,175,181, 185,187,188,189,190,257,258,259,520,522, 524,526,527,528,1025,2304/50,2305,2306/50, 30583,65280,65282,65535'
  readonly: false
  Description: Configure which messages should be sent on the port.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For uart1,
    the default value is optimal for logging and communication with the console.

- group: uart1
  name: enabled_emp_messages
  expert: false
  type: string
  units: N/A
  default value: '50,51,52/5,53/50,54/50,55/5'
  readonly: false
  Description: Configure which AAR S-9103 EMP messages should be sent to the port. This setting is used only if EMP OUT mode is selected.
  Notes: The enabled emp messages settings is a list of message IDs and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent at their default rates. If not blank, a comma separated list of EMP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each ID. For example, an entry of 50/10 would provide message with ID 50 at 1/10th the normal rate.

- group: udp_client0
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'Disabled'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN, RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for UDP client 0. The client will send packets to a server for uni-directional communications.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" has no effect for UDP clients.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages.

    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

- group: udp_client0
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: '23,65,72,74,81,97,117,134,136,137,138,139, 144,149,163,165,166,167,171,175,181, 185,187,188,189,190,257,258,259,520,522, 524,526,527,528,1025,2304/50,2305,2306/50, 30583,65280,65282,65535'
  readonly: false
  Description: Configure which messages should be sent to the server.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For Ethernet,
    the default value is optimal for logging and communication with the console.

- group: udp_client0
  name: enabled_emp_messages
  expert: false
  type: string
  units: N/A
  default value: '50,51,52/5,53/50,54/50,55/5'
  readonly: false
  Description: Configure which AAR S-9103 EMP messages should be sent to the server. This setting is used only if EMP OUT mode is selected.
  Notes: The enabled emp messages settings is a list of message IDs and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent at their default rates. If not blank, a comma separated list of EMP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each ID. For example, an entry of 50/10 would provide message with ID 50 at 1/10th the normal rate.

- group: udp_client0
  name: address
  expert: false
  type: string
  units: N/A
  default value: ''
  readonly: false
  Description: IP address for UDP client 0.
  Notes: The address setting is defined according to the convention "hostname:port".
    For example, it should match the format 192.168.0.222:55555 or xxxxx.net:2101 .

- group: udp_client0
  name: multicast_ttl
  expert: true
  type: integer
  units: N/A
  default value: '1'
  readonly: false
  Description: Multicast Time To Live property. Range [1..255].
  Notes:

- group: udp_client1
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'Disabled'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for UDP client 1. The client will send packets to a server for uni-directional communications.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" has no effect for UDP clients.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages

    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

- group: udp_client1
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: '23,65,72,74,81,97,117,134,136,137,138,139, 144,149,163,165,166,167,171,175,181, 185,187,188,189,190,257,258,259,520,522, 524,526,527,528,1025,2304/50,2305,2306/50, 30583,65280,65282,65535'
  readonly: false
  Description: Configure which messages should be sent to the server.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For Ethernet,
    the default value is optimal for logging and communication with the console.

- group: udp_client1
  name: enabled_emp_messages
  expert: false
  type: string
  units: N/A
  default value: '50,51,52/5,53/50,54/50,55/5'
  readonly: false
  Description: Configure which AAR S-9103 EMP messages should be sent to the server. This setting is used only if EMP OUT mode is selected.
  Notes: The enabled emp messages settings is a list of message IDs and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent at their default rates. If not blank, a comma separated list of EMP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each ID. For example, an entry of 50/10 would provide message with ID 50 at 1/10th the normal rate.

- group: udp_client1
  name: address
  expert: false
  type: string
  units: N/A
  default value: ''
  readonly: false
  Description: IP address for UDP client 1.
  Notes: The address setting is defined according to the convention "hostname:port".
    For example, it should match the format 192.168.0.222:55555 or xxxxx.net:2101 .

- group: udp_client1
  name: multicast_ttl
  expert: true
  type: integer
  units: N/A
  default value: '1'
  readonly: false
  Description: Multicast Time To Live property. Range [1..255].
  Notes:

- group: udp_server0
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'SBP'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for UDP server 0. The server will listen for incoming packets from a client for uni-directional communications.
  Notes: |
    "SBP" configures the interface to receive incoming SBP messages.

    "NMEA OUT" has no effect for a UDP server.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not receive any other messages.

    "RTCMv3 OUT" has no effect for a UDP server.

    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

- group: udp_server0
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: 'blank - all messages are enabled'
  readonly: false
  Description: Configure which messages should be sent on the port.
  Notes: Has no effect for a UDP server.

- group: udp_server0
  name: port
  expert: false
  type: integer
  units: N/A
  default value: '55557'
  readonly: false
  Description: Port for UDP server 0 to listen to.
  Notes:

- group: udp_server1
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'SBP'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for UDP server 1. The server will listen for incoming packets from a client for uni-directional communications.
  Notes: |
    "SBP" configures the interface to receive incoming SBP messages.

    "NMEA OUT" has no effect for a UDP server.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not receive any other messages.

    "RTCMv3 OUT" has no effect for a UDP server.

    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

- group: udp_server1
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: ''
  readonly: false
  Description: Configure which messages should be sent on the port.
  Notes: Has no effect for a UDP server.

- group: udp_server1
  name: port
  expert: false
  type: integer
  units: N/A
  default value: '55558'
  readonly: false
  Description: Port for UDP server 1 to listen to.
  Notes:

- group: user
  name: string1
  expert: false
  type: string
  default value: ''
  readonly: false
  Description: User string 1. Maximum 200 characters.
  units: N/A
  Notes:

- group: user
  name: string2
  expert: false
  type: string
  default value: ''
  readonly: false
  Description: User string 2. Maximum 200 characters.
  units: N/A
  Notes:

- group: user
  name: string3
  expert: false
  type: string
  default value: ''
  readonly: false
  Description: User string 3. Maximum 200 characters.
  units: N/A
  Notes:

- group: usb0
  name: enabled_sbp_messages
  expert: false
  type: string
  units: N/A
  default value: 'blank - all messages are enabled'
  readonly: false
  Description: Configure which messages should be sent on the port.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For uart1,
    the default value is optimal for logging and communication with the console.

- group: usb0
  name: mode
  expert: false
  type: enum
  units: N/A
  default value: 'SBP'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for USB0.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting and to receive incoming SBP messages. If the mode is changed from SBP the console will no longer be able to communicate over the interface.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not transmit or receive any other messages.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages.
    
    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

- group: can0
  name: mode
  expert: true
  type: enum
  units: N/A
  default value: 'Disabled'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT,Disabled
  Description: Communication protocol for CAN client 0. The client will send packets to a CAN bus.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not transmit or receive any other messages.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages.
    
    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

- group: can0
  name: enabled_sbp_messages
  expert: true
  type: string
  units: N/A
  default value: '72,74,117,522,527'
  readonly: false
  Description: Configure which messages should be sent to the server.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For Ethernet,
    the default value is optimal for logging and communication with the console.

- group: can1
  name: mode
  expert: true
  type: enum
  units: N/A
  default value: 'Disabled'
  readonly: false
  enumerated possible values: SBP,NMEA OUT,RTCMv3 IN,RTCMv3 OUT,EMP OUT
  Description: Communication protocol for CAN client 0. The client will send packets to a CAN bus.
  Notes: |
    "SBP" configures the interface to transmit messages specified in the 'enabled_sbp_messages' setting.

    "NMEA OUT" configures the interface to transmit the GGA, RMC, GLL, VTG, ZDA, GSA, and GSV NMEA 0183 messages. The interface will not receive incoming messages.

    "RTCMv3 IN" configures the interface to receive RTK corrections in RTCMv3 format. The interface will receive 1002, 1004, 1005, 1006, 1010, 1012, 1033, 1230 and MSM4-7 RTCMv3 messages and will not transmit or receive any other messages.

    "RTCMv3 OUT" configures the interface to transmit RTCMv3 messages.
    
    "EMP OUT" configures the interface to transmit messages specified in the 'enabled emp messages' setting.

- group: can1
  name: enabled_sbp_messages
  expert: true
  type: string
  units: N/A
  default value: '72,74,117,522,527'
  readonly: false
  Description: Configure which messages should be sent to the server.
  Notes: The enabled sbp messages settings is a list of message types
    and rate divisors that will be sent out of the interface. If left blank, all
    messages will be sent. If not blank, a comma separated list of
    SBP message IDs in base 10 integer format should be provided. Optionally,
    a divisor can be specified after the / character for each id. For example, an entry of
    3456/10 would provide message with ID 3456 at 1/10th the normal rate. For Ethernet,
    the default value is optimal for logging and communication with the console.

- group: can1
  name: termination
  expert: true
  type: boolean
  units: N/A
  default value: 'false'
  readonly: false
  Description: Configure status of CAN termination resistor on Duro.
  Notes: This setting toggles the 120 ohm termination resistor
    for the CAN interface available on the AUX connector of Duro.
    It should only appear on Duro devices.

- group: csac
  name: telemetry_enabled
  expert: false
  type: boolean
  units: N/A
  default value: 'false'
  readonly: false
  Description: Enables or disables the CSAC daemon which can communicate with Microsemi timing devices on UART0.

- group: cn0_est
  name: pri2sec_threshold
  type: float
  expert: true
  Description: Cn0 threshold to transition to 2nd stage tracking.
  readonly: false

- group: cn0_est
  name: sec2pri_threshold
  type: float
  expert: true
  Description: Cn0 threshold to transition to out of 2nd stage tracking.
  readonly: false

- group: l1ca_track
  name: show_unconfirmed
  expert: true
  type: boolean
  Description: Show unconfirmed tracking channels in tracking state.
  readonly: false

- group: l1ca_track
  name: xcorr_cof
  expert: true
  type: float
  Description: cross correlation coefficient.
  readonly: false

- group: l1ca_track
  name: xcorr_delta
  expert: true
  type: float
  Description: cross correlation delta.
  readonly: false

- group: l1ca_track
  name: xcorr_time
  expert: true
  type: float
  Description: cross correlation time.
  readonly: false

- group: glo_l1of_track
  name: show_unconfirmed
  expert: true
  type: boolean
  Description: Show unconfirmed tracking channels in tracking state.
  readonly: false

- group: glo_l1of_track
  name: xcorr_cof
  expert: true
  type: float
  Description: cross correlation coefficient.
  readonly: false

- group: glo_l1of_track
  name: xcorr_delta
  expert: true
  type: float
  Description: cross correlation delta.
  readonly: false

- group: glo_l1of_track
  name: xcorr_time
  expert: true
  type: float
  Description: cross correlation time.
  readonly: false

- group: l2c_track
  name: xcorr_cof
  expert: true
  type: float
  Description: cross correlation coefficient.
  readonly: false

- group: l2c_track
  name: xcorr_delta
  expert: true
  type: float
  Description: cross correlation delta.
  readonly: false

- group: l2c_track
  name: xcorr_time
  expert: true
  type: float
  Description: cross correlation time.
  readonly: false

- group: l2c_track
  name: show_unconfirmed
  expert: true
  type: bool
  Description: Show unconfirmed tracking channels in tracking state.
  readonly: false

- group: glo_l2of_track
  name: show_unconfirmed
  expert: true
  type: boolean
  Description: Show unconfirmed tracking channels in tracking state.
  readonly: false

- group: glo_l2of_track
  name: xcorr_cof
  expert: true
  type: float
  Description: cross correlation coefficient.
  readonly: false

- group: glo_l2of_track
  name: xcorr_delta
  expert: true
  type: float
  Description: cross correlation delta.
  readonly: false

- group: glo_l2of_track
  name: xcorr_time
  expert: true
  type: float
  Description: cross correlation time.
  readonly: false