-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.yaml
3838 lines (3428 loc) · 125 KB
/
settings.yaml
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
---
- 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: |