-
Notifications
You must be signed in to change notification settings - Fork 2
/
CS_3420_Final.uvprojx
executable file
·10923 lines (10918 loc) · 495 KB
/
CS_3420_Final.uvprojx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<Project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="project_projx.xsd">
<SchemaVersion>2.1</SchemaVersion>
<Header>### uVision Project, (C) Keil Software</Header>
<Targets>
<Target>
<TargetName>CS_3420_Final</TargetName>
<ToolsetNumber>0x4</ToolsetNumber>
<ToolsetName>ARM-ADS</ToolsetName>
<pCCUsed>5060750::V5.06 update 6 (build 750)::ARMCC</pCCUsed>
<uAC6>0</uAC6>
<TargetOption>
<TargetCommonOption>
<Device>MK64FN1M0xxx12</Device>
<Vendor>NXP</Vendor>
<PackID>Keil.Kinetis_K60_DFP.1.5.0</PackID>
<PackURL>http://www.keil.com/pack/</PackURL>
<Cpu>CPUTYPE("Cortex-M4") FPU2</Cpu>
<FlashUtilSpec></FlashUtilSpec>
<StartupFile></StartupFile>
<FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN0 )</FlashDriverDll>
<DeviceId>0</DeviceId>
<RegisterFile></RegisterFile>
<MemoryEnv></MemoryEnv>
<Cmp></Cmp>
<Asm></Asm>
<Linker></Linker>
<OHString></OHString>
<InfinionOptionDll></InfinionOptionDll>
<SLE66CMisc></SLE66CMisc>
<SLE66AMisc></SLE66AMisc>
<SLE66LinkerMisc></SLE66LinkerMisc>
<SFDFile>$$Device:MK64FN1M0xxx12$SVD\MK64F12.svd</SFDFile>
<bCustSvd>0</bCustSvd>
<UseEnv>0</UseEnv>
<BinPath></BinPath>
<IncludePath></IncludePath>
<LibPath></LibPath>
<RegisterFilePath></RegisterFilePath>
<DBRegisterFilePath></DBRegisterFilePath>
<TargetStatus>
<Error>0</Error>
<ExitCodeStop>0</ExitCodeStop>
<ButtonStop>0</ButtonStop>
<NotGenerated>0</NotGenerated>
<InvalidFlash>1</InvalidFlash>
</TargetStatus>
<OutputDirectory>.\BUILD\</OutputDirectory>
<OutputName>CS_3420_Final</OutputName>
<CreateExecutable>1</CreateExecutable>
<CreateLib>0</CreateLib>
<CreateHexFile>0</CreateHexFile>
<DebugInformation>1</DebugInformation>
<BrowseInformation>0</BrowseInformation>
<ListingPath>.\BUILD\</ListingPath>
<HexFormatSelection>1</HexFormatSelection>
<Merge32K>0</Merge32K>
<CreateBatchFile>0</CreateBatchFile>
<BeforeCompile>
<RunUserProg1>0</RunUserProg1>
<RunUserProg2>0</RunUserProg2>
<UserProg1Name></UserProg1Name>
<UserProg2Name></UserProg2Name>
<UserProg1Dos16Mode>0</UserProg1Dos16Mode>
<UserProg2Dos16Mode>0</UserProg2Dos16Mode>
<nStopU1X>0</nStopU1X>
<nStopU2X>0</nStopU2X>
</BeforeCompile>
<BeforeMake>
<RunUserProg1>0</RunUserProg1>
<RunUserProg2>0</RunUserProg2>
<UserProg1Name></UserProg1Name>
<UserProg2Name></UserProg2Name>
<UserProg1Dos16Mode>0</UserProg1Dos16Mode>
<UserProg2Dos16Mode>0</UserProg2Dos16Mode>
<nStopB1X>0</nStopB1X>
<nStopB2X>0</nStopB2X>
</BeforeMake>
<AfterMake>
<RunUserProg1>0</RunUserProg1>
<RunUserProg2>0</RunUserProg2>
<UserProg1Name></UserProg1Name>
<UserProg2Name></UserProg2Name>
<UserProg1Dos16Mode>0</UserProg1Dos16Mode>
<UserProg2Dos16Mode>0</UserProg2Dos16Mode>
<nStopA1X>0</nStopA1X>
<nStopA2X>0</nStopA2X>
</AfterMake>
<SelectedForBatchBuild>0</SelectedForBatchBuild>
<SVCSIdString></SVCSIdString>
</TargetCommonOption>
<CommonProperty>
<UseCPPCompiler>0</UseCPPCompiler>
<RVCTCodeConst>0</RVCTCodeConst>
<RVCTZI>0</RVCTZI>
<RVCTOtherData>0</RVCTOtherData>
<ModuleSelection>0</ModuleSelection>
<IncludeInBuild>1</IncludeInBuild>
<AlwaysBuild>0</AlwaysBuild>
<GenerateAssemblyFile>0</GenerateAssemblyFile>
<AssembleAssemblyFile>0</AssembleAssemblyFile>
<PublicsOnly>0</PublicsOnly>
<StopOnExitCode>3</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>1</ComprImg>
</CommonProperty>
<DllOption>
<SimDllName></SimDllName>
<SimDllArguments> </SimDllArguments>
<SimDlgDll>DCM.DLL</SimDlgDll>
<SimDlgDllArguments></SimDlgDllArguments>
<TargetDllName>SARMCM3.DLL</TargetDllName>
<TargetDllArguments></TargetDllArguments>
<TargetDlgDll>TCM.DLL</TargetDlgDll>
<TargetDlgDllArguments>-pCM4</TargetDlgDllArguments>
</DllOption>
<DebugOption>
<OPTHX>
<HexSelection>1</HexSelection>
<HexRangeLowAddress>0</HexRangeLowAddress>
<HexRangeHighAddress>0</HexRangeHighAddress>
<HexOffset>0</HexOffset>
<Oh166RecLen>16</Oh166RecLen>
</OPTHX>
</DebugOption>
<Utilities>
<Flash1>
<UseTargetDll>1</UseTargetDll>
<UseExternalTool>0</UseExternalTool>
<RunIndependent>0</RunIndependent>
<UpdateFlashBeforeDebugging>1</UpdateFlashBeforeDebugging>
<Capability>1</Capability>
<DriverSelection>-1</DriverSelection>
</Flash1>
<bUseTDR>1</bUseTDR>
<Flash2>BIN\UL2CM3.DLL</Flash2>
<Flash3></Flash3>
<Flash4></Flash4>
<pFcarmOut></pFcarmOut>
<pFcarmGrp></pFcarmGrp>
<pFcArmRoot></pFcArmRoot>
<FcArmLst>0</FcArmLst>
</Utilities>
<TargetArmAds>
<ArmAdsMisc>
<GenerateListings>0</GenerateListings>
<asHll>1</asHll>
<asAsm>1</asAsm>
<asMacX>1</asMacX>
<asSyms>1</asSyms>
<asFals>1</asFals>
<asDbgD>1</asDbgD>
<asForm>1</asForm>
<ldLst>0</ldLst>
<ldmm>1</ldmm>
<ldXref>1</ldXref>
<BigEnd>0</BigEnd>
<AdsALst>1</AdsALst>
<AdsACrf>1</AdsACrf>
<AdsANop>0</AdsANop>
<AdsANot>0</AdsANot>
<AdsLLst>1</AdsLLst>
<AdsLmap>1</AdsLmap>
<AdsLcgr>1</AdsLcgr>
<AdsLsym>1</AdsLsym>
<AdsLszi>1</AdsLszi>
<AdsLtoi>1</AdsLtoi>
<AdsLsun>1</AdsLsun>
<AdsLven>1</AdsLven>
<AdsLsxf>1</AdsLsxf>
<RvctClst>0</RvctClst>
<GenPPlst>0</GenPPlst>
<AdsCpuType>"Cortex-M4"</AdsCpuType>
<RvctDeviceName></RvctDeviceName>
<mOS>0</mOS>
<uocRom>0</uocRom>
<uocRam>0</uocRam>
<hadIROM>0</hadIROM>
<hadIRAM>0</hadIRAM>
<hadXRAM>0</hadXRAM>
<uocXRam>0</uocXRam>
<RvdsVP>2</RvdsVP>
<RvdsMve>0</RvdsMve>
<hadIRAM2>0</hadIRAM2>
<hadIROM2>0</hadIROM2>
<StupSel>8</StupSel>
<useUlib>0</useUlib>
<EndSel>0</EndSel>
<uLtcg>0</uLtcg>
<nSecure>0</nSecure>
<RoSelD>3</RoSelD>
<RwSelD>3</RwSelD>
<CodeSel>0</CodeSel>
<OptFeed>0</OptFeed>
<NoZi1>0</NoZi1>
<NoZi2>0</NoZi2>
<NoZi3>0</NoZi3>
<NoZi4>0</NoZi4>
<NoZi5>0</NoZi5>
<Ro1Chk>0</Ro1Chk>
<Ro2Chk>0</Ro2Chk>
<Ro3Chk>0</Ro3Chk>
<Ir1Chk>1</Ir1Chk>
<Ir2Chk>0</Ir2Chk>
<Ra1Chk>0</Ra1Chk>
<Ra2Chk>0</Ra2Chk>
<Ra3Chk>0</Ra3Chk>
<Im1Chk>1</Im1Chk>
<Im2Chk>0</Im2Chk>
<OnChipMemories>
<Ocm1>
<Type>0</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</Ocm1>
<Ocm2>
<Type>0</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</Ocm2>
<Ocm3>
<Type>0</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</Ocm3>
<Ocm4>
<Type>0</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</Ocm4>
<Ocm5>
<Type>0</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</Ocm5>
<Ocm6>
<Type>0</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</Ocm6>
<IRAM>
<Type>0</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</IRAM>
<IROM>
<Type>1</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</IROM>
<XRAM>
<Type>0</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</XRAM>
<OCR_RVCT1>
<Type>1</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</OCR_RVCT1>
<OCR_RVCT2>
<Type>1</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</OCR_RVCT2>
<OCR_RVCT3>
<Type>1</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</OCR_RVCT3>
<OCR_RVCT4>
<Type>1</Type>
<StartAddress>0x0</StartAddress>
<Size>0x20000</Size>
</OCR_RVCT4>
<OCR_RVCT5>
<Type>1</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</OCR_RVCT5>
<OCR_RVCT6>
<Type>0</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</OCR_RVCT6>
<OCR_RVCT7>
<Type>0</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</OCR_RVCT7>
<OCR_RVCT8>
<Type>0</Type>
<StartAddress>0x0</StartAddress>
<Size>0x0</Size>
</OCR_RVCT8>
<OCR_RVCT9>
<Type>0</Type>
<StartAddress>0x20000000</StartAddress>
<Size>0x2000</Size>
</OCR_RVCT9>
<OCR_RVCT10>
<Type>0</Type>
<StartAddress>0x1fffe000</StartAddress>
<Size>0x2000</Size>
</OCR_RVCT10>
</OnChipMemories>
<RvctStartVector></RvctStartVector>
</ArmAdsMisc>
<Cads>
<interw>0</interw>
<Optim>1</Optim>
<oTime>0</oTime>
<SplitLS>0</SplitLS>
<OneElfS>1</OneElfS>
<Strict>0</Strict>
<EnumInt>0</EnumInt>
<PlainCh>0</PlainCh>
<Ropi>0</Ropi>
<Rwpi>0</Rwpi>
<wLevel>0</wLevel>
<uThumb>0</uThumb>
<uSurpInc>0</uSurpInc>
<uC99>1</uC99>
<uGnu>0</uGnu>
<useXO>0</useXO>
<v6Lang>4</v6Lang>
<v6LangP>2</v6LangP>
<vShortEn>1</vShortEn>
<vShortWch>1</vShortWch>
<v6Lto>0</v6Lto>
<v6WtE>0</v6WtE>
<v6Rtti>0</v6Rtti>
<VariousControls>
<MiscControls>-fdata-sections -c --target=arm-arm-none-eabi -fshort-enums -fshort-wchar -Wno-armcc-pragma-push-pop -mfpu=fpv4-sp-d16 -mcpu=cortex-m4 -Wno-armcc-pragma-anon-unions -fno-exceptions -mfloat-abi=hard -mthumb -fno-rtti -include mbed_config.h</MiscControls>
<Define>TARGET_PSA DEVICE_SERIAL_ASYNCH=1 __CORTEX_M4 DEVICE_ANALOGIN=1 DEVICE_I2C=1 TOOLCHAIN_ARM TOOLCHAIN_ARM_STD TARGET_LIKE_MBED TARGET_FRDM CPU_MK64FN1M0VMD12 __FPU_PRESENT=1 DEVICE_SPI_ASYNCH=1 DEVICE_RTC=1 __ASSERT_MSG DEVICE_LPTICKER=1 COMPONENT_SD=1 DEVICE_FLASH=1 FEATURE_STORAGE=1 MBEDTLS_PSA_CRYPTO_C MULADDC_CANNOT_USE_R7 TARGET_K64F COMPONENT_FLASHIAP=1 MBED_TRAP_ERRORS_ENABLED=1 TARGET_M4 TARGET_CORTEX DEVICE_I2CSLAVE=1 __MBED_CMSIS_RTOS_CM TARGET_KSDK2_MCUS TARGET_KPSDK_CODE DEVICE_CRC=1 DEVICE_PORTINOUT=1 DEVICE_EMAC=1 TARGET_FF_ARDUINO TARGET_Freescale_EMAC DEVICE_SPISLAVE=1 DEVICE_PORTOUT=1 DEVICE_ANALOGOUT=1 DEVICE_SERIAL_FC=1 DEVICE_PORTIN=1 TARGET_Freescale DEVICE_USBDEVICE=1 DEVICE_USTICKER=1 MBED_RAM_START=0x20000000 COMPONENT_PSA_SRV_IMPL=1 COMPONENT_PSA_SRV_EMUL=1 MBED_RAM_SIZE=0x30000 MBED_RAM1_SIZE=0x10000 DEVICE_SPI=1 __MBED__=1 DEVICE_STORAGE=1 DEVICE_SERIAL=1 TARGET_MCUXpresso_MCUS DEVICE_INTERRUPTIN=1 __CMSIS_RTOS TOOLCHAIN_ARMC6 MBED_BUILD_TIMESTAMP=1558093450.74 DEVICE_SLEEP=1 COMPONENT_NSPE=1 TARGET_NAME=K64F TARGET_MCU_K64F TARGET_RTOS_M4_M7 DEVICE_STDIO_MESSAGES=1 TARGET_RELEASE MBED_RAM1_START=0x1fff0000 MBED_ROM_SIZE=0x100000 TARGET_LIKE_CORTEX_M4 ARM_MATH_CM4 TARGET_CORTEX_M TARGET_KPSDK_MCUS DEVICE_PWMOUT=1 DEVICE_TRNG=1 MBED_ROM_START=0x0 FSL_RTOS_MBED</Define>
<Undefine></Undefine>
<IncludePath>;/RGB_matrix_Panel;/RGB_matrix_Panel/Adafruit-GFX;/usr/src/mbed-sdk;mbed-os;mbed-os/cmsis;mbed-os/cmsis/TARGET_CORTEX_M;mbed-os/components;mbed-os/components/802.15.4_RF;mbed-os/components/802.15.4_RF/atmel-rf-driver;mbed-os/components/802.15.4_RF/atmel-rf-driver/atmel-rf-driver;mbed-os/components/802.15.4_RF/atmel-rf-driver/source;mbed-os/components/802.15.4_RF/mcr20a-rf-driver;mbed-os/components/802.15.4_RF/mcr20a-rf-driver/mcr20a-rf-driver;mbed-os/components/802.15.4_RF/mcr20a-rf-driver/source;mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver;mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/source;mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/stm-s2lp-rf-driver;mbed-os/components/TARGET_PSA;mbed-os/components/TARGET_PSA/inc;mbed-os/components/TARGET_PSA/inc/psa;mbed-os/components/TARGET_PSA/inc/psa_manifest;mbed-os/components/TARGET_PSA/services;mbed-os/components/TARGET_PSA/services/attestation;mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL;mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/tfm_impl;mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/tfm_impl/t_cose;mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/tfm_impl/t_cose/inc;mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/tfm_impl/t_cose/src;mbed-os/components/TARGET_PSA/services/attestation/qcbor;mbed-os/components/TARGET_PSA/services/attestation/qcbor/inc;mbed-os/components/TARGET_PSA/services/attestation/qcbor/src;mbed-os/components/TARGET_PSA/services/attestation/qcbor/test;mbed-os/components/TARGET_PSA/services/crypto;mbed-os/components/TARGET_PSA/services/platform;mbed-os/components/TARGET_PSA/services/platform/COMPONENT_PSA_SRV_IMPL;mbed-os/components/TARGET_PSA/services/storage;mbed-os/components/TARGET_PSA/services/storage/common;mbed-os/components/TARGET_PSA/services/storage/its;mbed-os/components/TARGET_PSA/services/storage/its/COMPONENT_PSA_SRV_IMPL;mbed-os/components/storage/blockdevice/COMPONENT_FLASHIAP;mbed-os/components/storage/blockdevice/COMPONENT_FLASHIAP/COMMON;mbed-os/components/storage/blockdevice/COMPONENT_SD;mbed-os/components/wifi;mbed-os/components/wifi/esp8266-driver;mbed-os/components/wifi/esp8266-driver/ESP8266;mbed-os/drivers;mbed-os/events;mbed-os/events/equeue;mbed-os/features;mbed-os/features/cellular;mbed-os/features/cellular/framework;mbed-os/features/cellular/framework/API;mbed-os/features/cellular/framework/AT;mbed-os/features/cellular/framework/common;mbed-os/features/cellular/framework/device;mbed-os/features/cellular/framework/targets;mbed-os/features/cellular/framework/targets/GEMALTO;mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION;mbed-os/features/cellular/framework/targets/GENERIC;mbed-os/features/cellular/framework/targets/GENERIC/GENERIC_AT3GPP;mbed-os/features/cellular/framework/targets/MultiTech;mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano;mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP;mbed-os/features/cellular/framework/targets/QUECTEL;mbed-os/features/cellular/framework/targets/QUECTEL/BC95;mbed-os/features/cellular/framework/targets/QUECTEL/BG96;mbed-os/features/cellular/framework/targets/QUECTEL/M26;mbed-os/features/cellular/framework/targets/QUECTEL/UG96;mbed-os/features/cellular/framework/targets/TELIT;mbed-os/features/cellular/framework/targets/TELIT/HE910;mbed-os/features/cellular/framework/targets/UBLOX;mbed-os/features/cellular/framework/targets/UBLOX/AT;mbed-os/features/cellular/framework/targets/UBLOX/N2XX;mbed-os/features/cellular/framework/targets/UBLOX/PPP;mbed-os/features/device_key;mbed-os/features/device_key/source;mbed-os/features/frameworks;mbed-os/features/frameworks/TARGET_PSA;mbed-os/features/frameworks/TARGET_PSA/pal;mbed-os/features/frameworks/greentea-client;mbed-os/features/frameworks/greentea-client/greentea-client;mbed-os/features/frameworks/mbed-client-cli;mbed-os/features/frameworks/mbed-client-cli/mbed-client-cli;mbed-os/features/frameworks/mbed-client-randlib;mbed-os/features/frameworks/mbed-client-randlib/mbed-client-randlib;mbed-os/features/frameworks/mbed-client-randlib/mbed-client-randlib/platform;mbed-os/features/frameworks/mbed-coap;mbed-os/features/frameworks/mbed-coap/mbed-coap;mbed-os/features/frameworks/mbed-coap/source;mbed-os/features/frameworks/mbed-coap/source/include;mbed-os/features/frameworks/mbed-trace;mbed-os/features/frameworks/mbed-trace/mbed-trace;mbed-os/features/frameworks/nanostack-libservice;mbed-os/features/frameworks/nanostack-libservice/mbed-client-libservice;mbed-os/features/frameworks/nanostack-libservice/mbed-client-libservice/platform;mbed-os/features/frameworks/unity;mbed-os/features/frameworks/unity/unity;mbed-os/features/frameworks/utest;mbed-os/features/frameworks/utest/utest;mbed-os/features/lorawan;mbed-os/features/lorawan/lorastack;mbed-os/features/lorawan/lorastack/mac;mbed-os/features/lorawan/lorastack/phy;mbed-os/features/lorawan/system;mbed-os/features/lwipstack;mbed-os/features/lwipstack/lwip;mbed-os/features/lwipstack/lwip-sys;mbed-os/features/lwipstack/lwip-sys/arch;mbed-os/features/lwipstack/lwip/src;mbed-os/features/lwipstack/lwip/src/include;mbed-os/features/lwipstack/lwip/src/include/lwip;mbed-os/features/lwipstack/lwip/src/include/lwip/priv;mbed-os/features/lwipstack/lwip/src/include/lwip/prot;mbed-os/features/lwipstack/lwip/src/include/netif;mbed-os/features/lwipstack/lwip/src/include/netif/ppp;mbed-os/features/lwipstack/lwip/src/include/netif/ppp/polarssl;mbed-os/features/mbedtls;mbed-os/features/mbedtls/inc;mbed-os/features/mbedtls/inc/mbedtls;mbed-os/features/mbedtls/mbed-crypto;mbed-os/features/mbedtls/mbed-crypto/inc;mbed-os/features/mbedtls/mbed-crypto/inc/psa;mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL;mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/COMPONENT_NSPE;mbed-os/features/mbedtls/platform;mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL;mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/inc;mbed-os/features/mbedtls/platform/inc;mbed-os/features/nanostack;mbed-os/features/nanostack/coap-service;mbed-os/features/nanostack/coap-service/coap-service;mbed-os/features/nanostack/coap-service/source;mbed-os/features/nanostack/coap-service/source/include;mbed-os/features/nanostack/mbed-mesh-api;mbed-os/features/nanostack/mbed-mesh-api/mbed-mesh-api;mbed-os/features/nanostack/mbed-mesh-api/source;mbed-os/features/nanostack/mbed-mesh-api/source/include;mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos;mbed-os/features/nanostack/nanostack-interface;mbed-os/features/nanostack/sal-stack-nanostack;mbed-os/features/nanostack/sal-stack-nanostack-eventloop;mbed-os/features/nanostack/sal-stack-nanostack-eventloop/nanostack-event-loop;mbed-os/features/nanostack/sal-stack-nanostack-eventloop/nanostack-event-loop/platform;mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source;mbed-os/features/nanostack/sal-stack-nanostack/nanostack;mbed-os/features/nanostack/sal-stack-nanostack/nanostack/platform;mbed-os/features/nanostack/sal-stack-nanostack/source;mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN;mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps;mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Fragmentation;mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode;mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC;mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Mesh;mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ND;mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/NVM;mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread;mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ws;mbed-os/features/nanostack/sal-stack-nanostack/source/BorderRouter;mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols;mbed-os/features/nanostack/sal-stack-nanostack/source/Core;mbed-os/features/nanostack/sal-stack-nanostack/source/Core/include;mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_Server;mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_client;mbed-os/features/nanostack/sal-stack-nanostack/source/MAC;mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4;mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/virtual_rf;mbed-os/features/nanostack/sal-stack-nanostack/source/MLE;mbed-os/features/nanostack/sal-stack-nanostack/source/MPL;mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE;mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/Include;mbed-os/features/nanostack/sal-stack-nanostack/source/RPL;mbed-os/features/nanostack/sal-stack-nanostack/source/Security;mbed-os/features/nanostack/sal-stack-nanostack/source/Security/Common;mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA;mbed-os/features/nanostack/sal-stack-nanostack/source/Security/TLS;mbed-os/features/nanostack/sal-stack-nanostack/source/Security/eapol;mbed-os/features/nanostack/sal-stack-nanostack/source/Security/kmp;mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols;mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols/eap_tls_sec_prot;mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols/fwh_sec_prot;mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols/gkh_sec_prot;mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols/key_sec_prot;mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols/tls_sec_prot;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Neighbor_cache;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Trickle;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/blacklist;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/etx;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fnv_hash;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/hmac;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/ieee_802_11;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/load_balance;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mac_neighbor_table;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/compiler;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/cpu;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/dns;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/poll;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/serial;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/nd_proxy;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/nist_aes_kw;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/pan_blacklist;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils;mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/whiteboard;mbed-os/features/nanostack/sal-stack-nanostack/source/configs;mbed-os/features/nanostack/sal-stack-nanostack/source/configs/base;mbed-os/features/nanostack/sal-stack-nanostack/source/ipv6_stack;mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6;mbed-os/features/nanostack/sal-stack-nanostack/source/libNET;mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src;mbed-os/features/netsocket;mbed-os/features/netsocket/cellular;mbed-os/features/netsocket/emac-drivers/TARGET_Freescale_EMAC;mbed-os/features/nfc;mbed-os/features/nfc/acore;mbed-os/features/nfc/acore/acore;mbed-os/features/nfc/controllers;mbed-os/features/nfc/nfc;mbed-os/features/nfc/nfc/ndef;mbed-os/features/nfc/nfc/ndef/common;mbed-os/features/nfc/stack;mbed-os/features/nfc/stack/ndef;mbed-os/features/nfc/stack/platform;mbed-os/features/nfc/stack/tech;mbed-os/features/nfc/stack/tech/iso7816;mbed-os/features/nfc/stack/tech/isodep;mbed-os/features/nfc/stack/tech/type4;mbed-os/features/nfc/stack/transceiver;mbed-os/features/nfc/stack/transceiver/pn512;mbed-os/features/storage;mbed-os/features/storage/FEATURE_STORAGE;mbed-os/features/storage/FEATURE_STORAGE/cfstore;mbed-os/features/storage/FEATURE_STORAGE/cfstore/configuration-store;mbed-os/features/storage/FEATURE_STORAGE/cfstore/source;mbed-os/features/storage/FEATURE_STORAGE/flash-journal;mbed-os/features/storage/FEATURE_STORAGE/flash-journal/flash-journal-strategy-sequential;mbed-os/features/storage/FEATURE_STORAGE/storage-volume-manager;mbed-os/features/storage/FEATURE_STORAGE/storage-volume-manager/storage-volume-manager;mbed-os/features/storage/blockdevice;mbed-os/features/storage/filesystem;mbed-os/features/storage/filesystem/fat;mbed-os/features/storage/filesystem/fat/ChaN;mbed-os/features/storage/filesystem/littlefs;mbed-os/features/storage/filesystem/littlefs/littlefs;mbed-os/features/storage/kvstore;mbed-os/features/storage/kvstore/conf;mbed-os/features/storage/kvstore/direct_access_devicekey;mbed-os/features/storage/kvstore/filesystemstore;mbed-os/features/storage/kvstore/global_api;mbed-os/features/storage/kvstore/include;mbed-os/features/storage/kvstore/kv_map;mbed-os/features/storage/kvstore/securestore;mbed-os/features/storage/kvstore/tdbstore;mbed-os/features/storage/nvstore;mbed-os/features/storage/nvstore/source;mbed-os/features/storage/system_storage;mbed-os/hal;mbed-os/hal/storage_abstraction;mbed-os/platform;mbed-os/rtos;mbed-os/rtos/TARGET_CORTEX;mbed-os/rtos/TARGET_CORTEX/rtx4;mbed-os/rtos/TARGET_CORTEX/rtx5;mbed-os/rtos/TARGET_CORTEX/rtx5/Include;mbed-os/rtos/TARGET_CORTEX/rtx5/RTX;mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Config;mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Include;mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source;mbed-os/targets/TARGET_Freescale;mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS;mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F;mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/TARGET_FRDM;mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/device;mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_MCU_K64F/drivers;mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api;mbed-os/usb;mbed-os/usb/device;mbed-os/usb/device/USBAudio;mbed-os/usb/device/USBDevice;mbed-os/usb/device/USBHID;mbed-os/usb/device/USBMIDI;mbed-os/usb/device/USBMSD;mbed-os/usb/device/USBPhy;mbed-os/usb/device/USBSerial;mbed-os/usb/device/hal;mbed-os/usb/device/targets/TARGET_Freescale;mbed-os/usb/device/utilities;mbed-os/usb/device/utilities/events</IncludePath>
</VariousControls>
</Cads>
<Aads>
<interw>0</interw>
<Ropi>0</Ropi>
<Rwpi>0</Rwpi>
<thumb>0</thumb>
<SplitLS>0</SplitLS>
<SwStkChk>0</SwStkChk>
<NoWarn>0</NoWarn>
<uSurpInc>0</uSurpInc>
<useXO>0</useXO>
<uClangAs>0</uClangAs>
<VariousControls>
<MiscControls>--cpreproc --cpreproc_opts=-D__ASSERT_MSG,-D__CORTEX_M4,-DCPU_MK64FN1M0VMD12,-DARM_MATH_CM4,-D__FPU_PRESENT=1,-D__MBED_CMSIS_RTOS_CM,-D__CMSIS_RTOS,-DFSL_RTOS_MBED,-DMBEDTLS_PSA_CRYPTO_C</MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath></IncludePath>
</VariousControls>
</Aads>
<LDads>
<umfTarg>0</umfTarg>
<Ropi>0</Ropi>
<Rwpi>0</Rwpi>
<noStLib>0</noStLib>
<RepFail>0</RepFail>
<useFile>0</useFile>
<TextAddressRange>0</TextAddressRange>
<DataAddressRange>0</DataAddressRange>
<pXoBase></pXoBase>
<ScatterFile>.\mbed-os\targets\TARGET_Freescale\TARGET_MCUXpresso_MCUS\TARGET_MCU_K64F\device\TOOLCHAIN_ARM_STD\MK64FN1M0xxx12.sct</ScatterFile>
<IncludeLibs></IncludeLibs>
<IncludeLibsPath></IncludeLibsPath>
<Misc>--show_full_path --predefine="-DMBED_BOOT_STACK_SIZE=1024" --predefine="-DMBED_RAM_START=0x20000000" --predefine="-DMBED_ROM_SIZE=0x100000" --predefine="-DMBED_RAM1_START=0x1fff0000" --predefine="-DMBED_ROM_START=0x0" --predefine="-DMBED_RAM1_SIZE=0x10000" --cpu=cortex-m4 --predefine="-DMBED_RAM_SIZE=0x30000" --keep=os_cb_sections --legacyalign</Misc>
<LinkerInputFile></LinkerInputFile>
<DisabledWarnings></DisabledWarnings>
</LDads>
</TargetArmAds>
</TargetOption>
<Groups>
<Group>
<GroupName>CS_3420_Final</GroupName>
<GroupOption>
<CommonProperty>
<UseCPPCompiler>0</UseCPPCompiler>
<RVCTCodeConst>0</RVCTCodeConst>
<RVCTZI>0</RVCTZI>
<RVCTOtherData>0</RVCTOtherData>
<ModuleSelection>0</ModuleSelection>
<IncludeInBuild>2</IncludeInBuild>
<AlwaysBuild>2</AlwaysBuild>
<GenerateAssemblyFile>2</GenerateAssemblyFile>
<AssembleAssemblyFile>2</AssembleAssemblyFile>
<PublicsOnly>2</PublicsOnly>
<StopOnExitCode>11</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>1</ComprImg>
</CommonProperty>
<GroupArmAds>
<Cads>
<interw>2</interw>
<Optim>0</Optim>
<oTime>2</oTime>
<SplitLS>2</SplitLS>
<OneElfS>2</OneElfS>
<Strict>2</Strict>
<EnumInt>2</EnumInt>
<PlainCh>2</PlainCh>
<Ropi>2</Ropi>
<Rwpi>2</Rwpi>
<wLevel>0</wLevel>
<uThumb>2</uThumb>
<uSurpInc>2</uSurpInc>
<uC99>2</uC99>
<uGnu>2</uGnu>
<useXO>2</useXO>
<v6Lang>0</v6Lang>
<v6LangP>0</v6LangP>
<vShortEn>2</vShortEn>
<vShortWch>2</vShortWch>
<v6Lto>2</v6Lto>
<v6WtE>2</v6WtE>
<v6Rtti>2</v6Rtti>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath>.\mbed-os</IncludePath>
</VariousControls>
</Cads>
<Aads>
<interw>2</interw>
<Ropi>2</Ropi>
<Rwpi>2</Rwpi>
<thumb>2</thumb>
<SplitLS>2</SplitLS>
<SwStkChk>2</SwStkChk>
<NoWarn>2</NoWarn>
<uSurpInc>2</uSurpInc>
<useXO>2</useXO>
<uClangAs>2</uClangAs>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath></IncludePath>
</VariousControls>
</Aads>
</GroupArmAds>
</GroupOption>
<Files>
<File>
<FileName>joystick.cpp</FileName>
<FileType>8</FileType>
<FilePath>joystick.cpp</FilePath>
</File>
<File>
<FileName>joystick.h</FileName>
<FileType>5</FileType>
<FilePath>joystick.h</FilePath>
</File>
<File>
<FileName>main.cpp</FileName>
<FileType>8</FileType>
<FilePath>main.cpp</FilePath>
<FileOption>
<CommonProperty>
<UseCPPCompiler>2</UseCPPCompiler>
<RVCTCodeConst>0</RVCTCodeConst>
<RVCTZI>0</RVCTZI>
<RVCTOtherData>0</RVCTOtherData>
<ModuleSelection>0</ModuleSelection>
<IncludeInBuild>2</IncludeInBuild>
<AlwaysBuild>2</AlwaysBuild>
<GenerateAssemblyFile>2</GenerateAssemblyFile>
<AssembleAssemblyFile>2</AssembleAssemblyFile>
<PublicsOnly>2</PublicsOnly>
<StopOnExitCode>11</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>1</ComprImg>
</CommonProperty>
<FileArmAds>
<Cads>
<interw>2</interw>
<Optim>0</Optim>
<oTime>2</oTime>
<SplitLS>2</SplitLS>
<OneElfS>2</OneElfS>
<Strict>2</Strict>
<EnumInt>2</EnumInt>
<PlainCh>2</PlainCh>
<Ropi>2</Ropi>
<Rwpi>2</Rwpi>
<wLevel>0</wLevel>
<uThumb>2</uThumb>
<uSurpInc>2</uSurpInc>
<uC99>2</uC99>
<uGnu>2</uGnu>
<useXO>2</useXO>
<v6Lang>0</v6Lang>
<v6LangP>0</v6LangP>
<vShortEn>2</vShortEn>
<vShortWch>2</vShortWch>
<v6Lto>2</v6Lto>
<v6WtE>2</v6WtE>
<v6Rtti>2</v6Rtti>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath>.\mbed-os;.\RGB_matrix_Panel;.\RGB_matrix_Panel\Adafruit-GFX</IncludePath>
</VariousControls>
</Cads>
</FileArmAds>
</FileOption>
</File>
<File>
<FileName>mbed_config.h</FileName>
<FileType>5</FileType>
<FilePath>mbed_config.h</FilePath>
</File>
</Files>
</Group>
<Group>
<GroupName>mbed-os</GroupName>
<Files>
<File>
<FileName>6lowpan_iphc.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/6lowpan_iphc.c</FilePath>
</File>
<File>
<FileName>ac_buffer.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nfc/acore/source/ac_buffer.c</FilePath>
</File>
<File>
<FileName>ac_buffer.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nfc/acore/acore/ac_buffer.h</FilePath>
</File>
<File>
<FileName>ac_buffer_builder.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nfc/acore/source/ac_buffer_builder.c</FilePath>
</File>
<File>
<FileName>ac_buffer_builder.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nfc/acore/acore/ac_buffer_builder.h</FilePath>
</File>
<File>
<FileName>ac_buffer_reader.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nfc/acore/source/ac_buffer_reader.c</FilePath>
</File>
<File>
<FileName>ac_buffer_reader.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nfc/acore/acore/ac_buffer_reader.h</FilePath>
</File>
<File>
<FileName>ac_debug.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nfc/acore/acore/ac_debug.h</FilePath>
</File>
<File>
<FileName>ac_macros.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nfc/acore/acore/ac_macros.h</FilePath>
</File>
<File>
<FileName>ac_stream.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nfc/acore/source/ac_stream.c</FilePath>
</File>
<File>
<FileName>ac_stream.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nfc/acore/acore/ac_stream.h</FilePath>
</File>
<File>
<FileName>adaptation_interface.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/adaptation_interface.c</FilePath>
</File>
<File>
<FileName>aes.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/mbedtls/src/aes.c</FilePath>
</File>
<File>
<FileName>aes.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/mbedtls/inc/mbedtls/aes.h</FilePath>
</File>
<File>
<FileName>aes_mbedtls_adapter.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/CCM_lib/mbedOS/aes_mbedtls_adapter.c</FilePath>
</File>
<File>
<FileName>aesni.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/mbedtls/src/aesni.c</FilePath>
</File>
<File>
<FileName>aesni.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/mbedtls/inc/mbedtls/aesni.h</FilePath>
</File>
<File>
<FileName>AnalogIn.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/drivers/AnalogIn.cpp</FilePath>
</File>
<File>
<FileName>AnalogIn.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/drivers/AnalogIn.h</FilePath>
</File>
<File>
<FileName>analogin_api.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogin_api.c</FilePath>
</File>
<File>
<FileName>analogin_api.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/hal/analogin_api.h</FilePath>
</File>
<File>
<FileName>AnalogOut.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/drivers/AnalogOut.h</FilePath>
</File>
<File>
<FileName>analogout_api.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogout_api.c</FilePath>
</File>
<File>
<FileName>analogout_api.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/hal/analogout_api.h</FilePath>
</File>
<File>
<FileName>api.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/lwipstack/lwip/src/include/lwip/api.h</FilePath>
</File>
<File>
<FileName>api_msg.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/lwipstack/lwip/src/include/lwip/priv/api_msg.h</FilePath>
</File>
<File>
<FileName>APN_db.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/cellular/framework/common/APN_db.h</FilePath>
</File>
<File>
<FileName>arc4.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/mbedtls/src/arc4.c</FilePath>
</File>
<File>
<FileName>arc4.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/lwipstack/lwip/src/include/netif/ppp/polarssl/arc4.h</FilePath>
</File>
<File>
<FileName>arc4.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/mbedtls/inc/mbedtls/arc4.h</FilePath>
</File>
<File>
<FileName>arch.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/lwipstack/lwip/src/include/lwip/arch.h</FilePath>
</File>
<File>
<FileName>aria.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/mbedtls/src/aria.c</FilePath>
</File>
<File>
<FileName>aria.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/mbedtls/inc/mbedtls/aria.h</FilePath>
</File>
<File>
<FileName>arm_hal_aes.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack/nanostack/platform/arm_hal_aes.h</FilePath>
</File>
<File>
<FileName>arm_hal_fhss_timer.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_fhss_timer.cpp</FilePath>
</File>
<File>
<FileName>arm_hal_interrupt.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_interrupt.c</FilePath>
</File>
<File>
<FileName>arm_hal_interrupt.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/frameworks/nanostack-libservice/mbed-client-libservice/platform/arm_hal_interrupt.h</FilePath>
</File>
<File>
<FileName>arm_hal_interrupt_private.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_interrupt_private.h</FilePath>
</File>
<File>
<FileName>arm_hal_nvm.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/frameworks/nanostack-libservice/mbed-client-libservice/platform/arm_hal_nvm.h</FilePath>
</File>
<File>
<FileName>arm_hal_phy.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack/nanostack/platform/arm_hal_phy.h</FilePath>
</File>
<File>
<FileName>arm_hal_random.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_random.c</FilePath>
</File>
<File>
<FileName>arm_hal_random.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/frameworks/mbed-client-randlib/mbed-client-randlib/platform/arm_hal_random.h</FilePath>
</File>
<File>
<FileName>arm_hal_timer.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_timer.cpp</FilePath>
</File>
<File>
<FileName>arm_hal_timer.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack-eventloop/nanostack-event-loop/platform/arm_hal_timer.h</FilePath>
</File>
<File>
<FileName>arm_math.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/cmsis/TARGET_CORTEX_M/arm_math.h</FilePath>
</File>
<File>
<FileName>asn1.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/mbedtls/inc/mbedtls/asn1.h</FilePath>
</File>
<File>
<FileName>asn1parse.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/mbedtls/src/asn1parse.c</FilePath>
</File>
<File>
<FileName>asn1write.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/mbedtls/src/asn1write.c</FilePath>
</File>
<File>
<FileName>asn1write.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/mbedtls/inc/mbedtls/asn1write.h</FilePath>
</File>
<File>
<FileName>AsyncOp.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/usb/device/utilities/AsyncOp.cpp</FilePath>
</File>
<File>
<FileName>AsyncOp.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/usb/device/utilities/AsyncOp.h</FilePath>
</File>
<File>
<FileName>at24mac.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/components/802.15.4_RF/atmel-rf-driver/source/at24mac.cpp</FilePath>
</File>
<File>
<FileName>at24mac.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/components/802.15.4_RF/atmel-rf-driver/source/at24mac.h</FilePath>
</File>
<File>
<FileName>AT86RFReg.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/components/802.15.4_RF/atmel-rf-driver/source/AT86RFReg.h</FilePath>
</File>
<File>
<FileName>AT_CellularBase.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularBase.cpp</FilePath>
</File>
<File>
<FileName>AT_CellularBase.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularBase.h</FilePath>
</File>
<File>
<FileName>AT_CellularContext.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularContext.cpp</FilePath>
</File>
<File>
<FileName>AT_CellularContext.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularContext.h</FilePath>
</File>
<File>
<FileName>AT_CellularDevice.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularDevice.cpp</FilePath>
</File>
<File>
<FileName>AT_CellularDevice.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularDevice.h</FilePath>
</File>
<File>
<FileName>AT_CellularInformation.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularInformation.cpp</FilePath>
</File>
<File>
<FileName>AT_CellularInformation.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularInformation.h</FilePath>
</File>
<File>
<FileName>AT_CellularNetwork.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularNetwork.cpp</FilePath>
</File>
<File>
<FileName>AT_CellularNetwork.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularNetwork.h</FilePath>
</File>
<File>
<FileName>AT_CellularSMS.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularSMS.cpp</FilePath>
</File>
<File>
<FileName>AT_CellularSMS.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularSMS.h</FilePath>
</File>
<File>
<FileName>AT_CellularStack.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularStack.cpp</FilePath>
</File>
<File>
<FileName>AT_CellularStack.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_CellularStack.h</FilePath>
</File>
<File>
<FileName>AT_ControlPlane_netif.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_ControlPlane_netif.cpp</FilePath>
</File>
<File>
<FileName>AT_ControlPlane_netif.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/AT_ControlPlane_netif.h</FilePath>
</File>
<File>
<FileName>ATCmdParser.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/platform/ATCmdParser.cpp</FilePath>
</File>
<File>
<FileName>ATCmdParser.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/platform/ATCmdParser.h</FilePath>
</File>
<File>
<FileName>ATHandler.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/ATHandler.cpp</FilePath>
</File>
<File>
<FileName>ATHandler.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/ATHandler.h</FilePath>
</File>
<File>
<FileName>ATHandler_factory.cpp</FileName>
<FileType>8</FileType>
<FilePath>mbed-os/features/cellular/framework/AT/ATHandler_factory.cpp</FilePath>
</File>
<File>
<FileName>attest_boot_status_loader.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/attest_boot_status_loader.c</FilePath>
</File>
<File>
<FileName>attest_crypto.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/attest_crypto.c</FilePath>
</File>
<File>
<FileName>attest_crypto_keys.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/attest_crypto_keys.c</FilePath>
</File>
<File>
<FileName>attest_eat_defines.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/tfm_impl/attest_eat_defines.h</FilePath>
</File>
<File>
<FileName>attest_iat_claims_loader.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/attest_iat_claims_loader.c</FilePath>
</File>
<File>
<FileName>attest_token.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/tfm_impl/attest_token.c</FilePath>
</File>
<File>
<FileName>attest_token.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/tfm_impl/attest_token.h</FilePath>
</File>
<File>
<FileName>attestation.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/components/TARGET_PSA/services/attestation/attestation.h</FilePath>
</File>
<File>
<FileName>attestation_bootloader_data.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/attestation_bootloader_data.c</FilePath>
</File>
<File>
<FileName>attestation_bootloader_data.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/attestation_bootloader_data.h</FilePath>
</File>
<File>
<FileName>attestation_core.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/components/TARGET_PSA/services/attestation/COMPONENT_PSA_SRV_IMPL/tfm_impl/attestation_core.c</FilePath>
</File>
<File>
<FileName>auth_eap_tls_sec_prot.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols/eap_tls_sec_prot/auth_eap_tls_sec_prot.c</FilePath>
</File>
<File>
<FileName>auth_eap_tls_sec_prot.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols/eap_tls_sec_prot/auth_eap_tls_sec_prot.h</FilePath>
</File>
<File>
<FileName>auth_fwh_sec_prot.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols/fwh_sec_prot/auth_fwh_sec_prot.c</FilePath>
</File>
<File>
<FileName>auth_fwh_sec_prot.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols/fwh_sec_prot/auth_fwh_sec_prot.h</FilePath>
</File>
<File>
<FileName>auth_gkh_sec_prot.c</FileName>
<FileType>1</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols/gkh_sec_prot/auth_gkh_sec_prot.c</FilePath>
</File>
<File>
<FileName>auth_gkh_sec_prot.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/nanostack/sal-stack-nanostack/source/Security/protocols/gkh_sec_prot/auth_gkh_sec_prot.h</FilePath>
</File>
<File>
<FileName>autoip.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/lwipstack/lwip/src/include/lwip/autoip.h</FilePath>
</File>
<File>
<FileName>autoip.h</FileName>
<FileType>5</FileType>
<FilePath>mbed-os/features/lwipstack/lwip/src/include/lwip/prot/autoip.h</FilePath>
</File>
<File>