-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathtargets.json
More file actions
4096 lines (4095 loc) · 163 KB
/
targets.json
File metadata and controls
4096 lines (4095 loc) · 163 KB
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
{
"anyleaf": {
"name": "AnyLeaf",
"rx_2400": {
"single-radio": {
"product_name": "Anyleaf 2.4GHz single radio RX",
"lua_name": "AL single RX",
"layout_file": "Generic 2400 Diversity PA.json",
"overlay": {
"radio_dcdc": true
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.3.0",
"platform": "esp8285",
"firmware": "Unified_ESP8285_2400_RX",
"prior_target_name": "MATEK_2400_RX_R24D"
},
"dual-radio": {
"product_name": "Anyleaf 2.4GHz dual radio RX",
"lua_name": "AL dual RX",
"layout_file": "Generic 2400 True Diversity PA.json",
"overlay": {
"radio_dcdc": true
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.3.0",
"platform": "esp32",
"firmware": "Unified_ESP32_2400_RX"
},
"h7-fc": {
"product_name": "Anyleaf FC integrated RX",
"lua_name": "AL FC RX",
"layout_file": "Generic 2400.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.3.0",
"platform": "esp8285",
"firmware": "Unified_ESP8285_2400_RX",
"prior_target_name": "DIY_2400_RX_ESP8285_SX1280"
}
}
},
"axis": {
"name": "Axisflying",
"tx_2400": {
"thor": {
"product_name": "AXIS Thor 2.4GHz TX",
"lua_name": "AXIS THOR 2400TX",
"layout_file": "AXIS Thor 2400.json",
"logo_file": "axis_tft.bin",
"upload_methods": ["uart", "wifi"],
"min_version": "3.0.0",
"platform": "esp32",
"firmware": "Unified_ESP32_2400_TX",
"prior_target_name": "AXIS_THOR_2400_TX"
}
},
"rx_2400": {
"thor": {
"product_name": "AXIS Thor 2.4GHz RX",
"lua_name": "AXIS THOR 2400RX",
"layout_file": "Generic 2400.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.0.0",
"platform": "esp8285",
"firmware": "Unified_ESP8285_2400_RX",
"prior_target_name": "AXIS_THOR_2400_RX"
}
}
},
"bayckrc": {
"name": "BAYCKRC",
"rx_900": {
"nano": {
"product_name": "BAYCKRC 900MHz Nano RX",
"lua_name": "BK 900 Nano RX",
"layout_file": "Generic 900.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.3.1",
"platform": "esp8285",
"firmware": "Unified_ESP8285_900_RX"
},
"dual-core": {
"product_name": "BAYCKRC 900MHz Dual Core RX",
"lua_name": "BK 900 Dual RX",
"layout_file": "Generic 900 True Diversity.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.3.1",
"platform": "esp32",
"firmware": "Unified_ESP32_900_RX"
}
},
"rx_2400": {
"nano": {
"product_name": "BAYCKRC 2.4GHz Nano RX",
"lua_name": "BK 2G4 Nano RX",
"layout_file": "Generic 2400 PA.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.3.1",
"platform": "esp8285",
"firmware": "Unified_ESP8285_2400_RX"
},
"dual-core": {
"product_name": "BAYCKRC 2.4GHz Dual Core RX",
"lua_name": "BK 2G4 Dual RX",
"layout_file": "Generic 2400 True Diversity PA.json",
"overlay": {
"serial1_tx": 5,
"radio_dcdc": true
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.3.1",
"platform": "esp32",
"firmware": "Unified_ESP32_2400_RX"
},
"rrd1": {
"product_name": "BAYCKRC RRD1 2.4GHz RX",
"lua_name": "BK RRD1 RX",
"layout_file": "Generic C3 2400 True Diversity.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_2400_RX"
},
"pwmc3": {
"product_name": "BAYCKRC C3 2.4Ghz 6PWM 10mw RX",
"lua_name": "BK 2G4 6PWM RX",
"layout_file": "Generic C3 2400 PWM.json",
"overlay": {
"vbat_offset": 0,
"vbat_scale": 908,
"vbat_atten": 7
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_2400_RX"
},
"rrd2": {
"product_name": "BAYCKRC RRD2 2.4GHz RX",
"lua_name": "BK RRD2 RX",
"layout_file": "Generic C3 LR1121 True Diversity.json",
"overlay": {
"power_high": 0,
"power_max": 0,
"power_values": null,
"power_values_dual": [13],
"power_lna_gain": 0
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"rr2": {
"product_name": "BAYCKRC RR2 2.4GHz RX",
"lua_name": "BK RR2 RX",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"power_high": 0,
"power_max": 0,
"power_default": 0,
"power_values": null,
"power_values_dual": [13],
"power_lna_gain": 0,
"serial1_rx": 18,
"serial1_tx": 19
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
}
},
"tx_dual": {
"nano": {
"product_name": "BAYCKRC 900/2400 Dual Band 1W Nano TX",
"lua_name": "B 9002G4 Nano TX",
"layout_file": "BAYCKRC Dual Band.json",
"upload_methods": ["uart", "wifi"],
"min_version": "3.5.2",
"platform": "esp32",
"firmware": "Unified_ESP32_LR1121_TX"
},
"nano_gemini": {
"product_name": "BAYCKRC 900/2400 Dual Band 1W Nano Gemini TX",
"lua_name": "B 9002G4 NanoGTX",
"layout_file": "BAYCKRC Dual Band.json",
"overlay": {
"radio_busy_2": 39,
"radio_dio1_2": 34,
"radio_nss_2": 15,
"radio_rst_2": 21
},
"upload_methods": ["uart", "wifi"],
"min_version": "3.5.4",
"platform": "esp32",
"firmware": "Unified_ESP32_LR1121_TX"
},
"micro_gemini": {
"product_name": "BAYCKRC 900/2400 Dual Band 1W Micro Gemini TX",
"lua_name": "B 9002G4MicroGTX",
"layout_file": "BAYCKRC Dual Band.json",
"overlay": {
"radio_busy_2": 39,
"radio_dio1_2": 34,
"radio_nss_2": 15,
"radio_rst_2": 21,
"power_values": [-15,-11,-7,-3,1,5],
"power_values_dual": [-15,-11,-7,-4,3,3]
},
"upload_methods": ["uart", "wifi"],
"min_version": "3.5.4",
"platform": "esp32",
"firmware": "Unified_ESP32_LR1121_TX"
}
},
"rx_dual": {
"dual": {
"product_name": "BAYCKRC 900/2400 Dual Band Gemini RX",
"lua_name": "BK 900/2400 GRx",
"layout_file": "Generic LR1121 True Diversity.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.4.0",
"platform": "esp32",
"firmware": "Unified_ESP32_LR1121_RX"
},
"dualc3": {
"product_name": "BAYCKRC C3 900/2400 Dual Band 100mW Gemini RX",
"lua_name": "BK DB 100 GRX",
"layout_file": "Generic C3 LR1121 True Diversity.json",
"overlay": {
"power_values_dual": [-12,-9,-6,-2],
"radio_rfsw_ctrl": [31,0,4,8,8,18,0,17]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"single": {
"product_name": "BAYCKRC C3 900/2400 Dual Band Nano RX",
"lua_name": "B 9002G4 nano RX",
"layout_file": "Generic C3 LR1121.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"pwm": {
"product_name": "BAYCKRC C3 900/2400 Dual Band 100mw 6PWM RX",
"lua_name": "B 9002G4 6PWM RX",
"layout_file": "Generic C3 LR1121 PWM.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"ur100": {
"product_name": "BAYCKRC UR100 Dual Band RX",
"lua_name": "BK UR100 RX",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"serial1_rx": 18,
"serial1_tx": 19,
"power_values_dual": [-12,-9,-6,-1],
"radio_rfsw_ctrl": [31,0,4,8,8,18,0,17]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"ur500": {
"product_name": "BAYCKRC UR500 Dual Band RX",
"lua_name": "BK UR500 RX",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"serial1_rx": 18,
"serial1_tx": 19,
"radio_rfo_hf": true,
"power_min": 3,
"power_high": 5,
"power_max": 5,
"power_default": 3,
"power_values": [-7, -3, 0],
"power_values_dual": [-7, -2, 3],
"power_lna_gain": 13,
"radio_rfsw_ctrl": [15, 0, 4, 12, 0, 2, 0, 1]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"ur1000": {
"product_name": "BAYCKRC UR1000 Dual Band RX",
"lua_name": "BK UR1000 RX",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"serial1_rx": 18,
"serial1_tx": 19,
"radio_rfo_hf": true,
"power_min": 3,
"power_high": 6,
"power_max": 6,
"power_default": 3,
"power_values": [-8, -4, -1, 3],
"power_values_dual": [-9, -4, -1, 3],
"power_lna_gain": 15,
"radio_rfsw_ctrl": [15, 0, 4, 12, 0, 2, 0, 1]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
}
}
},
"betafpv": {
"name": "BETAFPV",
"tx_900": {
"nano900": {
"product_name": "BETAFPV 900MHz Nano TX",
"lua_name": "BETAFPV 900Nano",
"layout_file": "BETAFPV 900 Nano.json",
"upload_methods": ["uart", "wifi"],
"min_version": "3.0.0",
"platform": "esp32",
"firmware": "Unified_ESP32_900_TX",
"prior_target_name": "BETAFPV_900_TX"
},
"nanov2": {
"product_name": "BETAFPV 900MHz Nano TX V2",
"lua_name": "BETAFPV 900Nano",
"layout_file": "BETAFPV 900 Nano V2.json",
"upload_methods": ["uart", "wifi"],
"min_version": "3.3.0",
"platform": "esp32",
"firmware": "Unified_ESP32_900_TX",
"prior_target_name": "BETAFPV_900_TX"
},
"micro900": {
"product_name": "BETAFPV 900MHz Micro TX",
"lua_name": "BETAFPV 900Micro",
"layout_file": "BETAFPV 900 Micro.json",
"logo_file": "betafpv.bin",
"features": ["fan"],
"upload_methods": ["uart", "wifi"],
"min_version": "3.0.0",
"platform": "esp32",
"firmware": "Unified_ESP32_900_TX",
"prior_target_name": "BETAFPV_900_TX_MICRO"
},
"micro900v2": {
"product_name": "BETAFPV 900MHz Micro TX V2",
"lua_name": "BFPV Micro TX V2",
"layout_file": "BETAFPV 900 Micro V2.json",
"logo_file": "betafpv.bin",
"features": ["fan"],
"upload_methods": ["uart", "wifi"],
"min_version": "3.4.0",
"platform": "esp32",
"firmware": "Unified_ESP32_900_TX",
"prior_target_name": "BETAFPV_900_TX_MICRO_V2"
}
},
"rx_900": {
"nano": {
"product_name": "BETAFPV 900MHz Nano RX",
"lua_name": "BFPV Nano 900RX",
"layout_file": "Generic 900.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.0.0",
"platform": "esp8285",
"firmware": "Unified_ESP8285_900_RX",
"prior_target_name": "BETAFPV_Nano_900_RX"
},
"superd": {
"product_name": "BETAFPV SuperD 900MHz RX",
"lua_name": "BFPV SuperD 900",
"layout_file": "Generic 900 True Diversity.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.3.0",
"platform": "esp32",
"firmware": "Unified_ESP32_900_RX"
},
"superp": {
"product_name": "BETAFPV SuperP 14Ch 900MHz RX",
"lua_name": "BFPV 14CH P900",
"layout_file": "Generic 900 True Diversity PWM 16.json",
"overlay": {
"pwm_outputs":[13,15,2,0,4,9,10,5,18,23,19,22,3,1],
"vbat_offset": 18,
"vbat_scale": 1284,
"vbat_atten": 7,
"i2c_scl": 19,
"i2c_sda": 22
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.3.0",
"platform": "esp32",
"firmware": "Unified_ESP32_900_RX"
}
},
"tx_2400": {
"nano2g4": {
"product_name": "BETAFPV 2.4GHz Nano TX",
"lua_name": "BETAFPV 2G4Nano",
"layout_file": "BETAFPV 2400 Nano.json",
"upload_methods": ["uart", "wifi"],
"min_version": "3.0.0",
"platform": "esp32",
"firmware": "Unified_ESP32_2400_TX",
"prior_target_name": "BETAFPV_2400_TX"
},
"nanov2": {
"product_name": "BETAFPV 2.4GHz Nano TX V2",
"lua_name": "BETAFPV 2G4Nano",
"layout_file": "BETAFPV 2400 Nano V2.json",
"upload_methods": ["uart", "wifi"],
"min_version": "3.3.0",
"platform": "esp32",
"firmware": "Unified_ESP32_2400_TX",
"prior_target_name": "BETAFPV_2400_TX"
},
"micro2g4": {
"product_name": "BETAFPV 2.4GHz Micro TX",
"lua_name": "BETAFPV2G4Micro",
"layout_file": "BETAFPV 2400 Micro.json",
"logo_file": "betafpv.bin",
"features": ["fan"],
"upload_methods": ["uart", "wifi"],
"min_version": "3.0.0",
"platform": "esp32",
"firmware": "Unified_ESP32_2400_TX",
"prior_target_name": "BETAFPV_2400_TX_MICRO"
},
"micro1w": {
"product_name": "BETAFPV 2.4GHz 1W Micro TX",
"lua_name": "BFPV 2G4Micro1W",
"layout_file": "BETAFPV 2400 Micro 1W.json",
"logo_file": "betafpv.bin",
"features": ["fan"],
"upload_methods": ["uart", "wifi"],
"min_version": "3.0.0",
"platform": "esp32",
"firmware": "Unified_ESP32_2400_TX",
"prior_target_name": "BETAFPV_2400_TX_MICRO_1000mw"
},
"literadio3": {
"product_name": "BETAFPV 2.4GHz LiteRadio 3 Pro",
"lua_name": "BETAFPV LR3 Pro",
"layout_file": "BETAFPV 2400 LiteRadio 3.json",
"upload_methods": ["uart", "wifi", "etx"],
"min_version": "3.0.0",
"platform": "esp32",
"firmware": "Unified_ESP32_2400_TX",
"prior_target_name": "BETAFPV_2400_TX_LITERADIO3"
},
"superg": {
"product_name": "BETAFPV SuperG 2.4GHz Gemini TX",
"lua_name": "BFPV SuperG 2G4",
"layout_file": "Generic 2400 Gemini.json",
"overlay": {
"radio_rst_2": -1,
"serial_rx": 21,
"serial_tx": 21,
"power_min": 1,
"power_high": 6,
"power_max": 6,
"power_values": [-18,-15,-12,-7,-4,2],
"misc_fan_en": 12,
"button": 2,
"button2": 4,
"passthrough_baud": 230400
},
"upload_methods": ["uart", "wifi"],
"min_version": "3.3.0",
"platform": "esp32",
"firmware": "Unified_ESP32_2400_TX"
}
},
"rx_2400": {
"aio": {
"product_name": "BETAFPV 2.4GHz AIO RX",
"lua_name": "BFPV AIO 2G4RX",
"layout_file": "Generic 2400.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.1.0",
"platform": "esp8285",
"firmware": "Unified_ESP8285_2400_RX",
"prior_target_name": "DIY_2400_RX_ESP8285_SX1280"
},
"lite": {
"product_name": "BETAFPV 2.4GHz Lite RX",
"lua_name": "BFPV Lite 2G4RX",
"layout_file": "Generic 2400.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.0.0",
"platform": "esp8285",
"firmware": "Unified_ESP8285_2400_RX",
"prior_target_name": "DIY_2400_RX_ESP8285_SX1280"
},
"nano": {
"product_name": "BETAFPV 2.4GHz Nano RX",
"lua_name": "BFPV Nano 2G4RX",
"layout_file": "Generic 2400 PA.json",
"overlay": {
"radio_dcdc": true
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.0.0",
"platform": "esp8285",
"firmware": "Unified_ESP8285_2400_RX",
"prior_target_name": "BETAFPV_Nano_2400_RX"
},
"pwmp": {
"product_name": "BETAFPV PWM 2.4GHz RX",
"lua_name": "BFPV PWM 2G4RX",
"layout_file": "Generic 2400 PWMP5.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.0.0",
"platform": "esp8285",
"firmware": "Unified_ESP8285_2400_RX",
"prior_target_name": "DIY_2400_RX_PWMP"
},
"superd": {
"product_name": "BETAFPV SuperD 2.4GHz RX",
"lua_name": "BFPV SuperD 2G4",
"layout_file": "Generic 2400 True Diversity PA.json",
"overlay": {
"radio_dcdc": true
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.1.0",
"platform": "esp32",
"firmware": "Unified_ESP32_2400_RX",
"prior_target_name": "BETAFPV_SuperD_2400_RX"
},
"superp": {
"product_name": "BETAFPV SuperP 14Ch 2.4GHz RX",
"lua_name": "BFPV 14CH P2G4",
"layout_file": "Generic 2400 True Diversity PA PWM 14.json",
"overlay": {
"radio_dcdc": true,
"vbat_offset": 18,
"vbat_scale": 1284,
"vbat_atten": 7,
"i2c_scl": 19,
"i2c_sda": 22
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.3.0",
"platform": "esp32",
"firmware": "Unified_ESP32_2400_RX"
}
},
"rx_dual": {
"superx-nano": {
"product_name": "BETAFPV SuperX Nano RX",
"lua_name": "BFPV SuperX Nan",
"layout_file": "Generic C3 LR1121 True Diversity.json",
"overlay": {
"power_values": [13, 17, 20, 23],
"power_values_dual": [-9, -5, -1, 4],
"radio_rfsw_ctrl": [15, 0, 4, 8, 8, 14, 0, 13]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"superx-mono": {
"product_name": "BETAFPV SuperX Mono RX",
"lua_name": "BFPV SuperX Mon",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"radio_nss": 0,
"led_rgb": 19,
"power_values": [13, 17, 20, 23],
"power_values_dual": [-9, -5, -1, 4],
"radio_rfsw_ctrl": [15, 0, 4, 8, 8, 14, 0, 13]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
}
}
},
"botlab": {
"name": "BotLabDynamics",
"rx_2400": {
"botlink1": {
"product_name": "BotLabDynamics BotLink1 2.4GHz RX",
"lua_name": "BotLink1 2.4Ghz",
"layout_file": "Generic C3 2400.json",
"overlay": {
"led_rgb": -1,
"led": 8
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_2400_RX"
}
}
},
"brotherhobby": {
"name": "BrotherHobby",
"rx_900": {
"plain": {
"product_name": "BrotherHobby 900MHz Nano RX",
"lua_name": "BH 900MHz Nano",
"layout_file": "Generic 900.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.0.0",
"platform": "esp8285",
"firmware": "Unified_ESP8285_900_RX"
}
},
"rx_2400": {
"nano": {
"product_name": "BrotherHobby 2.4GHz Nano RX",
"lua_name": "BH 2.4GHz Nano",
"layout_file": "Generic 2400 PA.json",
"overlay": {
"radio_dcdc": true
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.0.0",
"platform": "esp8285",
"firmware": "Unified_ESP8285_2400_RX"
}
},
"rx_dual": {
"dualc3": {
"product_name": "BrotherHobby C3 900/2400 Dual Band 100mW Gemini RX",
"lua_name": "BH DB 100 GRX",
"layout_file": "Generic C3 LR1121 True Diversity.json",
"overlay": {
"radio_rfsw_ctrl": [15, 0, 4, 5, 8, 2, 0, 1]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
}
}
},
"bsip": {
"name": "BlackSheep IP",
"rx_dual": {
"superx-mono": {
"product_name": "BlackSheep IP YB-Diversity Dual Band RX",
"lua_name": "YB-Diversity",
"layout_file": "Generic S3 LR1121 True Diversity.json",
"overlay": {
"power_high": 0,
"power_max": 0,
"power_values": [12],
"power_values_dual": [13],
"power_lna_gain": 0,
"radio_rfsw_ctrl": [20, 0, 0, 0, 16, 4, 0, 0],
"pwm_outputs": [43, 44, 17, 18, 48, 47, 10, 9, 34, 35, 37, 38],
"i2c_sda": 34,
"i2c_scl": 35,
"ledidx_rgb_status": [0],
"ledidx_rgb_boot": [0]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-s3",
"firmware": "Unified_ESP32S3_LR1121_RX"
}
}
},
"corewing": {
"name": "CoreWing",
"tx_2400": {
"sirius": {
"product_name": "CoreWing Sirius 2.4GHz TX",
"lua_name": "Sirius TX2G4",
"layout_file": "CoreWing 2400.json",
"upload_methods": ["uart", "wifi"],
"min_version": "3.5.0",
"logo_file": "corewing_tft.bin",
"platform": "esp32-s3",
"firmware": "Unified_ESP32S3_2400_TX"
}
}
},
"dakefpv": {
"name": "DAKEFPV",
"tx_900": {
"max": {
"product_name": "DAKEFPV 900MHz Micro MAX 2W TX",
"lua_name": "DKFPV 900TX 2W",
"layout_file": "DAKEFPV MAX.json",
"overlay": {
"radio_rfo_hf": true,
"power_apc2": 26,
"power_control": 3,
"power_values": [245, 245, 245, 245, 245, 245, 245, 245],
"power_values2": [-15, -12, -10, -7, -4, 0, 5, 8],
"power_values_dual": null
},
"logo_file": "dakefpv_tft.bin",
"upload_methods": ["uart", "wifi"],
"min_version": "3.6.0",
"platform": "esp32",
"firmware": "Unified_ESP32_LR1121_TX"
}
},
"rx_900": {
"rx900": {
"product_name": "DAKEFPV Nano 900MHz RX",
"lua_name": "DAKE Nano 900",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"power_values_dual": null
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"superd": {
"product_name": "DAKEFPV SuperD 900MHz RX",
"lua_name": "DAKE SuperD 900",
"layout_file": "Generic C3 LR1121 True Diversity.json",
"overlay": {
"power_values_dual": null
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"pro": {
"product_name": "DAKEFPV 500mW 900MHz RX",
"lua_name": "DAKE 500mW 900",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"power_min": 1,
"power_high": 5,
"power_max": 5,
"power_default": 5,
"power_values": [-17,-15,-12,-8,1],
"power_values_dual": null,
"ant_ctrl": 10,
"radio_rfo_hf": true,
"radio_rfsw_ctrl": [31,0,4,24,24,0,0,0]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"nanopro": {
"product_name": "DAKEFPV 900MHz NANOPRO MAX 500mW RX",
"lua_name": "DAKE 900RX",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"radio_rfo_hf": true,
"power_high": 0,
"power_max": 5,
"power_default": 3,
"power_values": [-17, -14, -10, -7, -3, 1],
"power_values_dual": null,
"power_lna_gain": 17
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.6.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"max-1w": {
"product_name": "DAKEFPV 900MHz MAX 1000mW Diversity RX",
"lua_name": "DKFPV 1000 RX",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"power_min": 1,
"power_max": 6,
"power_default": 3,
"power_values": [-16, -13, -10, -6, -2, 2],
"power_values_dual": null,
"power_lna_gain": 16,
"radio_rfo_hf": true,
"radio_rfsw_ctrl": [31, 0, 4, 24, 24, 0, 0, 0],
"ant_ctrl": 10
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.6.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
}
},
"rx_2400": {
"nano": {
"product_name": "DAKEFPV Nano 2.4GHz RX",
"lua_name": "DAKE Nano 2G4",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"power_values": null,
"power_values_dual": [-10, -6, -3, 1]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"superd": {
"product_name": "DAKEFPV SuperD 2.4GHz RX",
"lua_name": "DAKE SuperD 2G4",
"layout_file": "Generic C3 LR1121 True Diversity.json",
"overlay": {
"power_values": null,
"power_values_dual": [-10, -5, -2, 2]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"pro": {
"product_name": "DAKEFPV 500mW 2.4GHz RX",
"lua_name": "DAKE 500mW 2G4",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"power_min": 1,
"power_high": 5,
"power_max": 5,
"power_default": 5,
"power_values": null,
"power_values_dual": [-18,-14,-10,-5,-1],
"power_lna_gain": 13
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"superd-pro": {
"product_name": "DAKEFPV 2G4 SuperD Pro MAX 500mW RX",
"lua_name": "DAKE SG24",
"layout_file": "Generic C3 LR1121 True Diversity.json",
"overlay": {
"power_min": 1,
"power_high": 5,
"power_max": 5,
"power_default": 5,
"power_values": null,
"power_values_dual": [-10, -6, -4, -2, 0],
"power_lna_gain": 16
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
},
"1w": {
"product_name": "DAKEFPV 1W 2.4GHz RX",
"lua_name": "DAKE 1W 2G4",
"layout_file": "Generic C3 LR1121.json",
"overlay": {
"power_min": 1,
"power_high": 6,
"power_max": 6,
"power_default": 6,
"power_control": 0,
"power_values": null,
"power_values_dual": [17, -13, -9, -5, -2, 5],
"power_lna_gain": 16
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
}
},
"rx_dual": {
"gemx": {
"product_name": "DAKEFPV C3 900/2400 Dual Band 100mW Gemini RX",
"lua_name": "DAKE C3 GemX",
"layout_file": "Generic C3 LR1121 True Diversity.json",
"overlay": {
"power_values": [14, 18, 20, 22],
"power_values_dual": [-12, -8, -4, 3]
},
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.6.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_LR1121_RX"
}
},
"tx_2400": {
"max-1w": {
"product_name": "DAKEFPV 2.4GHz Micro MAX 1W TX",
"lua_name": "DKFPV 2400TX 1W",
"layout_file": "DAKEFPV MAX.json",
"overlay": {
"power_control": 0,
"power_min": 1,
"power_max": 6,
"power_high": 6,
"power_values": null,
"power_values_dual": [-18, -16, -14, -8, -5, -1],
"power_lna_gain": 15
},
"logo_file": "dakefpv_tft.bin",
"upload_methods": ["uart", "wifi"],
"min_version": "3.6.0",
"platform": "esp32",
"firmware": "Unified_ESP32_LR1121_TX"
}
}
},
"deepspace": {
"name": "DeepSpace",
"rx_2400": {
"nano": {
"product_name": "DEEPSPACE 2.4GHz Nano 100mw RX",
"lua_name": "DS 2G4 Nano RX",
"layout_file": "Generic C3 2400 PA.json",
"upload_methods": ["uart", "wifi", "betaflight"],
"min_version": "3.5.0",
"platform": "esp32-c3",
"firmware": "Unified_ESP32C3_2400_RX"
}
}
},
"diy": {
"name": "DIY devices",
"tx_900": {
"ttgov1": {
"product_name": "DIY TTGO V1 900MHz TX",
"lua_name": "DIY900 TTGO V1",
"layout_file": "DIY 900 TTGO V1.json",
"logo_file": "elrs64.bin",
"upload_methods": ["uart", "wifi"],
"min_version": "3.0.0",
"platform": "esp32",
"firmware": "Unified_ESP32_900_TX",
"prior_target_name": "DIY_900_TX_TTGO_V1_SX127x"
},
"ttgov2": {
"product_name": "DIY TTGO V2 900MHz TX",
"lua_name": "DIY900 TTGO V2",
"layout_file": "DIY 900 TTGO V2.json",
"logo_file": "elrs64.bin",
"upload_methods": ["uart", "wifi"],
"min_version": "3.0.0",
"platform": "esp32",
"firmware": "Unified_ESP32_900_TX",
"prior_target_name": "DIY_900_TX_TTGO_V2_SX127x"
},
"e19": {
"product_name": "DIY ESP32 E19 900MHz TX",
"lua_name": "DIY900 E19",
"layout_file": "DIY 900 E19.json",
"upload_methods": ["uart", "wifi"],
"min_version": "3.0.0",
"platform": "esp32",
"firmware": "Unified_ESP32_900_TX",
"prior_target_name": "DIY_900_TX_ESP32_SX127x_E19"
},
"rfm95": {
"product_name": "DIY ESP32 RFM95 900MHz TX",
"lua_name": "DIY900 RFM95",
"layout_file": "DIY 900 RFM95.json",
"upload_methods": ["uart", "wifi"],
"min_version": "3.0.0",
"platform": "esp32",
"firmware": "Unified_ESP32_900_TX",
"prior_target_name": "DIY_900_TX_ESP32_SX127x_RFM95"
},
"stm32-sx1272": {
"product_name": "DIY STM32 SX1272 TX",
"upload_methods": ["stlink"],
"min_version": "3.3.0",
"platform": "stm32",
"firmware": "DIY_900_TX_STM32_SX1272",
"stlink": {
"cpus": ["STM32F103C8T6", "STM32F103CBT6"],
"offset": "0x4000",
"bootloader": "sx1272_pcb_bootloader.bin"
}
}
},
"rx_900": {
"ttgov1": {
"product_name": "DIY TTGO V1 900MHz RX",
"lua_name": "DIY900 TTGO V1RX",
"layout_file": "DIY 900 TTGO V1.json",
"upload_methods": ["uart", "wifi"],
"min_version": "3.3.0",
"platform": "esp32",
"firmware": "Unified_ESP32_900_RX",
"prior_target_name": "DIY_900_RX_TTGO_V1_SX127x"