forked from betaflight/firmware-presets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.json
1039 lines (1039 loc) · 31.6 KB
/
index.json
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
{
"settings": {
"PresetCategories": {
"TUNE": "TUNE",
"RATES": "RATES",
"OSD": "OSD",
"VTX": "VTX",
"LEDS": "LEDS",
"MODES": "MODES",
"RC_SMOOTHING": "RC_SMOOTHING",
"FILTERS": "FILTERS",
"RC_LINK": "RC_LINK",
"BNF": "BNF",
"OTHER": "OTHER"
},
"MetadataTypes": {
"STRING": "STRING",
"STRING_ARRAY": "STRING_ARRAY",
"PRESET_CATEGORY": "PRESET_CATEGORY",
"FILE_PATH": "FILE_PATH",
"BOOLEAN": "BOOLEAN",
"WORDS_ARRAY": "WORDS_ARRAY",
"FILE_PATH_ARRAY": "FILE_PATH_ARRAY"
},
"OptionsDirectives": {
"OPTION_DIRECTIVE": "option",
"BEGIN_OPTION_DIRECTIVE": "option begin",
"END_OPTION_DIRECTIVE": "option end",
"OPTION_CHECKED": "(checked)",
"OPTION_UNCHECKED": "(unchecked)"
},
"presetsDir": "presets",
"presetsFileEncoding": "utf-8",
"presetsFileMetadata": {
"title": {
"type": "STRING",
"optional": false
},
"firmwareVersion": {
"type": "STRING_ARRAY",
"optional": false
},
"category": {
"type": "PRESET_CATEGORY",
"optional": false
},
"official": {
"type": "BOOLEAN",
"optional": false
},
"author": {
"type": "STRING",
"optional": true
},
"description": {
"type": "STRING_ARRAY",
"optional": true
},
"include": {
"type": "FILE_PATH_ARRAY",
"optional": true
},
"keywords": {
"type": "WORDS_ARRAY",
"optional": true
},
"nosearch": {
"type": "BOOLEAN",
"optional": true
},
"discussion": {
"type": "STRING",
"optional": true
}
}
},
"uniqueValues": {
"firmwareVersion": [
"4.3"
],
"category": [
"FILTERS",
"LEDS",
"MODES",
"OSD",
"OTHER",
"RATES",
"RC_LINK",
"RC_SMOOTHING",
"TUNE",
"VTX"
],
"author": [
"Betaflight",
"Thomas \"BMSThomas\" Bitmatta",
"Zak Smiley sugarK",
"ctzsnooze"
],
"keywords": [
"150hz",
"250hz",
"5 inch",
"5\"",
"500hz",
"50hz",
"6S",
"Crossfire",
"ELRS",
"GPS",
"HD_freestyle",
"OSD",
"TBS",
"adjustments",
"aggressive",
"aux",
"blackbox",
"camera",
"camera_control",
"cfv2",
"cfv3",
"cinematic",
"clear",
"control",
"defaults",
"dynamic",
"filter",
"filters",
"freestyle",
"freestyle_HD",
"frsky",
"hd",
"jitter",
"karate",
"launch",
"launch_mode",
"leds",
"link",
"log",
"logging",
"mode",
"modes",
"names",
"pid",
"profile",
"race",
"racing",
"rates",
"rc",
"rc link",
"rc smoothing",
"rc_link",
"rc_smoothing",
"reset",
"reset statistics",
"sbus",
"smooth",
"smoothing",
"stats",
"switch",
"tracer",
"transition",
"tune",
"vtx",
"world champion"
]
},
"presets": [
{
"fullPath": "presets/4.3/filters/defaults.txt",
"hash": "1b79df5ceee4b4c1d80f2dfbdc3bd525944776e9b069c06f5a832d0ee7451666",
"options": [],
"title": "Default 4.3 Filter settings",
"firmwareVersion": [
"4.3"
],
"category": "FILTERS",
"official": true,
"keywords": [
"defaults",
"filter",
"filters",
"reset"
],
"author": "Betaflight",
"description": [
"Resets Filter settings to 4.3 defaults"
]
},
{
"fullPath": "presets/4.3/leds/defaults.txt",
"hash": "c5b366058d0e20946395d62fda67e0ea49dd5842df804a7863ead73e5eb250f4",
"options": [],
"title": "Default 4.3 LED settings",
"firmwareVersion": [
"4.3"
],
"category": "LEDS",
"official": true,
"keywords": [
"defaults",
"reset",
"leds"
],
"author": "Betaflight",
"description": [
"Resets LED settings to 4.3 defaults",
"Options: LED, colour or mode_color resets."
]
},
{
"fullPath": "presets/4.3/modes/defaults.txt",
"hash": "6d0d35c169b503826866b81908c321cb4caef08518115c444a800f90b9167eeb",
"options": [],
"title": "Default 4.3 Modes and Adjustment settings",
"firmwareVersion": [
"4.3"
],
"category": "MODES",
"official": true,
"keywords": [
"defaults",
"reset",
"mode",
"modes",
"adjustments",
"aux",
"switch"
],
"author": "Betaflight",
"description": [
"Resets modes and adjustment ranges to 4.3 defaults"
]
},
{
"fullPath": "presets/4.3/osd/defaults.txt",
"hash": "587c0eb6969bc40d03038673c3090d75b5f22bd938a0cffa3ec1923ca3deb5b8",
"options": [],
"title": "Default 4.3 OSD settings",
"firmwareVersion": [
"4.3"
],
"category": "OSD",
"official": true,
"keywords": [
"defaults",
"reset",
"OSD"
],
"author": "Betaflight",
"description": [
"Resets the OSD values back to Betaflight 4.3 defaults"
]
},
{
"fullPath": "presets/4.3/other/reset_blackbox.txt",
"hash": "8d314c75308b44a5e6bd4146eba913f795eb07a4e549a354bccb2807396f871a",
"options": [],
"title": "Reset 4.3 Blackbox settings",
"firmwareVersion": [
"4.3"
],
"category": "OTHER",
"official": true,
"keywords": [
"defaults",
"reset",
"blackbox",
"logging",
"log"
],
"author": "Betaflight",
"description": [
"Resets the 4.3 blackbox settings back to defaults"
]
},
{
"fullPath": "presets/4.3/other/reset_camera_control.txt",
"hash": "7e3f13369312938df5f4dee8113229794f2c3cc8485c45a943eaf20bf3bddf75",
"options": [],
"title": "Reset Camera Control settings",
"firmwareVersion": [
"4.3"
],
"category": "OTHER",
"official": true,
"keywords": [
"defaults",
"reset",
"names",
"camera",
"control",
"camera_control"
],
"author": "Betaflight",
"description": [
"Resets the Camera Control settings to 4.3 defaults"
]
},
{
"fullPath": "presets/4.3/other/reset_gps.txt",
"hash": "1c27a54a0461a60cc8593219251ceef84491e8647b01f99e76e23fd8ac0df246",
"options": [
{
"name": "enable GPS?",
"checked": false
}
],
"title": "Reset GPS settings",
"firmwareVersion": [
"4.3"
],
"category": "OTHER",
"official": true,
"keywords": [
"defaults",
"reset",
"GPS"
],
"author": "Betaflight",
"description": [
"Resets the GPS settings to 4.3 defaults",
"Optionally enable GPS feature, default is off"
]
},
{
"fullPath": "presets/4.3/other/reset_launch_mode.txt",
"hash": "6cdec094ca38c8956ae96604d512e3143c14cda2644d55033713e471e497b617",
"options": [],
"title": "Reset Launch Mode settings",
"firmwareVersion": [
"4.3"
],
"category": "OTHER",
"official": true,
"keywords": [
"defaults",
"reset",
"names",
"launch",
"launch_mode"
],
"author": "Betaflight",
"description": [
"Resets the Launch Mode settings to 4.3 defaults"
]
},
{
"fullPath": "presets/4.3/other/reset_names.txt",
"hash": "4acfcea9134b9182db414bdd621cd4d9c216dd8115c4a0ae8bf75b09b6835432",
"options": [
{
"name": "reset profile 1 name?",
"checked": true
}
],
"title": "Reset 4.3 Names",
"firmwareVersion": [
"4.3"
],
"category": "OTHER",
"official": true,
"keywords": [
"defaults",
"reset",
"names",
"profile"
],
"author": "Betaflight",
"description": [
"Resets the craft names and optionally resets profile names"
]
},
{
"fullPath": "presets/4.3/other/reset_servo.txt",
"hash": "ac03ec723b780a146984d4fc064d5fb033491965f92a1decc594c8ad30036b79",
"options": [],
"title": "Reset 4.3 Stats",
"firmwareVersion": [
"4.3"
],
"category": "OTHER",
"official": true,
"keywords": [
"defaults",
"reset statistics",
"stats"
],
"author": "Betaflight",
"description": [
"Resets the 4.3 servo settings back to defaults"
]
},
{
"fullPath": "presets/4.3/other/reset_stats.txt",
"hash": "7f015f073f845f7528de9652ff492836d409977549874769ab515f99da3685f7",
"options": [],
"title": "Reset 4.3 Stats",
"firmwareVersion": [
"4.3"
],
"category": "OTHER",
"official": true,
"keywords": [
"defaults",
"reset statistics",
"stats"
],
"author": "Betaflight",
"description": [
"Resets the saved flight stats values back to zero"
]
},
{
"fullPath": "presets/4.3/rates/BMSThomas.txt",
"hash": "45e93c3765346f5f3887d1c080d3feb52699d813bc5e0ec43fc1cb452d39bbaf",
"options": [],
"title": "BMSThomas racing/freestyle rates",
"firmwareVersion": [
"4.3"
],
"category": "RATES",
"official": false,
"keywords": [
"racing"
],
"author": "Thomas \"BMSThomas\" Bitmatta",
"description": [
"Racing and freestyle rates by BMSThomas - MultiGP International Open 2019 champion",
"ACTUAL rates with 720 degrees/sec max"
]
},
{
"fullPath": "presets/4.3/rates/defaults.txt",
"hash": "e20c15abd80cc7d6c47ead2169a44e7c53906d8548adf210659fd25360ed3a86",
"options": [],
"title": "Default rates",
"firmwareVersion": [
"4.3"
],
"category": "RATES",
"official": true,
"keywords": [
"defaults",
"rates"
],
"author": "Betaflight",
"description": [
"Default Betaflight rates",
"Will be applied for the currently selected rate profile",
"TPA values are not included",
"Throttle limit and curve are not included"
]
},
{
"fullPath": "presets/4.3/rc_link/Crossfire_150hz_locked _CFV3.txt",
"hash": "90c1dafc92b12354bebb3bd09f1e6b59c8e1f216742228bf9181d0a5205f3fc9",
"options": [],
"title": "TBS Crossfire 150hz locked CFV3",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"rc link",
"TBS",
"cfv3",
"150hz",
"Crossfire"
],
"author": "Zak Smiley sugarK",
"description": [
"setup for TBS Crossfire 150hz locked CFV3",
"WARNING: make ABSOLUTELY SURE that the Hardware > ADC Filter is un-checked! and both radio and the TX unit are all up to date with the latest EdgeTX, OpenTX or FreedomTX",
"Please use RC smoothing presets for flying style required. Note base settings are for racing, there is a check box at the end for freestyle.",
"There are 2 current types of Crossfire protocol, CFV2 and CFV3 this can be checked in your TBS lua"
]
},
{
"fullPath": "presets/4.3/rc_link/Crossfire_150hz_locked_CFV2.txt",
"hash": "348f1b8c40f860a10a03558eca8cb737eb99ea4f47ad4c3f65867ec4a2158ae7",
"options": [],
"title": "TBS Crossfire 150hz locked CFV2",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"defaults",
"rc link",
"tracer",
"TBS",
"cfv2",
"150hz",
"Crossfire"
],
"author": "Zak Smiley sugarK",
"description": [
"setup for TBS Crossfire 150hz locked CFV2",
"WARNING: make ABSOLUTELY SURE that the Hardware > ADC Filter is un-checked! and both radio and the TX unit are all up to date with the latest EdgeTX, OpenTX or FreedomTX",
"Please use RC smoothing presets for flying style required. Note base settings are for racing, there is a check box at the end for freestyle.",
"There are 2 current types of Crossfire protocol, CFV2 and CFV3 this can be checked in your TBS lua"
]
},
{
"fullPath": "presets/4.3/rc_link/Crossfire_50hz_locked_CFV2_CFV3.txt",
"hash": "024ba7a1413baef115390bd234634afb97f1c88576347fc814f20ab41289208d",
"options": [],
"title": "TBS Crossfire 50hz locked CFV2/CFV3",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"defaults",
"rc link",
"TBS",
"cfv2",
"50hz",
"Crossfire"
],
"author": "Zak Smiley sugarK",
"description": [
"setup for TBS Crossfire 50hz locked CFV2",
"WARNING: make ABSOLUTELY SURE that the Hardware > ADC Filter is un-checked! and both radio and the TX unit are all up to date with the latest EdgeTX, OpenTX or FreedomTX",
"Please use RC smoothing presets for flying style required. Note base settings are for racing, there is a check box at the end for freestyle.",
"There are 2 current types of Crossfire protocol, CFV2 and CFV3 this can be checked in your TBS lua"
]
},
{
"fullPath": "presets/4.3/rc_link/Crossfire_dyanmic_rate.txt",
"hash": "8893cc9ac72f68a13674f1205259460291eb43fda64afb56e98ed7e123f87e85",
"options": [],
"title": "TBS Crossfire Dynamic rate CFV2/CFV3",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"rc link",
"TBS",
"cfv2",
"150hz",
"Crossfire",
"dynamic",
"cfv3"
],
"author": "Zak Smiley sugarK",
"description": [
"setup for TBS Crossfire dynamic rate CFV2/CFV3",
"WARNING: make ABSOLUTELY SURE that the Hardware > ADC Filter is un-checked! and both radio and the TX unit are all up to date with the latest EdgeTX, OpenTX or FreedomTX",
"Please use RC smoothing presets for flying style required. Note base settings are for racing, there is a check box at the end for freestyle.",
"There are 2 current types of Crossfire protocol, CFV2 and CFV3 this can be checked in your TBS lua. Also frankly we DO NOT recommend this TX setting, preferring one or the other of the locked modes as the RC smoothing can only be optimised for one of the frequency modes"
]
},
{
"fullPath": "presets/4.3/rc_link/defaults.txt",
"hash": "84509d0d8a09c3494cbf702c8b697093ceec7dab03983100e15f07f44cef79df",
"options": [],
"title": "Default 4.3 RC link settings",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"defaults",
"reset",
"rc link",
"rc_link"
],
"author": "Betaflight",
"description": [
"Resets all RC Link related parameters to 4.3 defaults"
]
},
{
"fullPath": "presets/4.3/rc_link/elrs_150hz.txt",
"hash": "876d47e40cb7d21e90161162d45d0abbccb09a4c237e6e38b3d0746481810bcb",
"options": [
{
"name": "Whole pack voltage readings",
"checked": false
},
{
"name": "Stronger smoothing for HD or cinematic (not for racing)",
"checked": false
}
],
"title": "ELRS 150hz",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"ELRS",
"rc",
"link",
"rc_link",
"150hz"
],
"author": "ctzsnooze",
"description": [
"Basic RC link settings for a 150hz ELRS link via CRSF",
"WARNING: make ABSOLUTELY SURE that the OpenTx or EdgeTx Hardware ADC Filter is un-checked!",
"WARNING: check that you are using a compatible version of EdgeTx or OpenTx!",
"The voltage option is for OpenTx telemetry back to the transmitter, default is per cell, option is whole pack"
]
},
{
"fullPath": "presets/4.3/rc_link/elrs_250hz.txt",
"hash": "2d743facb8126e11333171a768a26b8a46b21f5bcb35e571aae4825a5f7dfd8c",
"options": [
{
"name": "Whole pack voltage readings",
"checked": false
},
{
"name": "Stronger smoothing for HD or cinematic (not for racing)",
"checked": false
}
],
"title": "ELRS 250hz",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"ELRS",
"rc",
"link",
"250hz"
],
"author": "ctzsnooze",
"description": [
"Basic RC link settings for a 250hz ELRS link via CRSF",
"WARNING: make ABSOLUTELY SURE that the OpenTx or EdgeTx Hardware ADC Filter is un-checked!",
"WARNING: check that you are using a compatible version of EdgeTx or OpenTx!",
"Voltage option is for OpenTx telemetry back to the transmitter, default is per cell, option whole pack"
]
},
{
"fullPath": "presets/4.3/rc_link/elrs_500hz.txt",
"hash": "78f66ce543694d0eefc552820a22eda7d7167c205ca8781d9f22baf88f3c963c",
"options": [
{
"name": "Whole pack voltage readings",
"checked": false
},
{
"name": "Stronger smoothing for HD or cinematic (not for racing)",
"checked": false
}
],
"title": "ELRS 500hz",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"ELRS",
"rc",
"link",
"500hz"
],
"author": "ctzsnooze",
"description": [
"Basic RC link settings for a 500hz ELRS link via CRSF",
"WARNING: make ABSOLUTELY SURE that the OpenTx or EdgeTx Hardware ADC Filter is un-checked!",
"WARNING: check that you are using a compatible version of EdgeTx or OpenTx!",
"If a log shows excessive noise in your feedforward trace, most likely there is a Tx firmware issue",
"The Voltage option is for OpenTx telemetry back to the transmitter, default is per cell, option whole pack"
]
},
{
"fullPath": "presets/4.3/rc_link/elrs_50hz.txt",
"hash": "2761b6941f31e7622efe05636dede80f1de7027031aea6a9892c67bf54492fd0",
"options": [
{
"name": "Whole pack voltage readings",
"checked": false
},
{
"name": "Stronger smoothing for HD or cinematic (not for racing)",
"checked": false
}
],
"title": "ELRS 50hz",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"ELRS",
"rc",
"link",
"rc_link",
"50hz"
],
"author": "ctzsnooze",
"description": [
"Basic RC link settings for a 50hz ELRS link via CRSF",
"WARNING: make ABSOLUTELY SURE that the OpenTx or EdgeTx Hardware ADC Filter is un-checked!",
"WARNING: check that you are using a compatible version of EdgeTx or OpenTx!",
"The voltage option is for OpenTx telemetry back to the transmitter, default is per cell, option is whole pack"
]
},
{
"fullPath": "presets/4.3/rc_link/frsky_sbus.txt",
"hash": "76c972e76f0cbfd5fa15e7427e6a869a74f0e7fa79b43dad568afe389849025e",
"options": [
{
"name": "Whole pack voltage readings",
"checked": false
},
{
"name": "Imperial units",
"checked": false
},
{
"name": "Telemetry inverted",
"checked": false
},
{
"name": "Full duplex telemetry",
"checked": false
}
],
"title": "FrSky Sbus",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"frsky",
"sbus",
"rc",
"link"
],
"author": "ctzsnooze",
"description": [
"Basic RC link settings for a 111hz / 9ms FrSky Sbus link, with the Rx bound in D16 mode with no more than 8 channels",
"These settings work best when used with a version of OpenTx with good module sync",
"Note: Telemetry requires smartPort (s.Port) and does not convey RSSI (use Lua or analog RSSI)",
"Note: When more than 8 channels are used, manual RC smoothing settings and two point averaging is required",
"Early versions of OpenTx with poor module sync will require two point averaging",
"Cell vs full voltage option affects which value will be sent by telemetry to the handset. Default is per cell.",
"Units default to metric. Telemetry defaults to non-inverted and half-duple. Both can be changed with checkbox",
"Other telemetry settings,eg gps format, default latitude and longitude, extra sensors, require manual CLI entries"
]
},
{
"fullPath": "presets/4.3/rc_link/Tracer_CFV2.txt",
"hash": "2caad2bb6c6602918deceeedf7bd7b6ad170ba12a6df297a61b7e300329be601",
"options": [],
"title": "TBS Tacer CFV2",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"defaults",
"rc link",
"tracer",
"TBS",
"cfv2",
"250hz"
],
"author": "Zak Smiley sugarK",
"description": [
"setup fo the various TBS radio links via CRSF",
"WARNING: make ABSOLUTELY SURE that the Hardware > ADC Filter is un-checked! and both radio and the TX unit are all up to date with the latest EdgeTX, OpenTX or FreedomTX",
"Please use RC smoothing presets for flying style required. Note base settings are for racing, there is a check box at the end for freestyle.",
"There are 2 current types of Crossfire protocol, CFV2 and CFV3 this can be checked in your TBS lua"
]
},
{
"fullPath": "presets/4.3/rc_link/Tracer_CFV3.txt",
"hash": "7eb823ba43739a3c6c0567c0dff57272a6d2fb8f01051721b02f6f3f1eed9013",
"options": [],
"title": "TBS Tacer CFV3",
"firmwareVersion": [
"4.3"
],
"category": "RC_LINK",
"official": true,
"keywords": [
"defaults",
"rc link",
"tracer",
"TBS",
"cfv3",
"250hz"
],
"author": "Zak Smiley sugarK",
"description": [
"setup for TBS Tacer CFV3",
"WARNING: make ABSOLUTELY SURE that the Hardware > ADC Filter is un-checked! and both radio and the TX unit are all up to date with the latest EdgeTX, OpenTX or FreedomTX",
"Please use RC smoothing presets for flying style required. Note base settings are for racing, there is a check box at the end for freestyle.",
"There are 2 current types of Crossfire protocol, CFV2 and CFV3 this can be checked in your TBS lua"
]
},
{
"fullPath": "presets/4.3/rc_smoothing/cinematic_ctzsnooze.txt",
"hash": "b91cc7fec277bae5e0e78339b50ea3a4d9ae01cd5df1041947a8f4df43172933",
"options": [
{
"name": "Recommended Actual rates",
"checked": false
}
],
"title": "Cinematic RC smoothing",
"firmwareVersion": [
"4.3"
],
"category": "RC_SMOOTHING",
"official": true,
"keywords": [
"cinematic",
"rc",
"smoothing",
"rc_smoothing",
"jitter",
"transition",
"hd"
],
"author": "ctzsnooze",
"description": [
"Warning: will feel VERY 'soft' and unresponsive for small stick inputs!",
"Note: auto-smoothing values are over-ridden by manually configure cutoff values.",
"Option: enable Actual Rates, low centre sensitivity, no expo, 500 deg/s max",
"This preset provides RC smoothing settings for cinematic HD footage. By using fixed cutoffs, it will give a consistent smooth stick feel across a wide range of RC link frequencies",
"There is no need to turn off feedforward; it should remain at values that give good stick responsiveness.",
"For even smoother stick feel, reduce rc_smoothing_setpoint_cutoff and rc_smoothing_feedforward_cutoff to 10 in CLI. If too smooth, increase rc_smoothing_setpoint_cutoff and rc_smoothing_feedforward_cutoff to 20 in CLI."
]
},
{
"fullPath": "presets/4.3/rc_smoothing/defaults.txt",
"hash": "8e1ec13273866d9304eb2347ba4aed6325cb28a5acad747589ef59cfd63b1c78",
"options": [],
"title": "Default 4.3 RC smoothing settings",
"firmwareVersion": [
"4.3"
],
"category": "RC_SMOOTHING",
"official": true,
"keywords": [
"defaults",
"reset",
"rc smoothing",
"rc_smoothing"
],
"author": "Betaflight",
"description": [
"Resets RC Smoothing settings to 4.3 defaults"
]
},
{
"fullPath": "presets/4.3/rc_smoothing/freestyle_ctzsnooze.txt",
"hash": "a968b191f033db18c04063851d3c486293d44ff3ee8b388afdb3c3daad70ec78",
"options": [
{
"name": "Recommended Actual rates",
"checked": false
}
],
"title": "Freestyle RC smoothing",
"firmwareVersion": [
"4.3"
],
"category": "RC_SMOOTHING",
"official": true,
"keywords": [
"freestyle",
"rc",
"smooth",
"smoothing",
"rc_smoothing",
"jitter"
],
"author": "ctzsnooze",
"description": [
"RC smoothing settings for Freestyle footage",
"Fixed cutoff frequency for consistent, responsive results over a wide range of RC link frequencies. Auto-smoothing cutoff values are over-ridden by the fixed cutoff values.",
"There should be no need to turn off feedforward or to enable transition, beause the jitter reduction provides dynamic attenuation of feedforward whenever the sticks move slowly.",
"Option: Actual Rates, with centre sensitivity around 60 and 750 deg/s max."
]
},
{
"fullPath": "presets/4.3/rc_smoothing/hd_freestyle_ctzsnooze.txt",
"hash": "002528d0e8754c125f1eadd065d8f2fdeb734e8606cee5b8654fc4fb6e264e59",
"options": [
{
"name": "Recommended Actual rates",
"checked": false
}
],
"title": "Freestyle HD RC smoothing",
"firmwareVersion": [
"4.3"
],
"category": "RC_SMOOTHING",
"official": true,
"keywords": [
"freestyle",
"rc",
"smooth",
"HD",
"freestyle_HD",
"HD_freestyle",
"smoothing",
"rc_smoothing",
"jitter"
],
"author": "ctzsnooze",
"description": [
"RC smoothing settings for smooth HD freestyle footage.",
"This preset uses fixed manual cutoff frequencies for consistent results over a wide range of RC link frequencies - the auto cutoff values are not used.",
"There is no need to turn off feedforward or to enable transition; jitter reduction provides dynamic attenuation of feedforward when sticks move slowly.",
"Option: Actual Rates, centre sensitivity around 30 deg/s, max rate 750 deg/s, with zero expo."
]
},
{
"fullPath": "presets/4.3/rc_smoothing/race_ctzsnooze.txt",
"hash": "99598640b74b5108af11d6502a94822c2bde8ad3b32c83adb8247c61b9aa6fad",
"options": [],
"title": "Race RC smoothing",
"firmwareVersion": [
"4.3"
],
"category": "RC_SMOOTHING",
"official": true,
"keywords": [
"aggressive",
"rc",
"smoothing",
"race",
"rc_smoothing",
"jitter"
],
"author": "ctzsnooze",
"description": [
"RC smoothing settings for racing that slightly increases stick responsiveness over defaults.",
"Note: this preset workse best with a locked-frequency RC link.",
"Uses automatic cutoff adjustment that will optimise the cutoff to the link frequency at arming. As a result, faster RC links will feel more responsive.",
"If sticks are too sensitive, increase the auto smoothing factors in the CLI.",
"Note: If motors feel warmer than usual after applying this preset, return the auto RC smoothing values back to default of 30."
]
},
{
"fullPath": "presets/4.3/tune/defaults.txt",
"hash": "c6fbd6a95b55710af2c8536e16a5efcfe68e77b247f668520a67bc62e113ad9a",
"options": [],
"title": "Default 4.3 Tune settings",
"firmwareVersion": [
"4.3"
],
"category": "TUNE",
"official": true,
"keywords": [
"defaults",
"reset",
"tune",
"pid"
],
"author": "Betaflight",
"description": [
"Resets Tune parameters to 4.3 defaults",
"WARNING: Resets MANY things, check the list before applying!",
"DOES NOT reset filters! They must be separately reset"
]
},
{
"fullPath": "presets/4.3/tune/karate_race_tune_preset.txt",
"hash": "126780257954ab672e7d9b9b3c6b307b6a32fb32c022d5585885a0529075954c",
"options": [
{
"name": "dynamic idle",
"checked": true
},
{
"name": "spicy tune",
"checked": false
}
],
"title": "Karate Race",
"firmwareVersion": [
"4.3"
],
"category": "TUNE",
"official": true,