forked from FreeRTOS/FreeRTOS-Kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFreeRTOS-Kernel-V11.3.0-repository-SPDX2.3.spdx.yaml
More file actions
9629 lines (9629 loc) · 336 KB
/
Copy pathFreeRTOS-Kernel-V11.3.0-repository-SPDX2.3.spdx.yaml
File metadata and controls
9629 lines (9629 loc) · 336 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
SPDXID: SPDXRef-DOCUMENT
creationInfo:
created: '2026-03-30T23:50:05Z'
creators:
- 'Tool: sbom-generator'
- 'Organization: Amazon Web Services, Inc.'
dataLicense: CC0-1.0
documentNamespace: https://github.com/FreeRTOS/FreeRTOS-Kernel/releases/download/11.3.0/FreeRTOS-Kernel-V11.3.0-repository-SPDX2.3.spdx.yaml
files:
- SPDXID: SPDXRef-File-1
checksums:
- algorithm: SHA1
checksumValue: 9aff5a84ffc6948288c7d283e3a72b588b113959
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./stream_buffer.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-2
checksums:
- algorithm: SHA1
checksumValue: da90c6db4d831680448f0ad05539df49cb33d45e
copyrightText: NOASSERTION
fileName: ./Quick_Start_Guide.url
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-3
checksums:
- algorithm: SHA1
checksumValue: ecf2c40da259093a905ef8abc30e1ed5a7c5a39b
copyrightText: NOASSERTION
fileName: ./manifest.yml
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-4
checksums:
- algorithm: SHA1
checksumValue: e92be8a38994c9cc92d6e47cefc7260d42d07a1c
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./timers.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-5
checksums:
- algorithm: SHA1
checksumValue: 742185b0d8a01cb0461e98dac7a546dc16e35108
copyrightText: NOASSERTION
fileName: ./CMakeLists.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-6
checksums:
- algorithm: SHA1
checksumValue: 9d6463a804810cd5c406c10501997276c857a893
copyrightText: NOASSERTION
fileName: ./.gitmodules
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-7
checksums:
- algorithm: SHA1
checksumValue: 02f8cc016767ddbe57e43426bec356ad7d765f5a
copyrightText: NOASSERTION
fileName: ./History.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-8
checksums:
- algorithm: SHA1
checksumValue: 106e7710f9b9d3d1880fa51df3474d60caaa07c4
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./list.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-9
checksums:
- algorithm: SHA1
checksumValue: c2db81870ac640af80b55b528bb1fe89b960a2f4
copyrightText: NOASSERTION
fileName: ./.git-blame-ignore-revs
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-10
checksums:
- algorithm: SHA1
checksumValue: 6761eb2c82f8096be266c350370f8647d5714f39
copyrightText: NOASSERTION
fileName: ./GitHub-FreeRTOS-Kernel-Home.url
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-11
checksums:
- algorithm: SHA1
checksumValue: f6b3ef339a7735aecd522824c2d1e05f9ebba86d
copyrightText: NOASSERTION
fileName: ./cspell.config.yaml
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-12
checksums:
- algorithm: SHA1
checksumValue: e19e2ef3e7b807dd5cea1c3326933eedc05693e7
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./croutine.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-13
checksums:
- algorithm: SHA1
checksumValue: d3df1b8879d38751766e546d7346410c64879a41
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./event_groups.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-14
checksums:
- algorithm: SHA1
checksumValue: 200f7bf15f572347f90b58aeebf57be72f9e3566
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./queue.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-15
checksums:
- algorithm: SHA1
checksumValue: 218fc8c15534e8840cbff5801582c450c97869ab
copyrightText: NOASSERTION
fileName: ./LICENSE.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-16
checksums:
- algorithm: SHA1
checksumValue: ccdd7ce5dc8c05fbb2496e48363e0552bec78e91
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./tasks.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-17
checksums:
- algorithm: SHA1
checksumValue: 4c6cef61b0e8163d748d62327fb00bbc7930c38a
copyrightText: NOASSERTION
fileName: ./.gitattributes
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-18
checksums:
- algorithm: SHA1
checksumValue: 80856914fb46508b9497791bacb3d372986264ed
copyrightText: NOASSERTION
fileName: ./MISRA.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-19
checksums:
- algorithm: SHA1
checksumValue: 0f4f2727d7085bc15b1f509b250cfb69bac8b9dd
copyrightText: NOASSERTION
fileName: ./README.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-20
checksums:
- algorithm: SHA1
checksumValue: c994f97782f28f03e7161b05a0ec721448f12132
copyrightText: NOASSERTION
fileName: ./.github/CODEOWNERS
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-21
checksums:
- algorithm: SHA1
checksumValue: 31f51094123053afd5bf751125210c750b972e36
copyrightText: NOASSERTION
fileName: ./.github/pull_request_template.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-22
checksums:
- algorithm: SHA1
checksumValue: 6bd29a86c851c880e927f5ba2922f285b6b8f94d
copyrightText: NOASSERTION
fileName: ./.github/allowed_urls.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-23
checksums:
- algorithm: SHA1
checksumValue: 1b42c52b28953985c451442fadd2a4c2d19f51ce
copyrightText: NOASSERTION
fileName: ./.github/.cSpellWords.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-24
checksums:
- algorithm: SHA1
checksumValue: cc1d1ecc38411e809351d04fd5d944fe5147e166
copyrightText: NOASSERTION
fileName: ./.github/uncrustify.cfg
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-25
checksums:
- algorithm: SHA1
checksumValue: 2616f29e10602bd3cef315bdd9e9c283bbe94079
copyrightText: NOASSERTION
fileName: ./.github/pull_request_process.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-26
checksums:
- algorithm: SHA1
checksumValue: 42ff4fd0c83b5bc4c7714e09fb9f977e3e4bf175
copyrightText: NOASSERTION
fileName: ./.github/CONTRIBUTING.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-27
checksums:
- algorithm: SHA1
checksumValue: 33d5aaf464f54454eb73f0733351729fa86280de
copyrightText: NOASSERTION
fileName: ./.github/third_party_tools.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-28
checksums:
- algorithm: SHA1
checksumValue: 5319b162ccba23ed7d02505c3d7992186492089b
copyrightText: NOASSERTION
fileName: ./.github/SECURITY.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-29
checksums:
- algorithm: SHA1
checksumValue: bac87c669b999bc78a6863cbb60e14c0ba02f603
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/semphr.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-30
checksums:
- algorithm: SHA1
checksumValue: 19780d59331ef0c9e544a271337a1202c1470e1e
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/projdefs.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-31
checksums:
- algorithm: SHA1
checksumValue: 1a5db4af599d545a87e1fc8356a5a30b1ffe1f51
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/portable.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-32
checksums:
- algorithm: SHA1
checksumValue: d5d6e15cc6460e486f0f5ff7be58bcd60ecef6ea
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/mpu_wrappers.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-33
checksums:
- algorithm: SHA1
checksumValue: dd875a0e6c36cb96c348fd782765d6c56c022027
copyrightText: NOASSERTION
fileName: ./include/CMakeLists.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-34
checksums:
- algorithm: SHA1
checksumValue: 3e7e84467a3f160669a786a54ed91cd6d36b6924
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/deprecated_definitions.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-35
checksums:
- algorithm: SHA1
checksumValue: 553b9c15661ac50ac47b87666d0eb280e606c6af
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/queue.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-36
checksums:
- algorithm: SHA1
checksumValue: 553d0279f7952657735de8ba924e52c92dad2275
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/message_buffer.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-37
checksums:
- algorithm: SHA1
checksumValue: d6f4e8891060af88e82f0531571409dcf4e9865e
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/timers.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-38
checksums:
- algorithm: SHA1
checksumValue: c15c4a1a4d100d2723f9222b6375b6fef45c7d5d
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/mpu_syscall_numbers.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-39
checksums:
- algorithm: SHA1
checksumValue: 8727c605606e88aed2a65f7ae05255af87363683
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/mpu_prototypes.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-40
checksums:
- algorithm: SHA1
checksumValue: ddd2af51e2110c5cc757387dfcbec65527255775
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/stream_buffer.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-41
checksums:
- algorithm: SHA1
checksumValue: cfd34e22ce0cf7e5401b9ea49207aea4046a4257
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/newlib-freertos.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-42
checksums:
- algorithm: SHA1
checksumValue: ff5c8f228291a3b64e2ad5acb179c81d4d28410a
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/FreeRTOS.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-43
checksums:
- algorithm: SHA1
checksumValue: 109fde758a3461629f7a27d518bbfdeb93c0a08d
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/picolibc-freertos.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-44
checksums:
- algorithm: SHA1
checksumValue: 6a042c6c1f25002ab14a4f8cb32ef6504937dada
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/list.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-45
checksums:
- algorithm: SHA1
checksumValue: 62c4052b2d85b6748bd056848fee613a0d8c9107
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/StackMacros.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-46
checksums:
- algorithm: SHA1
checksumValue: bdec4eb36f7f939bb6e593b454407719f1f3a83f
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/atomic.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-47
checksums:
- algorithm: SHA1
checksumValue: f390023cd46a1577979fed9361fff40acea40a51
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/task.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-48
checksums:
- algorithm: SHA1
checksumValue: 47412d7562c6d976810d2ff2812369d681aee55e
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/croutine.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-49
checksums:
- algorithm: SHA1
checksumValue: 0f5f2decdf9b4c9c56c941a4f1d8d4a89a4233a4
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/event_groups.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-50
checksums:
- algorithm: SHA1
checksumValue: 8bf351d10d6f74945c54f22b627c8b81d849a7e1
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/stdint.readme
licenseConcluded: MIT
- SPDXID: SPDXRef-File-51
checksums:
- algorithm: SHA1
checksumValue: 0d3bc790634e85f5ed771a89bc4b4936105101bf
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./include/stack_macros.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-52
checksums:
- algorithm: SHA1
checksumValue: 3986b21577a18cc512d2aecb37e98af3076ad345
copyrightText: NOASSERTION
fileName: ./examples/README.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-53
checksums:
- algorithm: SHA1
checksumValue: 2e2f844654765238869b790fefeaa4673fa7936e
copyrightText: NOASSERTION
fileName: ./portable/CMakeLists.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-54
checksums:
- algorithm: SHA1
checksumValue: b7e7565e25ed2e26836cdcf6ab13efb1ad0a268b
copyrightText: NOASSERTION
fileName: ./portable/readme.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-55
checksums:
- algorithm: SHA1
checksumValue: 7371cb648dc49563819231d5edce7487ff545ba7
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/Common/mpu_wrappers.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-56
checksums:
- algorithm: SHA1
checksumValue: 339360f592f717466648d7f33a7c69acce7b4b77
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/Common/mpu_wrappers_v2.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-57
checksums:
- algorithm: SHA1
checksumValue: d3ebfd967e790de6bec8cf2c7a6f08770ac7b936
copyrightText: NOASSERTION
fileName: ./portable/Keil/See-also-the-RVDS-directory.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-58
checksums:
- algorithm: SHA1
checksumValue: 2ec933be58b2a382584e65e8d7f714ebe45e6be2
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/MSVC-MingW/portmacro.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-59
checksums:
- algorithm: SHA1
checksumValue: ca149fefeb65ebcad671927f312b8a148287fd44
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/MSVC-MingW/port.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-60
checksums:
- algorithm: SHA1
checksumValue: 282443d7fa307ae54866cbe59bd3212be298b83d
copyrightText: NOASSERTION
fileName: ./portable/ARMClang/Use-the-GCC-ports.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-61
checksums:
- algorithm: SHA1
checksumValue: 72653a8f0ae678d86b11c6ea0378556edaa4afc5
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/MemMang/heap_4.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-62
checksums:
- algorithm: SHA1
checksumValue: 32e667988e508694103624bbb17eb4b6540997b0
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/MemMang/heap_2.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-63
checksums:
- algorithm: SHA1
checksumValue: b459ae250b25d33b1b96d413a248fc39c67c5de4
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/MemMang/heap_5.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-64
checksums:
- algorithm: SHA1
checksumValue: 48a1cc7cdbb6b29b10ef703832302666a9690d78
copyrightText: NOASSERTION
fileName: ./portable/MemMang/ReadMe.url
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-65
checksums:
- algorithm: SHA1
checksumValue: d37e0043c557b930bfe2542a7f361c4dfcc1856d
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/MemMang/heap_3.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-66
checksums:
- algorithm: SHA1
checksumValue: 79eee92d103390f34d9dd23267e30923577785a6
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/MemMang/heap_1.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-67
checksums:
- algorithm: SHA1
checksumValue: 180ac4fc395a51ee256d7c5d930b6798cf7df1d1
copyrightText: NOASSERTION
fileName: ./portable/ARMv8M/ReadMe.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-68
checksums:
- algorithm: SHA1
checksumValue: 7298ca4f80508c4a8246bcd8e14592c3cbf21477
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ARMv8M/copy_files.py
licenseConcluded: MIT
- SPDXID: SPDXRef-File-69
checksums:
- algorithm: SHA1
checksumValue: a0aebc9d15d9d41c3033280e8a3683fdf709ed71
copyrightText: NOASSERTION
fileName: ./portable/template/portmacro.h
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-70
checksums:
- algorithm: SHA1
checksumValue: bdedec947e7f9ce0fa127d2c24301bb907a787a5
copyrightText: NOASSERTION
fileName: ./portable/template/port.c
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-71
checksums:
- algorithm: SHA1
checksumValue: 8724fef58f3d25a9db3542d00a5f170494452b47
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/KnownIssues.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-72
checksums:
- algorithm: SHA1
checksumValue: fec983ee9c4639dbd9747a3b1fc64832ab42be72
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/README.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-73
checksums:
- algorithm: SHA1
checksumValue: c1aef10facef4165dd4dd27dbe5b04023c1d8e04
copyrightText: NOASSERTION
fileName: ./portable/Rowley/ARM7/readme.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-74
checksums:
- algorithm: SHA1
checksumValue: c792b6a1571472fefbc2bee967177870e671d72a
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/Rowley/MSP430F449/portext.asm
licenseConcluded: MIT
- SPDXID: SPDXRef-File-75
checksums:
- algorithm: SHA1
checksumValue: ab605370af5dbc20955ab56739abe89899de931c
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/Rowley/MSP430F449/portmacro.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-76
checksums:
- algorithm: SHA1
checksumValue: fceb7fb459f0b2a54cbae98f5249ccad296b9b43
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/Rowley/MSP430F449/port.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-77
checksums:
- algorithm: SHA1
checksumValue: 9ea9f2535649e84c9ff74cc6a3f5cec487610a97
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/Rowley/MSP430F449/portasm.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-78
checksums:
- algorithm: SHA1
checksumValue: 7e6212df20d6b2bbf72685f5482381d164436a1d
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/xClang/XCOREAI/port.xc
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-79
checksums:
- algorithm: SHA1
checksumValue: 80a8b48c3ea6eefc76daaba77a7a1209f8779f68
copyrightText: Copyright (c) 2020, XMOS Ltd, All rights reserved
fileName: ./portable/ThirdParty/xClang/XCOREAI/portmacro.h
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-80
checksums:
- algorithm: SHA1
checksumValue: 3861a1d826e63eeece98a4a577fae553d6bc4d15
copyrightText: Copyright (c) 2020, XMOS Ltd, All rights reserved
fileName: ./portable/ThirdParty/xClang/XCOREAI/portasm.S
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-81
checksums:
- algorithm: SHA1
checksumValue: 4ec430aa714fa8076c8c878bd167f0291ef88a44
copyrightText: Copyright (c) 2019, XMOS Ltd, All rights reserved
fileName: ./portable/ThirdParty/xClang/XCOREAI/port.c
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-82
checksums:
- algorithm: SHA1
checksumValue: 992dcee2aae2065ec21b567d95ddd649df7e4ffd
copyrightText: Copyright (c) 2020, XMOS Ltd, All rights reserved
fileName: ./portable/ThirdParty/xClang/XCOREAI/rtos_support_rtos_config.h
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-83
checksums:
- algorithm: SHA1
checksumValue: 09fd967fdb2c4984c391f1013407140f99de24b3
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/XCC/Xtensa/readme_xtensa.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-84
checksums:
- algorithm: SHA1
checksumValue: 01e591e3f4a80a85afce4ebf03a57f2d0f3a04ad
copyrightText: Copyright (c) 2019-2024, Arm Limited. All rights reserved.
fileName: ./portable/ThirdParty/GCC/ARM_TFM/os_wrapper_freertos.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-85
checksums:
- algorithm: SHA1
checksumValue: d534e7946e3948269cf819a0e60ca27ad77f3161
copyrightText: Copyright (c) 2020-2024, Arm Limited. All rights reserved.
fileName: ./portable/ThirdParty/GCC/ARM_TFM/README.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-86
checksums:
- algorithm: SHA1
checksumValue: 05882beeefaaf533e00a2e484fde6f51e960e17f
copyrightText: Copyright (C) 2020 Synopsys, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ARC_v1/arc_freertos_exceptions.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-87
checksums:
- algorithm: SHA1
checksumValue: 90c1003cbf8201d1b238950d3cc5422d2773a463
copyrightText: Copyright (C) 2020 Synopsys, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ARC_v1/arc_freertos_exceptions.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-88
checksums:
- algorithm: SHA1
checksumValue: 06ecbbc93e121f5a449b3866113c7a73122f0bf5
copyrightText: Copyright (C) 2020 Synopsys, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ARC_v1/portmacro.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-89
checksums:
- algorithm: SHA1
checksumValue: b0490137a86f1e7383eb94e6d0204654f6e6beef
copyrightText: Copyright (C) 2020 Synopsys, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ARC_v1/arc_support.s
licenseConcluded: MIT
- SPDXID: SPDXRef-File-90
checksums:
- algorithm: SHA1
checksumValue: 8ab358ed97d9d633e80e409a13416ace0c9b1ce1
copyrightText: Copyright (C) 2020 Synopsys, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ARC_v1/port.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-91
checksums:
- algorithm: SHA1
checksumValue: 7ff30f4da47038e8ea7892dac0f53e05850b25a2
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/RP2040/CMakeLists.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-92
checksums:
- algorithm: SHA1
checksumValue: 64539256ed78035a14f6ad6280c68593bacab9f0
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/RP2040/.gitignore
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-93
checksums:
- algorithm: SHA1
checksumValue: ce3ad16b416b1909aa27306c626a6363b4382a6d
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/RP2040/library.cmake
licenseConcluded: BSD-3-Clause
- SPDXID: SPDXRef-File-94
checksums:
- algorithm: SHA1
checksumValue: 05e31713e67a3242c98c78d3f4ad6314531ae2f5
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/RP2040/LICENSE.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-95
checksums:
- algorithm: SHA1
checksumValue: 1c8f479f44f0f56c9c308b0a54cf90e4d47ad1f7
copyrightText: Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/RP2040/port.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-96
checksums:
- algorithm: SHA1
checksumValue: 27a1e22461f0d8173e52ac59c12f0ea7f63dc066
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/RP2040/README.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-97
checksums:
- algorithm: SHA1
checksumValue: b4bf86366fbbecc32fdee8712522df20299f6c4f
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/RP2040/pico_sdk_import.cmake
licenseConcluded: BSD-3-Clause
- SPDXID: SPDXRef-File-98
checksums:
- algorithm: SHA1
checksumValue: 3400aed6a9f904589b69ba50fe8118ef8db0cf7d
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/RP2040/FreeRTOS_Kernel_import.cmake
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-99
checksums:
- algorithm: SHA1
checksumValue: f6080c95b0b2de2ebf6d6315884ad2d00d5fdff7
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Posix/FreeRTOS-simulator-for-Linux.url
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-100
checksums:
- algorithm: SHA1
checksumValue: 0892c18ac68797e45e3f1377c7b60daf42531f7c
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Posix/portmacro.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-101
checksums:
- algorithm: SHA1
checksumValue: 7c0a1f6d03e22b9bf81ab64c663194c798b15e6a
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Posix/port.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-102
checksums:
- algorithm: SHA1
checksumValue: 05882beeefaaf533e00a2e484fde6f51e960e17f
copyrightText: Copyright (C) 2020 Synopsys, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ARC_EM_HS/arc_freertos_exceptions.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-103
checksums:
- algorithm: SHA1
checksumValue: 90c1003cbf8201d1b238950d3cc5422d2773a463
copyrightText: Copyright (C) 2020 Synopsys, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ARC_EM_HS/arc_freertos_exceptions.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-104
checksums:
- algorithm: SHA1
checksumValue: c4171ff8bb6104abaac87b7e09fc1f3537e812aa
copyrightText: Copyright (C) 2020 Synopsys, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ARC_EM_HS/portmacro.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-105
checksums:
- algorithm: SHA1
checksumValue: c6c4ab88d2f4cfd8adaa36bf3cc32f6298c4bae2
copyrightText: Copyright (C) 2020 Synopsys, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ARC_EM_HS/freertos_tls.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-106
checksums:
- algorithm: SHA1
checksumValue: 490e3dbcb20a08003a8a2a6a85d7098729b88aca
copyrightText: Copyright (C) 2020 Synopsys, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ARC_EM_HS/arc_support.s
licenseConcluded: MIT
- SPDXID: SPDXRef-File-107
checksums:
- algorithm: SHA1
checksumValue: 9794ca5315dfa4e32bdd62e7eaa00c97683024c9
copyrightText: Copyright (C) 2020 Synopsys, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ARC_EM_HS/port.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-108
checksums:
- algorithm: SHA1
checksumValue: 0759987beb68fdd9823992ca9cf1339dd478177c
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_vectors.S
licenseConcluded: MIT
- SPDXID: SPDXRef-File-109
checksums:
- algorithm: SHA1
checksumValue: 8d61fb9862ede5c199117506022a70c3e2e7552c
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_overlay_os_hook.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-110
checksums:
- algorithm: SHA1
checksumValue: 82381398311a146ad226612b884d2d2c6e221fc3
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/port_common.c
licenseConcluded: Apache-2.0
- SPDXID: SPDXRef-File-111
checksums:
- algorithm: SHA1
checksumValue: 2795a86fece6cf49d75f262d27d8356c341b7a76
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_loadstore_handler.S
licenseConcluded: Apache-2.0
- SPDXID: SPDXRef-File-112
checksums:
- algorithm: SHA1
checksumValue: d9df771315aa1623052ad29a6a590cb50134bc04
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_init.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-113
checksums:
- algorithm: SHA1
checksumValue: 33a76060e7c12a8f952dbac91e9ad7e17aa805ee
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/portmux_impl.h
licenseConcluded: Apache-2.0
- SPDXID: SPDXRef-File-114
checksums:
- algorithm: SHA1
checksumValue: 53e73f1b68dbebe770940c465270e40078540823
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/port_systick.c
licenseConcluded: Apache-2.0
- SPDXID: SPDXRef-File-115
checksums:
- algorithm: SHA1
checksumValue: 51fed0de72edfa2119b6ef614550f568bbc5ca73
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/FreeRTOS-openocd.c
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-116
checksums:
- algorithm: SHA1
checksumValue: 82de1101421f63c007496c392411372c0397c1ed
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_context.S
licenseConcluded: MIT
- SPDXID: SPDXRef-File-117
checksums:
- algorithm: SHA1
checksumValue: 13f7f754fe25a193d66b6817e32d351dade58231
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/portasm.S
licenseConcluded: MIT
- SPDXID: SPDXRef-File-118
checksums:
- algorithm: SHA1
checksumValue: f582da35aff4f062249eb121d656222e9decd52e
copyrightText: Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/port.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-119
checksums:
- algorithm: SHA1
checksumValue: 7fcf87f31249861a7c1a4bceb0f0d3946e0f8490
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/portmux_impl.inc.h
licenseConcluded: Apache-2.0
- SPDXID: SPDXRef-File-120
checksums:
- algorithm: SHA1
checksumValue: d357f8b209017a2b7dc28555a862ad56cc63f92c
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/xtensa_vector_defaults.S
licenseConcluded: Apache-2.0
- SPDXID: SPDXRef-File-121
checksums:
- algorithm: SHA1
checksumValue: 71ec865f3fc020424b26bc0e6a9a3beb7ade39b4
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/ATmega/readme.md
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-122
checksums:
- algorithm: SHA1
checksumValue: 1136ee2211b69b03febd5aa2ca3a70adb11c0808
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ATmega/portmacro.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-123
checksums:
- algorithm: SHA1
checksumValue: 0b46f9fe95c659ae2373d8189d16531035f8f93a
copyrightText: Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/ATmega/port.c
licenseConcluded: MIT
- SPDXID: SPDXRef-File-124
checksums:
- algorithm: SHA1
checksumValue: 799692789f5108f61156c069ec569742e27d72d2
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/RISC-V/README-for-info-on-official-MIT-license-port.txt
licenseConcluded: NOASSERTION
- SPDXID: SPDXRef-File-125
checksums:
- algorithm: SHA1
checksumValue: 46a2e0e43f9810882fb18a24d366f87e9b0ecb17
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/include/portbenchmark.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-126
checksums:
- algorithm: SHA1
checksumValue: 77883d10ec5e648bc3c64a3c28bb489ce01bbf33
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/include/port_systick.h
licenseConcluded: Apache-2.0
- SPDXID: SPDXRef-File-127
checksums:
- algorithm: SHA1
checksumValue: 581af014a0bc66c577b1002078b0e57a6c3bf5ec
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_api.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-128
checksums:
- algorithm: SHA1
checksumValue: 09590b4be6041afc151b2bad05b24f804a37e169
copyrightText: Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/include/FreeRTOSConfig_arch.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-129
checksums:
- algorithm: SHA1
checksumValue: 3224c6f480593ed587943d28b57762ed89d5ee13
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_timer.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-130
checksums:
- algorithm: SHA1
checksumValue: 51134ee994b251efe162d4132a6e2d2be5c3c456
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/include/xt_asm_utils.h
licenseConcluded: Apache-2.0
- SPDXID: SPDXRef-File-131
checksums:
- algorithm: SHA1
checksumValue: 34696e7b601d632d03b56c6d178e9ae558e13cf5
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_rtos.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-132
checksums:
- algorithm: SHA1
checksumValue: e086501b570dd11705b7f4c378aee507bf938915
copyrightText: Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights
Reserved.
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/include/portmacro.h
licenseConcluded: MIT
- SPDXID: SPDXRef-File-133
checksums:
- algorithm: SHA1
checksumValue: c2bc7505a847a82fd1db6f80690e652c026e5480
copyrightText: NOASSERTION
fileName: ./portable/ThirdParty/GCC/Xtensa_ESP32/include/xtensa_config.h
licenseConcluded: MIT