forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ParameterMetaDataBackup.xml
6879 lines (6879 loc) · 368 KB
/
ParameterMetaDataBackup.xml
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
<?xml version="1.0"?>
<Params>
<ArduCopter2>
<HS1_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS1_MIN>
<HS1_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS1_TRIM>
<HS1_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS1_MAX>
<HS1_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</HS1_REV>
<HS1_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</HS1_DZ>
<HS2_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS2_MIN>
<HS2_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS2_TRIM>
<HS2_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS2_MAX>
<HS2_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</HS2_REV>
<HS2_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</HS2_DZ>
<HS3_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS3_MIN>
<HS3_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS3_TRIM>
<HS3_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS3_MAX>
<HS3_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</HS3_REV>
<HS3_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</HS3_DZ>
<HS4_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS4_MIN>
<HS4_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS4_TRIM>
<HS4_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</HS4_MAX>
<HS4_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</HS4_REV>
<HS4_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</HS4_DZ>
<RC1_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC1_MIN>
<RC1_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC1_TRIM>
<RC1_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC1_MAX>
<RC1_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC1_REV>
<RC1_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC1_DZ>
<RC2_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC2_MIN>
<RC2_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC2_TRIM>
<RC2_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC2_MAX>
<RC2_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC2_REV>
<RC2_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC2_DZ>
<RC3_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC3_MIN>
<RC3_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC3_TRIM>
<RC3_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC3_MAX>
<RC3_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC3_REV>
<RC3_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC3_DZ>
<RC4_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC4_MIN>
<RC4_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC4_TRIM>
<RC4_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC4_MAX>
<RC4_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC4_REV>
<RC4_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC4_DZ>
<RC5_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC5_MIN>
<RC5_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC5_TRIM>
<RC5_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC5_MAX>
<RC5_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC5_REV>
<RC5_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC5_DZ>
<RC5_FUNCTION>
<DisplayName>Servo out function</DisplayName>
<Description>Setting this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function</Description>
<Values>0:Disabled,1:RCPassThru,2:Flap,3:Flap_auto,4:Aileron,6:mount_pan,7:mount_tilt,8:mount_roll,9:mount_open,10:camera_trigger,11:release,12:mount2_pan,13:mount2_tilt,14:mount2_roll,15:mount2_open,16:DifferentialSpoiler1,17:DifferentialSpoiler2,18:AileronWithInput,19:Elevator,20:ElevatorWithInput,21:Rudder,24:Flaperon1,25:Flaperon2</Values>
<User>Standard</User>
</RC5_FUNCTION>
<RC6_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC6_MIN>
<RC6_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC6_TRIM>
<RC6_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC6_MAX>
<RC6_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC6_REV>
<RC6_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC6_DZ>
<RC6_FUNCTION>
<DisplayName>Servo out function</DisplayName>
<Description>Setting this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function</Description>
<Values>0:Disabled,1:RCPassThru,2:Flap,3:Flap_auto,4:Aileron,6:mount_pan,7:mount_tilt,8:mount_roll,9:mount_open,10:camera_trigger,11:release,12:mount2_pan,13:mount2_tilt,14:mount2_roll,15:mount2_open,16:DifferentialSpoiler1,17:DifferentialSpoiler2,18:AileronWithInput,19:Elevator,20:ElevatorWithInput,21:Rudder,24:Flaperon1,25:Flaperon2</Values>
<User>Standard</User>
</RC6_FUNCTION>
<RC7_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC7_MIN>
<RC7_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC7_TRIM>
<RC7_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC7_MAX>
<RC7_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC7_REV>
<RC7_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC7_DZ>
<RC7_FUNCTION>
<DisplayName>Servo out function</DisplayName>
<Description>Setting this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function</Description>
<Values>0:Disabled,1:RCPassThru,2:Flap,3:Flap_auto,4:Aileron,6:mount_pan,7:mount_tilt,8:mount_roll,9:mount_open,10:camera_trigger,11:release,12:mount2_pan,13:mount2_tilt,14:mount2_roll,15:mount2_open,16:DifferentialSpoiler1,17:DifferentialSpoiler2,18:AileronWithInput,19:Elevator,20:ElevatorWithInput,21:Rudder,24:Flaperon1,25:Flaperon2</Values>
<User>Standard</User>
</RC7_FUNCTION>
<RC8_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC8_MIN>
<RC8_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC8_TRIM>
<RC8_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC8_MAX>
<RC8_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC8_REV>
<RC8_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC8_DZ>
<RC8_FUNCTION>
<DisplayName>Servo out function</DisplayName>
<Description>Setting this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function</Description>
<Values>0:Disabled,1:RCPassThru,2:Flap,3:Flap_auto,4:Aileron,6:mount_pan,7:mount_tilt,8:mount_roll,9:mount_open,10:camera_trigger,11:release,12:mount2_pan,13:mount2_tilt,14:mount2_roll,15:mount2_open,16:DifferentialSpoiler1,17:DifferentialSpoiler2,18:AileronWithInput,19:Elevator,20:ElevatorWithInput,21:Rudder,24:Flaperon1,25:Flaperon2</Values>
<User>Standard</User>
</RC8_FUNCTION>
<RC9_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC9_MIN>
<RC9_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC9_TRIM>
<RC9_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC9_MAX>
<RC9_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC9_REV>
<RC9_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC9_DZ>
<RC9_FUNCTION>
<DisplayName>Servo out function</DisplayName>
<Description>Setting this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function</Description>
<Values>0:Disabled,1:RCPassThru,2:Flap,3:Flap_auto,4:Aileron,6:mount_pan,7:mount_tilt,8:mount_roll,9:mount_open,10:camera_trigger,11:release,12:mount2_pan,13:mount2_tilt,14:mount2_roll,15:mount2_open,16:DifferentialSpoiler1,17:DifferentialSpoiler2,18:AileronWithInput,19:Elevator,20:ElevatorWithInput,21:Rudder,24:Flaperon1,25:Flaperon2</Values>
<User>Standard</User>
</RC9_FUNCTION>
<RC10_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC10_MIN>
<RC10_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC10_TRIM>
<RC10_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC10_MAX>
<RC10_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC10_REV>
<RC10_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC10_DZ>
<RC10_FUNCTION>
<DisplayName>Servo out function</DisplayName>
<Description>Setting this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function</Description>
<Values>0:Disabled,1:RCPassThru,2:Flap,3:Flap_auto,4:Aileron,6:mount_pan,7:mount_tilt,8:mount_roll,9:mount_open,10:camera_trigger,11:release,12:mount2_pan,13:mount2_tilt,14:mount2_roll,15:mount2_open,16:DifferentialSpoiler1,17:DifferentialSpoiler2,18:AileronWithInput,19:Elevator,20:ElevatorWithInput,21:Rudder,24:Flaperon1,25:Flaperon2</Values>
<User>Standard</User>
</RC10_FUNCTION>
<RC11_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC11_MIN>
<RC11_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC11_TRIM>
<RC11_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC11_MAX>
<RC11_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC11_REV>
<RC11_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC11_DZ>
<RC11_FUNCTION>
<DisplayName>Servo out function</DisplayName>
<Description>Setting this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function</Description>
<Values>0:Disabled,1:RCPassThru,2:Flap,3:Flap_auto,4:Aileron,6:mount_pan,7:mount_tilt,8:mount_roll,9:mount_open,10:camera_trigger,11:release,12:mount2_pan,13:mount2_tilt,14:mount2_roll,15:mount2_open,16:DifferentialSpoiler1,17:DifferentialSpoiler2,18:AileronWithInput,19:Elevator,20:ElevatorWithInput,21:Rudder,24:Flaperon1,25:Flaperon2</Values>
<User>Standard</User>
</RC11_FUNCTION>
<RC12_MIN>
<DisplayName>RC min PWM</DisplayName>
<Description>RC minimum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC12_MIN>
<RC12_TRIM>
<DisplayName>RC trim PWM</DisplayName>
<Description>RC trim (neutral) PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC12_TRIM>
<RC12_MAX>
<DisplayName>RC max PWM</DisplayName>
<Description>RC maximum PWM pulse width. Typically 1000 is lower limit, 1500 is neutral and 2000 is upper limit.</Description>
<Units>pwm</Units>
<Range>800 2200</Range>
<Increment>1</Increment>
<User>Advanced</User>
</RC12_MAX>
<RC12_REV>
<DisplayName>RC reverse</DisplayName>
<Description>Reverse servo operation. Set to 1 for normal (forward) operation. Set to -1 to reverse this channel.</Description>
<Values>-1:Reversed,1:Normal</Values>
<User>Advanced</User>
</RC12_REV>
<RC12_DZ>
<DisplayName>RC dead-zone</DisplayName>
<Description>dead zone around trim.</Description>
<Units>pwm</Units>
<Range>0 200</Range>
<User>Advanced</User>
</RC12_DZ>
<RC12_FUNCTION>
<DisplayName>Servo out function</DisplayName>
<Description>Setting this to Disabled(0) will setup this output for control by auto missions or MAVLink servo set commands. any other value will enable the corresponding function</Description>
<Values>0:Disabled,1:RCPassThru,2:Flap,3:Flap_auto,4:Aileron,6:mount_pan,7:mount_tilt,8:mount_roll,9:mount_open,10:camera_trigger,11:release,12:mount2_pan,13:mount2_tilt,14:mount2_roll,15:mount2_open,16:DifferentialSpoiler1,17:DifferentialSpoiler2,18:AileronWithInput,19:Elevator,20:ElevatorWithInput,21:Rudder,24:Flaperon1,25:Flaperon2</Values>
<User>Standard</User>
</RC12_FUNCTION>
<CAM_TRIGG_TYPE>
<DisplayName>Camera shutter (trigger) type</DisplayName>
<Description>how to trigger the camera to take a picture</Description>
<Values>0:Servo,1:Relay</Values>
<User>Standard</User>
</CAM_TRIGG_TYPE>
<CAM_DURATION>
<DisplayName>Duration that shutter is held open</DisplayName>
<Description>How long the shutter will be held open in 10ths of a second (i.e. enter 10 for 1second, 50 for 5seconds)</Description>
<Range>0 50</Range>
<User>Standard</User>
</CAM_DURATION>
<CAM_SERVO_ON>
<DisplayName>Servo ON PWM value</DisplayName>
<Description>PWM value to move servo to when shutter is activated</Description>
<Range>1000 2000</Range>
<User>Standard</User>
</CAM_SERVO_ON>
<CAM_SERVO_OFF>
<DisplayName>Servo OFF PWM value</DisplayName>
<Description>PWM value to move servo to when shutter is deactivated</Description>
<Range>1000 2000</Range>
<User>Standard</User>
</CAM_SERVO_OFF>
<CAM_TRIGG_DIST>
<DisplayName>Camera trigger distance</DisplayName>
<Description>Distance in meters between camera triggers. If this value is non-zero then the camera will trigger whenever the GPS position changes by this number of meters regardless of what mode the APM is in. Note that this parameter can also be set in an auto mission using the DO_SET_CAM_TRIGG_DIST command, allowing you to enable/disable the triggering of the camera during the flight.</Description>
<User>Standard</User>
<Range>0 1000</Range>
</CAM_TRIGG_DIST>
<RELAY_PIN>
<DisplayName>First Relay Pin</DisplayName>
<Description>Digital pin number for first relay control. This is the pin used for camera control.</Description>
<User>Standard</User>
<Values>13:APM2 A9 pin,47:APM1 relay,54:Pixhawk FMU AUX1,55:Pixhawk FMU AUX2,111:PX4 FMU Relay1,112:PX4 FMU Relay2,113:PX4IO Relay1,114:PX4IO Relay2,115:PX4IO ACC1,116:PX4IO ACC2</Values>
</RELAY_PIN>
<RELAY_PIN2>
<DisplayName>Second Relay Pin</DisplayName>
<Description>Digital pin number for 2nd relay control.</Description>
<User>Standard</User>
<Values>13:APM2 A9 pin,47:APM1 relay,54:Pixhawk FMU AUX1,55:Pixhawk FMU AUX2,111:PX4 FMU Relay1,112:PX4 FMU Relay2,113:PX4IO Relay1,114:PX4IO Relay2,115:PX4IO ACC1,116:PX4IO ACC2</Values>
</RELAY_PIN2>
<RELAY_PIN3>
<DisplayName>Third Relay Pin</DisplayName>
<Description>Digital pin number for 3rd relay control.</Description>
<User>Standard</User>
<Values>13:APM2 A9 pin,47:APM1 relay,54:Pixhawk FMU AUX1,55:Pixhawk FMU AUX2,111:PX4 FMU Relay1,112:PX4 FMU Relay2,113:PX4IO Relay1,114:PX4IO Relay2,115:PX4IO ACC1,116:PX4IO ACC2</Values>
</RELAY_PIN3>
<RELAY_PIN4>
<DisplayName>Fourth Relay Pin</DisplayName>
<Description>Digital pin number for 4th relay control.</Description>
<User>Standard</User>
<Values>13:APM2 A9 pin,47:APM1 relay,54:Pixhawk FMU AUX1,55:Pixhawk FMU AUX2,111:PX4 FMU Relay1,112:PX4 FMU Relay2,113:PX4IO Relay1,114:PX4IO Relay2,115:PX4IO ACC1,116:PX4IO ACC2</Values>
</RELAY_PIN4>
<EPM_ENABLE>
<DisplayName>EPM Enable/Disable</DisplayName>
<Description>EPM enable/disable. Note enabling will disable the external LEDs on the APM2</Description>
<User>Standard</User>
<Values>0:Disabled, 1:Enabled</Values>
</EPM_ENABLE>
<COMPASS_OFS_X>
<DisplayName>Compass offsets on the X axis</DisplayName>
<Description>Offset to be added to the compass x-axis values to compensate for metal in the frame</Description>
<Range>-400 400</Range>
<Increment>1</Increment>
</COMPASS_OFS_X>
<COMPASS_OFS_Y>
<DisplayName>Compass offsets on the Y axis</DisplayName>
<Description>Offset to be added to the compass y-axis values to compensate for metal in the frame</Description>
<Range>-400 400</Range>
<Increment>1</Increment>
</COMPASS_OFS_Y>
<COMPASS_OFS_Z>
<DisplayName>Compass offsets on the Z axis</DisplayName>
<Description>Offset to be added to the compass z-axis values to compensate for metal in the frame</Description>
<Range>-400 400</Range>
<Increment>1</Increment>
</COMPASS_OFS_Z>
<COMPASS_DEC>
<DisplayName>Compass declination</DisplayName>
<Description>An angle to compensate between the true north and magnetic north</Description>
<Range>-3.142 3.142</Range>
<Units>Radians</Units>
<Increment>0.01</Increment>
<User>Standard</User>
</COMPASS_DEC>
<COMPASS_LEARN>
<DisplayName>Learn compass offsets automatically</DisplayName>
<Description>Enable or disable the automatic learning of compass offsets</Description>
<Values>0:Disabled,1:Enabled</Values>
<User>Advanced</User>
</COMPASS_LEARN>
<COMPASS_USE>
<DisplayName>Use compass for yaw</DisplayName>
<Description>Enable or disable the use of the compass (instead of the GPS) for determining heading</Description>
<Values>0:Disabled,1:Enabled</Values>
<User>Advanced</User>
</COMPASS_USE>
<COMPASS_AUTODEC>
<DisplayName>Auto Declination</DisplayName>
<Description>Enable or disable the automatic calculation of the declination based on gps location</Description>
<Values>0:Disabled,1:Enabled</Values>
<User>Advanced</User>
</COMPASS_AUTODEC>
<COMPASS_MOTCT>
<DisplayName>Motor interference compensation type</DisplayName>
<Description>Set motor interference compensation type to disabled, throttle or current. Do not change manually.</Description>
<Values>0:Disabled,1:Use Throttle,2:Use Current</Values>
<Increment>1</Increment>
</COMPASS_MOTCT>
<COMPASS_MOT_X>
<DisplayName>Motor interference compensation for body frame X axis</DisplayName>
<Description>Multiplied by the current throttle and added to the compass's x-axis values to compensate for motor interference</Description>
<Range>-1000 1000</Range>
<Units>Offset per Amp or at Full Throttle</Units>
<Increment>1</Increment>
</COMPASS_MOT_X>
<COMPASS_MOT_Y>
<DisplayName>Motor interference compensation for body frame Y axis</DisplayName>
<Description>Multiplied by the current throttle and added to the compass's y-axis values to compensate for motor interference</Description>
<Range>-1000 1000</Range>
<Units>Offset per Amp or at Full Throttle</Units>
<Increment>1</Increment>
</COMPASS_MOT_Y>
<COMPASS_MOT_Z>
<DisplayName>Motor interference compensation for body frame Z axis</DisplayName>
<Description>Multiplied by the current throttle and added to the compass's z-axis values to compensate for motor interference</Description>
<Range>-1000 1000</Range>
<Units>Offset per Amp or at Full Throttle</Units>
<Increment>1</Increment>
</COMPASS_MOT_Z>
<COMPASS_ORIENT>
<DisplayName>Compass orientation</DisplayName>
<Description>The orientation of the compass relative to the autopilot board. This will default to the right value for each board type, but can be changed if you have an external compass. See the documentation for your external compass for the right value. The correct orientation should give the X axis forward, the Y axis to the right and the Z axis down. So if your aircraft is pointing west it should show a positive value for the Y axis, and a value close to zero for the X axis. On a PX4 or Pixhawk with an external compass the correct value is zero if the compass is correctly oriented. NOTE: This orientation is combined with any AHRS_ORIENTATION setting.</Description>
<Values>0:None,1:Yaw45,2:Yaw90,3:Yaw135,4:Yaw180,5:Yaw225,6:Yaw270,7:Yaw315,8:Roll180,9:Roll180Yaw45,10:Roll180Yaw90,11:Roll180Yaw135,12:Pitch180,13:Roll180Yaw225,14:Roll180Yaw270,15:Roll180Yaw315,16:Roll90,17:Roll90Yaw45,18:Roll90Yaw90,19:Roll90Yaw135,20:Roll270,21:Roll270Yaw45,22:Roll270Yaw90,23:Roll270Yaw136,24:Pitch90,25:Pitch270,26:Pitch180Yaw90,27:Pitch180Yaw270,28:Roll90Pitch90,29:Roll180Pitch90,30:Roll270Pitch90,31:Roll90Pitch180,32:Roll270Pitch180,33:Roll90Pitch270,34:Roll180Pitch270,35:Roll270Pitch270,36:Roll90Pitch180Yaw90,37:Roll90Yaw270</Values>
</COMPASS_ORIENT>
<COMPASS_EXTERNAL>
<DisplayName>Compass is attached via an external cable</DisplayName>
<Description>Configure compass so it is attached externally. This is auto-detected on PX4 and Pixhawk, but must be set correctly on an APM2. Set to 1 if the compass is externally connected. When externally connected the COMPASS_ORIENT option operates independently of the AHRS_ORIENTATION board orientation option</Description>
<Values>0:Internal,1:External</Values>
<User>Advanced</User>
</COMPASS_EXTERNAL>
<INS_PRODUCT_ID>
<DisplayName>IMU Product ID</DisplayName>
<Description>Which type of IMU is installed (read-only).</Description>
<User>Advanced</User>
<Values>0:Unknown,1:APM1-1280,2:APM1-2560,88:APM2,3:SITL,4:PX4v1,5:PX4v2,256:Flymaple,257:Linux</Values>
</INS_PRODUCT_ID>
<INS_ACCSCAL_X>
<DisplayName>Accelerometer scaling of X axis</DisplayName>
<Description>Accelerometer scaling of X axis. Calculated during acceleration calibration routine</Description>
<Range>0.8 1.2</Range>
<User>Advanced</User>
</INS_ACCSCAL_X>
<INS_ACCSCAL_Y>
<DisplayName>Accelerometer scaling of Y axis</DisplayName>
<Description>Accelerometer scaling of Y axis Calculated during acceleration calibration routine</Description>
<Range>0.8 1.2</Range>
<User>Advanced</User>
</INS_ACCSCAL_Y>
<INS_ACCSCAL_Z>
<DisplayName>Accelerometer scaling of Z axis</DisplayName>
<Description>Accelerometer scaling of Z axis Calculated during acceleration calibration routine</Description>
<Range>0.8 1.2</Range>
<User>Advanced</User>
</INS_ACCSCAL_Z>
<INS_ACCOFFS_X>
<DisplayName>Accelerometer offsets of X axis</DisplayName>
<Description>Accelerometer offsets of X axis. This is setup using the acceleration calibration or level operations</Description>
<Units>m/s/s</Units>
<Range>-300 300</Range>
<User>Advanced</User>
</INS_ACCOFFS_X>
<INS_ACCOFFS_Y>
<DisplayName>Accelerometer offsets of Y axis</DisplayName>
<Description>Accelerometer offsets of Y axis. This is setup using the acceleration calibration or level operations</Description>
<Units>m/s/s</Units>
<Range>-300 300</Range>
<User>Advanced</User>
</INS_ACCOFFS_Y>
<INS_ACCOFFS_Z>
<DisplayName>Accelerometer offsets of Z axis</DisplayName>
<Description>Accelerometer offsets of Z axis. This is setup using the acceleration calibration or level operations</Description>
<Units>m/s/s</Units>
<Range>-300 300</Range>
<User>Advanced</User>
</INS_ACCOFFS_Z>
<INS_GYROFFS_X>
<DisplayName>Gyro offsets of X axis</DisplayName>
<Description>Gyro sensor offsets of X axis. This is setup on each boot during gyro calibrations</Description>
<Units>rad/s</Units>
<User>Advanced</User>
</INS_GYROFFS_X>
<INS_GYROFFS_Y>
<DisplayName>Gyro offsets of Y axis</DisplayName>
<Description>Gyro sensor offsets of Y axis. This is setup on each boot during gyro calibrations</Description>
<Units>rad/s</Units>
<User>Advanced</User>
</INS_GYROFFS_Y>
<INS_GYROFFS_Z>
<DisplayName>Gyro offsets of Z axis</DisplayName>
<Description>Gyro sensor offsets of Z axis. This is setup on each boot during gyro calibrations</Description>
<Units>rad/s</Units>
<User>Advanced</User>
</INS_GYROFFS_Z>
<INS_MPU6K_FILTER>
<DisplayName>MPU6000 filter frequency</DisplayName>
<Description>Filter frequency to ask the MPU6000 to apply to samples. This can be set to a lower value to try to cope with very high vibration levels in aircraft. The default value on ArduPlane, APMrover2 and ArduCopter is 20Hz. This option takes effect on the next reboot or gyro initialisation</Description>
<Units>Hz</Units>
<Values>0:Default,5:5Hz,10:10Hz,20:20Hz,42:42Hz,98:98Hz</Values>
<User>Advanced</User>
</INS_MPU6K_FILTER>
<INAV_TC_XY>
<DisplayName>Horizontal Time Constant</DisplayName>
<Description>Time constant for GPS and accel mixing. Higher TC decreases GPS impact on position estimate</Description>
<Range>0 10</Range>
<Increment>0.1</Increment>
</INAV_TC_XY>
<INAV_TC_Z>
<DisplayName>Vertical Time Constant</DisplayName>
<Description>Time constant for baro and accel mixing. Higher TC decreases barometers impact on altitude estimate</Description>
<Range>0 10</Range>
<Increment>0.1</Increment>
</INAV_TC_Z>
<WPNAV_SPEED>
<DisplayName>Waypoint Horizontal Speed Target</DisplayName>
<Description>Defines the speed in cm/s which the aircraft will attempt to maintain horizontally during a WP mission</Description>
<Units>cm/s</Units>
<Range>0 2000</Range>
<Increment>50</Increment>
<User>Standard</User>
</WPNAV_SPEED>
<WPNAV_RADIUS>
<DisplayName>Waypoint Radius</DisplayName>
<Description>Defines the distance from a waypoint, that when crossed indicates the wp has been hit.</Description>
<Units>cm</Units>
<Range>100 1000</Range>
<Increment>1</Increment>
<User>Standard</User>
</WPNAV_RADIUS>
<WPNAV_SPEED_UP>
<DisplayName>Waypoint Climb Speed Target</DisplayName>
<Description>Defines the speed in cm/s which the aircraft will attempt to maintain while climbing during a WP mission</Description>
<Units>cm/s</Units>
<Range>0 1000</Range>
<Increment>50</Increment>
<User>Standard</User>
</WPNAV_SPEED_UP>
<WPNAV_SPEED_DN>
<DisplayName>Waypoint Descent Speed Target</DisplayName>
<Description>Defines the speed in cm/s which the aircraft will attempt to maintain while descending during a WP mission</Description>
<Units>cm/s</Units>
<Range>0 1000</Range>
<Increment>50</Increment>
<User>Standard</User>
</WPNAV_SPEED_DN>
<WPNAV_LOIT_SPEED>
<DisplayName>Loiter Horizontal Maximum Speed</DisplayName>
<Description>Defines the maximum speed in cm/s which the aircraft will travel horizontally while in loiter mode</Description>
<Units>cm/s</Units>
<Range>0 2000</Range>
<Increment>50</Increment>
<User>Standard</User>
</WPNAV_LOIT_SPEED>
<WPNAV_ACCEL>
<DisplayName>Waypoint Acceleration</DisplayName>
<Description>Defines the horizontal acceleration in cm/s/s used during missions</Description>
<Units>cm/s/s</Units>
<Range>0 980</Range>
<Increment>10</Increment>
<User>Standard</User>
</WPNAV_ACCEL>
<ATCON_RATE_RP_MAX>
<DisplayName>Angle Rate Roll-Pitch max</DisplayName>
<Description>maximum rotation rate in roll/pitch axis requested by angle controller used in stabilize, loiter, rtl, auto flight modes</Description>
<Units>Centi-Degrees/Sec</Units>
<Range>90000 250000</Range>
<Increment>500</Increment>
<User>Advanced</User>
</ATCON_RATE_RP_MAX>
<ATCON_RATE_Y_MAX>
<DisplayName>Angle Rate Yaw max</DisplayName>
<Description>maximum rotation rate in roll/pitch axis requested by angle controller used in stabilize, loiter, rtl, auto flight modes</Description>
<Units>Centi-Degrees/Sec</Units>
<Range>90000 250000</Range>
<Increment>500</Increment>
<User>Advanced</User>
</ATCON_RATE_Y_MAX>
<ATCON_SLEW_YAW>
<DisplayName>Yaw target slew rate</DisplayName>
<Description>Maximum rate the yaw target can be updated in Loiter, RTL, Auto flight modes</Description>
<Units>Centi-Degrees/Sec</Units>
<Range>500 18000</Range>
<Increment>100</Increment>
<User>Advanced</User>
</ATCON_SLEW_YAW>
<ATCON_ACCEL_RP_MAX>
<DisplayName>Acceleration Max for Roll/Pitch</DisplayName>
<Description>Maximum acceleration in roll/pitch axis</Description>
<Units>Centi-Degrees/Sec/Sec</Units>
<Range>20000 100000</Range>
<Increment>100</Increment>
<User>Advanced</User>
</ATCON_ACCEL_RP_MAX>
<ATCON_ACCEL_Y_MAX>
<DisplayName>Acceleration Max for Yaw</DisplayName>
<Description>Maximum acceleration in yaw axis</Description>
<Units>Centi-Degrees/Sec/Sec</Units>
<Range>20000 100000</Range>
<Increment>100</Increment>
<User>Advanced</User>
</ATCON_ACCEL_Y_MAX>
<ATCON_RATE_RLL_FF>
<DisplayName>Rate Roll Feed Forward</DisplayName>
<Description>Rate Roll Feed Forward (for TradHeli Only)</Description>
<Range>0 10</Range>
<Increment>0.01</Increment>
<User>Standard</User>
</ATCON_RATE_RLL_FF>
<ATCON_RATE_PIT_FF>
<DisplayName>Rate Pitch Feed Forward</DisplayName>
<Description>Rate Pitch Feed Forward (for TradHeli Only)</Description>
<Range>0 10</Range>
<Increment>0.01</Increment>
<User>Standard</User>
</ATCON_RATE_PIT_FF>
<ATCON_RATE_YAW_FF>
<DisplayName>Rate Yaw Feed Forward</DisplayName>
<Description>Rate Yaw Feed Forward (for TradHeli Only)</Description>
<Range>0 10</Range>
<Increment>0.01</Increment>
<User>Standard</User>
</ATCON_RATE_YAW_FF>
<POSCON_THR_HOVER>
<DisplayName>Throttle Hover</DisplayName>
<Description>The autopilot's estimate of the throttle required to maintain a level hover. Calculated automatically from the pilot's throttle input while in stabilize mode</Description>
<Range>0 1000</Range>
<Units>Percent*10</Units>
<User>Advanced</User>
</POSCON_THR_HOVER>
<AHRS_GPS_GAIN>
<DisplayName>AHRS GPS gain</DisplayName>
<Description>This controls how how much to use the GPS to correct the attitude. This should never be set to zero for a plane as it would result in the plane losing control in turns. For a plane please use the default value of 1.0.</Description>
<Range>0.0 1.0</Range>
<Increment>.01</Increment>
</AHRS_GPS_GAIN>
<AHRS_GPS_USE>
<DisplayName>AHRS use GPS for navigation</DisplayName>
<Description>This controls whether to use dead-reckoning or GPS based navigation. If set to 0 then the GPS won't be used for navigation, and only dead reckoning will be used. A value of zero should never be used for normal flight.</Description>
<Values>0:Disabled,1:Enabled</Values>
<User>Advanced</User>
</AHRS_GPS_USE>
<AHRS_YAW_P>
<DisplayName>Yaw P</DisplayName>
<Description>This controls the weight the compass or GPS has on the heading. A higher value means the heading will track the yaw source (GPS or compass) more rapidly.</Description>
<Range>0.1 0.4</Range>
<Increment>.01</Increment>