-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmtb-bsp-capabilities-manifest.json
1822 lines (1822 loc) · 47.4 KB
/
mtb-bsp-capabilities-manifest.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
{
"capabilities": [
{
"category": "Chip Families",
"description": "This chip is a member of the 208XX family (20819, 20820, 20829, 20835, etc.)",
"name": "CYW208XX",
"token": "CYW208XX",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 208XX family with a 62-FBGA pin package (CYW20819A1KFBG, CYW20820A1KFBG)",
"name": "CYW208XX_62fbga",
"token": "CYW208XX_62fbga",
"types": [
"chip"
]
},
{
"category": "Sensors",
"description": "This board contains an Analog Devices MAX44009EDT ambient light sensor.",
"name": "MAX44009EDT",
"token": "MAX44009EDT",
"types": [
"board"
]
},
{
"category": "Hardware Blocks",
"description": "This device contains at least one programmable Analog to Digital Converter block.",
"name": "adc",
"token": "adc",
"types": [
"chip"
]
},
{
"category": "Ports",
"description": "This board has the necessary ports to attach an Arduino-compatible shield.",
"name": "arduino",
"token": "arduino",
"types": [
"board"
]
},
{
"category": "Networking",
"description": "This board supports audio over Bluetooth.",
"name": "audio",
"token": "audio",
"types": [
"board"
]
},
{
"category": "Networking",
"description": "This chip supports Bluetooth Low Energy networking.",
"name": "ble",
"token": "ble",
"types": [
"chip"
]
},
{
"category": "Networking",
"description": "This chip supports Bluetooth Classic (Basic Rate / Enhanced Data Rate).",
"name": "br_edr",
"token": "br_edr",
"types": [
"board"
]
},
{
"category": "BSP",
"description": "This board support package is from the first generation of BSPs supported by ModusToolbox.",
"name": "bsp_gen1",
"token": "bsp_gen1",
"types": [
"generation"
]
},
{
"category": "BSP",
"description": "This board support package is from the second generation of BSPs supported by ModusToolbox.",
"name": "bsp_gen2",
"token": "bsp_gen2",
"types": [
"generation"
]
},
{
"category": "BSP",
"description": "This board support package is from the third generation of BSPs supported by ModusToolbox.",
"name": "bsp_gen3",
"token": "bsp_gen3",
"types": [
"generation"
]
},
{
"category": "BSP",
"description": "This board support package is from the fourth generation of BSPs supported by ModusToolbox.",
"name": "bsp_gen4",
"token": "bsp_gen4",
"types": [
"generation"
]
},
{
"category": "BSP",
"description": "This board support package is from the fifth generation of BSPs supported by ModusToolbox.",
"name": "bsp_gen5",
"token": "bsp_gen5",
"types": [
"generation"
]
},
{
"category": "Networking",
"description": "This chip supports Bluetooth.",
"name": "bt",
"token": "bt",
"types": [
"chip"
]
},
{
"category": "Networking",
"description": "This chip is supported by the Infineon Bluetooth Software Development Kit.",
"name": "btsdk",
"token": "btsdk",
"types": [
"chip"
]
},
{
"category": "Software/Firmware Support",
"description": "This board supports BTSTACK 1.0 code, used by older board support packages.",
"name": "btstack10",
"token": "btstack10",
"types": [
"board"
]
},
{
"category": "Software/Firmware Support",
"description": "This board supports BTSTACK 3.0 code, used by newer board support packages.",
"name": "btstack30",
"token": "btstack30",
"types": [
"board"
]
},
{
"category": "Human Interface Devices",
"description": "This board contains at least one button.",
"name": "button",
"token": "button",
"types": [
"board"
]
},
{
"category": "Hardware Blocks",
"description": "This chip contains at least one Controller Area Network block.",
"name": "can",
"token": "can",
"types": [
"chip"
]
},
{
"category": "Hardware Blocks",
"description": "This chip supports CapSense.",
"name": "capsense",
"token": "capsense",
"types": [
"chip"
]
},
{
"category": "Human Interface Devices",
"description": "This board contains at least one CapSense button.",
"name": "capsense_button",
"token": "capsense_button",
"types": [
"board"
]
},
{
"category": "Human Interface Devices",
"description": "This board contains at least one CapSense linear slider.",
"name": "capsense_linear_slider",
"token": "capsense_linear_slider",
"types": [
"board"
]
},
{
"category": "Human Interface Devices",
"description": "This board contains at least one CapSense linear slider.",
"name": "capsense_slider",
"token": "capsense_slider",
"types": [
"board"
]
},
{
"category": "Human Interface Devices",
"description": "This board contains at least one CapSense touchpad.",
"name": "capsense_touchpad",
"token": "capsense_touchpad",
"types": [
"board"
]
},
{
"category": "Chip Families",
"description": "This chip is in the CAT1 family (PSOC 6, XMC7200, etc).",
"name": "cat1",
"token": "cat1",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the CAT1A family (PSOC 6, FX3G2).",
"name": "cat1a",
"token": "cat1a",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the CAT1B family (20829, etc).",
"name": "cat1b",
"token": "cat1b",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the CAT1C family (XMC7100, etc).",
"name": "cat1c",
"token": "cat1c",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the CAT1D family.",
"name": "cat1d",
"token": "cat1d",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the CAT2 family (PSOC 4, etc).",
"name": "cat2",
"token": "cat2",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the CAT3 family (XMC1?00, etc).",
"name": "cat3",
"token": "cat3",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the CAT4 family (43907, 54907, etc).",
"name": "cat4",
"token": "cat4",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the CAT5 family (55513, 55913, etc).",
"name": "cat5",
"token": "cat5",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the CAT6 family (iMotion, etc).",
"name": "cat6",
"token": "cat6",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the FX3G2 family.",
"name": "fx3g2",
"token": "fx3g2",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the FX2G3 family.",
"name": "fx2g3",
"token": "fx2g3",
"types": [
"chip"
]
},
{
"category": "Hardware Blocks",
"description": "This chip contains at least one Compare Capture Unit from the ccu4 family.",
"name": "ccu4",
"token": "ccu4",
"types": [
"chip"
]
},
{
"category": "Hardware Blocks",
"description": "This chip contains at least one Compare Capture Unit from the ccu8 family.",
"name": "ccu8",
"token": "ccu8",
"types": [
"chip"
]
},
{
"category": "Hardware Blocks",
"description": "This chip contains at least one analog comparator block.",
"name": "comp",
"token": "comp",
"types": [
"chip"
]
},
{
"category": "Hardware Blocks",
"description": "This chip supports capacitive sensing using a Delta-Sigma Modulator.",
"name": "csd",
"token": "csd",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 20706 family.",
"name": "cyw20706",
"token": "cyw20706",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 20707 family.",
"name": "cyw20707",
"token": "cyw20707",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 20719 family.",
"name": "cyw20719",
"token": "cyw20719",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 20721 family.",
"name": "cyw20721",
"token": "cyw20721",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 20735 family.",
"name": "cyw20735",
"token": "cyw20735",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 20736 family.",
"name": "cyw20736",
"token": "cyw20736",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 20737 family.",
"name": "cyw20737",
"token": "cyw20737",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 20819 family.",
"name": "cyw20819",
"token": "cyw20819",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 20820 family.",
"name": "cyw20820",
"token": "cyw20820",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 20829 family.",
"name": "cyw20829",
"token": "cyw20829",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 20835 family",
"name": "cyw20835",
"token": "cyw20835",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in one of the 207?? or 208?? families.",
"name": "cyw20xxx",
"token": "cyw20xxx",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 30739 family.",
"name": "cyw30739",
"token": "cyw30739",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in one of the 20??? families.",
"name": "cyw30xxx",
"token": "cyw30xxx",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 43012 family.",
"name": "cyw43012",
"token": "cyw43012",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 43022 family.",
"name": "cyw43022",
"token": "cyw43022",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 43438 family.",
"name": "cyw43438",
"token": "cyw43438",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 43439 family.",
"name": "cyw43439",
"token": "cyw43439",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 4343W family.",
"name": "cyw4343w",
"token": "cyw4343w",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 4373 family.",
"name": "cyw4373",
"token": "cyw4373",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 4373E family.",
"name": "cyw4373E",
"token": "cyw4373E",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 4373E family.",
"name": "cyw4373e",
"token": "cyw4373e",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 43xxx family.",
"name": "cyw43xxx",
"token": "cyw43xxx",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 55513 family.",
"name": "cyw55513",
"token": "cyw55513",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 55533 family.",
"name": "55533",
"token": "cyw55533",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 55572 family.",
"name": "cyw55572",
"token": "cyw55572",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 55913 family.",
"name": "cyw55913",
"token": "cyw55913",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 55xxx family.",
"name": "cyw55xxx",
"token": "cyw55xxx",
"types": [
"chip"
]
},
{
"category": "Chip Families",
"description": "This chip is in the 89829 family.",
"name": "cyw89829",
"token": "cyw89829",
"types": [
"chip"
]
},
{
"category": "Hardware Blocks",
"description": "This chip contains at least one programmable Digital to Analog Converter block.",
"name": "dac",
"token": "dac",
"types": [
"chip"
]
},
{
"category": "Hardware Blocks",
"description": "This chip contains at least one programmable DMA block.",
"name": "dma",
"token": "dma",
"types": [
"chip"
]
},
{
"category": "Miscellaneous",
"description": "This board is sealed in an enclosure to improve liquid tolerance.",
"name": "enclosure",
"token": "enclosure",
"types": [
"board"
]
},
{
"category": "Networking",
"description": "This chip is capable of supporting a physical Ethernet port.",
"name": "ethernet",
"token": "ethernet",
"types": [
"chip"
]
},
{
"category": "Ports",
"description": "This board has headers that are compatible with Adafruit Feather components.",
"name": "feather",
"token": "feather",
"types": [
"board"
]
},
{
"category": "Memory",
"description": "This chip has 0K of flash memory.",
"name": "flash_0k",
"token": "flash_0k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 1024K of flash memory.",
"name": "flash_1024k",
"token": "flash_1024k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 1088K of flash memory.",
"name": "flash_1088k",
"token": "flash_1088k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 128K of flash memory.",
"name": "flash_128k",
"token": "flash_128k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 1536K of flash memory.",
"name": "flash_1536k",
"token": "flash_1536k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 16K of flash memory.",
"name": "flash_16k",
"token": "flash_16k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 1856K of flash memory.",
"name": "flash_1856k",
"token": "flash_1856k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 192K of flash memory.",
"name": "flash_192k",
"token": "flash_192k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 200K of flash memory.",
"name": "flash_200k",
"token": "flash_200k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 2048K of flash memory.",
"name": "flash_2048k",
"token": "flash_2048k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 2112K of flash memory.",
"name": "flash_2112k",
"token": "flash_2112k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 256K of flash memory.",
"name": "flash_256k",
"token": "flash_256k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 32K of flash memory.",
"name": "flash_32k",
"token": "flash_32k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 38K of flash memory.",
"name": "flash_38k",
"token": "flash_38k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 384K of flash memory.",
"name": "flash_384k",
"token": "flash_384k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 4160K of flash memory.",
"name": "flash_4160k",
"token": "flash_4160k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 4192K of flash memory.",
"name": "flash_4192k",
"token": "flash_4192k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 448K of flash memory.",
"name": "flash_448k",
"token": "flash_448k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 512K of flash memory.",
"name": "flash_512k",
"token": "flash_512k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 56K of flash memory.",
"name": "flash_56k",
"token": "flash_56k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 576K of flash memory.",
"name": "flash_576k",
"token": "flash_576k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 60K of flash memory.",
"name": "flash_60k",
"token": "flash_60k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 6336K of flash memory.",
"name": "flash_6336k",
"token": "flash_6336k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 64K of flash memory.",
"name": "flash_64k",
"token": "flash_64k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 72K of flash memory.",
"name": "flash_72k",
"token": "flash_72k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 768K of flash memory.",
"name": "flash_768k",
"token": "flash_768k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 832K of flash memory.",
"name": "flash_832k",
"token": "flash_832k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 8384K of flash memory.",
"name": "flash_8384k",
"token": "flash_8384k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This chip has 8K of flash memory.",
"name": "flash_8k",
"token": "flash_8k",
"types": [
"chip"
]
},
{
"category": "Memory",
"description": "This board contains at least one memory device that is FRAM",
"name": "fram",
"token": "fram",
"types": [
"board"
]
},
{
"category": "Software/Firmware Support",
"description": "This board supports FW2 firmware.",
"name": "fw2",
"token": "fw2",
"types": [
"board"
]
},
{
"category": "Software/Firmware Support",
"description": "This chip is supported by the Infineon Hardware Abstraction Layer.",
"name": "hal",
"token": "hal",
"types": [
"chip"
]
},
{
"category": "Software/Firmware Support",
"description": "This board supports Bluetooth Human Interface Devices peripherals.",
"name": "hid",
"token": "hid",
"types": [
"board"
]
},
{
"category": "Hardware Blocks",
"description": "This chip contains at least one programmable Inter-Integrated Circuit block.",
"name": "i2c",
"token": "i2c",
"types": [
"chip"
]
},
{
"category": "Hardware Blocks",
"description": "This chip contains at least one programmable Inter-IC Sound block.",
"name": "i2s",
"token": "i2s",
"types": [
"chip"
]
},
{
"category": "Hardware Blocks",
"description": "This chip contains at least one programmable Improved Inter-Integration Circuit block.",
"name": "i3c",
"token": "i3c",
"types": [
"chip"
]
},
{
"category": "Ports",
"description": "This board has the necessary ports to attach an Arduino-compatible shield with the additional J2 pins.",
"name": "j2",
"token": "j2",
"types": [
"board"
]