-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtestsubmodule.uvprojx
7202 lines (7197 loc) · 326 KB
/
testsubmodule.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>testsubmodule</TargetName>
<ToolsetNumber>0x4</ToolsetNumber>
<ToolsetName>ARM-ADS</ToolsetName>
<pCCUsed>5060750::V5.06 update 6 (build 750)::ARMCC</pCCUsed>
<uAC6>0</uAC6>
<TargetOption>
<TargetCommonOption>
<Device>STM32L072CZ</Device>
<Vendor>STMicroelectronics</Vendor>
<PackID>Keil.STM32L0xx_DFP.2.0.0</PackID>
<PackURL>http://www.keil.com/pack/</PackURL>
<Cpu>CPUTYPE("Cortex-M0+") </Cpu>
<FlashUtilSpec></FlashUtilSpec>
<StartupFile></StartupFile>
<FlashDriverDll>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0stm32l0xx_192 -FS008000000 -FL000030000 -FP0($$Device:STM32L072CZ$CMSIS/Flash/STM32L0xx_192.FLM))</FlashDriverDll>
<DeviceId>0</DeviceId>
<RegisterFile>$$Device:STM32L072CZ$Drivers/CMSIS/Device/ST/STM32L0xx/Include/stm32l0xx.h</RegisterFile>
<MemoryEnv></MemoryEnv>
<Cmp></Cmp>
<Asm></Asm>
<Linker></Linker>
<OHString></OHString>
<InfinionOptionDll></InfinionOptionDll>
<SLE66CMisc></SLE66CMisc>
<SLE66AMisc></SLE66AMisc>
<SLE66LinkerMisc></SLE66LinkerMisc>
<SFDFile>$$Device:STM32L072CZ$CMSIS/SVD/STM32L07x.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>testsubmodule</OutputName>
<CreateExecutable>1</CreateExecutable>
<CreateLib>0</CreateLib>
<CreateHexFile>0</CreateHexFile>
<DebugInformation>1</DebugInformation>
<BrowseInformation>1</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>-pCM0</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>4096</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-M0+"</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>0</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>0x30000</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>0x5000</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>0</Optim>
<oTime>0</oTime>
<SplitLS>0</SplitLS>
<OneElfS>0</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>1</v6Lang>
<v6LangP>1</v6LangP>
<vShortEn>1</vShortEn>
<vShortWch>1</vShortWch>
<v6Lto>0</v6Lto>
<v6WtE>0</v6WtE>
<v6Rtti>0</v6Rtti>
<VariousControls>
<MiscControls>-DDEVICE_RTC=1 -DDEVICE_SLEEP=1 --no_rtti -DTOOLCHAIN_ARM_STD --preinclude=mbed_config.h -D__CORTEX_M0PLUS --split_sections -DTARGET_DISCO_L072CZ_LRWAN1 -D__ASSERT_MSG -DDEVICE_PORTINOUT=1 -DTARGET_FF_MORPHO -g -DTARGET_STM32L072CZ -DTARGET_FF_ARDUINO -c -DTARGET_M0P -DDEVICE_SPISLAVE=1 -DDEVICE_PORTOUT=1 -DDEVICE_FLASH=1 -DDEVICE_STDIO_MESSAGES=1 -DDEVICE_ANALOGOUT=1 -DTARGET_LIKE_MBED -DDEVICE_SERIAL_FC=1 -DTARGET_LIKE_CORTEX_M0 -DDEVICE_SERIAL=1 -DDEVICE_ANALOGIN=1 -DDEVICE_I2C_ASYNCH=1 -DDEVICE_PORTIN=1 -DTARGET_CORTEX_M -DARM_MATH_CM0PLUS --cpu=Cortex-M0 --apcs=interwork -DDEVICE_USTICKER=1 -DDEVICE_I2C=1 -DMBED_BUILD_TIMESTAMP=1536149535.65 -DDEVICE_TRNG=1 -DTARGET_STM -DTOOLCHAIN_ARM -DDEVICE_INTERRUPTIN=1 --restrict --no_depend_system_headers -DTARGET_UVISOR_UNSUPPORTED --md -DDEVICE_PWMOUT=1 -DDEVICE_SERIAL_ASYNCH=1 --multibyte_chars --gnu --brief_diagnostics -DTARGET_DEBUG -DTARGET_FAMILY_STM32 -DDEVICE_SPI=1 -D__MBED__=1 -DTARGET_STM32L0 -DTARGET_STM32L072xZ -DLPTICKER_DELAY_TICKS=3 -DDEVICE_LPTICKER=1 -DMBED_TRAP_ERRORS_ENABLED=1 -DTARGET_STM32L072xx -DMBED_DEBUG -DTARGET_CORTEX -DDEVICE_I2CSLAVE=1 -D__CMSIS_RTOS -DDEVICE_SPI_ASYNCH=1 -DTRANSACTION_QUEUE_SIZE_SPI=2 -D__MBED_CMSIS_RTOS_CM</MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath>.;DebugConfig;mbed-os;mbed-os\cmsis;mbed-os\cmsis\TARGET_CORTEX_M;mbed-os\drivers;mbed-os\events;mbed-os\events\equeue;mbed-os\features;mbed-os\features\cellular;mbed-os\features\cellular\easy_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\targets;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\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\PPP;mbed-os\features\cryptocell;mbed-os\features\device_key;mbed-os\features\device_key\source;mbed-os\features\filesystem;mbed-os\features\filesystem\bd;mbed-os\features\filesystem\fat;mbed-os\features\filesystem\fat\ChaN;mbed-os\features\filesystem\littlefs;mbed-os\features\filesystem\littlefs\littlefs;mbed-os\features\frameworks;mbed-os\features\frameworks\greentea-client;mbed-os\features\frameworks\greentea-client\greentea-client;mbed-os\features\frameworks\greentea-client\source;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-client-randlib\source;mbed-os\features\frameworks\mbed-coap;mbed-os\features\frameworks\mbed-coap\doxygen;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\mbed-trace\source;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\nanostack-libservice\source;mbed-os\features\frameworks\nanostack-libservice\source\IPv6_fcf_lib;mbed-os\features\frameworks\nanostack-libservice\source\libBits;mbed-os\features\frameworks\nanostack-libservice\source\libip6string;mbed-os\features\frameworks\nanostack-libservice\source\libList;mbed-os\features\frameworks\nanostack-libservice\source\libTrace;mbed-os\features\frameworks\nanostack-libservice\source\libTrace\scripts;mbed-os\features\frameworks\nanostack-libservice\source\nsdynmemLIB;mbed-os\features\frameworks\nanostack-libservice\source\nvmHelper;mbed-os\features\frameworks\unity;mbed-os\features\frameworks\unity\source;mbed-os\features\frameworks\unity\unity;mbed-os\features\frameworks\utest;mbed-os\features\frameworks\utest\source;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\mbedtls;mbed-os\features\mbedtls\importer;mbed-os\features\mbedtls\inc;mbed-os\features\mbedtls\inc\mbedtls;mbed-os\features\mbedtls\platform;mbed-os\features\mbedtls\platform\inc;mbed-os\features\mbedtls\platform\src;mbed-os\features\mbedtls\src;mbed-os\features\mbedtls\targets;mbed-os\features\mbedtls\targets\TARGET_STM;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-hal-mbed-cmsis-rtos\cs_nvm;mbed-os\features\nanostack\nanostack-hal-mbed-cmsis-rtos\nvm;mbed-os\features\nanostack\nanostack-interface;mbed-os\features\nanostack\sal-stack-nanostack;mbed-os\features\nanostack\sal-stack-nanostack\docs;mbed-os\features\nanostack\sal-stack-nanostack\docs\img;mbed-os\features\nanostack\sal-stack-nanostack\doxygen;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\Bootstraps\Generic;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\BorderRouter;mbed-os\features\nanostack\sal-stack-nanostack\source\Common_Protocols;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\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\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\nanostack\sal-stack-nanostack\source\MAC;mbed-os\features\nanostack\sal-stack-nanostack\source\MAC\ethernet;mbed-os\features\nanostack\sal-stack-nanostack\source\MAC\IEEE802_15_4;mbed-os\features\nanostack\sal-stack-nanostack\source\MAC\serial;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\Service_Libs;mbed-os\features\nanostack\sal-stack-nanostack\source\Service_Libs\blacklist;mbed-os\features\nanostack\sal-stack-nanostack\source\Service_Libs\CCM_lib;mbed-os\features\nanostack\sal-stack-nanostack\source\Service_Libs\CCM_lib\mbedOS;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\load_balance;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\Neighbor_cache;mbed-os\features\nanostack\sal-stack-nanostack\source\Service_Libs\pan_blacklist;mbed-os\features\nanostack\sal-stack-nanostack\source\Service_Libs\SHA256_Lib;mbed-os\features\nanostack\sal-stack-nanostack\source\Service_Libs\Trickle;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-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\targets;mbed-os\features\netsocket;mbed-os\features\netsocket\cellular;mbed-os\features\netsocket\cellular\generic_modem_driver;mbed-os\features\netsocket\emac-drivers;mbed-os\features\nvstore;mbed-os\features\nvstore\source;mbed-os\features\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\rtos\TARGET_CORTEX\rtx5\RTX\Source\TOOLCHAIN_ARM;mbed-os\rtos\TARGET_CORTEX\rtx5\RTX\Source\TOOLCHAIN_ARM\TARGET_M0P;mbed-os\rtos\TARGET_CORTEX\rtx5\Source;mbed-os\rtos\TARGET_CORTEX\TARGET_CORTEX_M;mbed-os\rtos\TARGET_CORTEX\TARGET_CORTEX_M\TOOLCHAIN_ARM;mbed-os\targets;mbed-os\targets\TARGET_STM;mbed-os\targets\TARGET_STM\TARGET_STM32L0;mbed-os\targets\TARGET_STM\TARGET_STM32L0\device;mbed-os\targets\TARGET_STM\TARGET_STM32L0\TARGET_STM32L072xZ;mbed-os\targets\TARGET_STM\TARGET_STM32L0\TARGET_STM32L072xZ\device;mbed-os\targets\TARGET_STM\TARGET_STM32L0\TARGET_STM32L072xZ\device\TOOLCHAIN_ARM_STD;mbed-os\targets\TARGET_STM\TARGET_STM32L0\TARGET_STM32L072xZ\TARGET_DISCO_L072CZ_LRWAN1;MMA8451Q;SerialGPS;Si7021</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,-DTRANSACTION_QUEUE_SIZE_SPI=2,-D__CORTEX_M0PLUS,-D__MBED_CMSIS_RTOS_CM,-DLPTICKER_DELAY_TICKS=3,-D__CMSIS_RTOS,-DARM_MATH_CM0PLUS</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_STM\TARGET_STM32L0\TARGET_STM32L072xZ\device\TOOLCHAIN_ARM_STD\stm32l072xz.sct</ScatterFile>
<IncludeLibs></IncludeLibs>
<IncludeLibsPath></IncludeLibsPath>
<Misc>--show_full_path</Misc>
<LinkerInputFile></LinkerInputFile>
<DisabledWarnings></DisabledWarnings>
</LDads>
</TargetArmAds>
</TargetOption>
<Groups>
<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>adaptation_interface.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\6LoWPAN\adaptation_interface.c</FilePath>
</File>
<File>
<FileName>address.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\Core\address.c</FilePath>
</File>
<File>
<FileName>address.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\Core\include\address.h</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_alt.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\mbedtls\targets\TARGET_STM\aes_alt.c</FilePath>
</File>
<File>
<FileName>aes_alt.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\mbedtls\targets\TARGET_STM\aes_alt.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_STM\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>analogin_device.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\targets\TARGET_STM\TARGET_STM32L0\analogin_device.c</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_STM\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>analogout_device.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\targets\TARGET_STM\TARGET_STM32L0\analogout_device.c</FilePath>
</File>
<File>
<FileName>APN_db.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\easy_cellular\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\mbedtls\inc\mbedtls\arc4.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_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>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_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_CellularPower.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\features\cellular\framework\AT\AT_CellularPower.cpp</FilePath>
</File>
<File>
<FileName>AT_CellularPower.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\AT\AT_CellularPower.h</FilePath>
</File>
<File>
<FileName>AT_CellularSIM.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\features\cellular\framework\AT\AT_CellularSIM.cpp</FilePath>
</File>
<File>
<FileName>AT_CellularSIM.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\AT\AT_CellularSIM.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>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>base64.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\mbedtls\src\base64.c</FilePath>
</File>
<File>
<FileName>base64.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\mbedtls\inc\mbedtls\base64.h</FilePath>
</File>
<File>
<FileName>beacon_handler.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\6LoWPAN\MAC\beacon_handler.c</FilePath>
</File>
<File>
<FileName>beacon_handler.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\6LoWPAN\MAC\beacon_handler.h</FilePath>
</File>
<File>
<FileName>bignum.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\mbedtls\src\bignum.c</FilePath>
</File>
<File>
<FileName>bignum.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\mbedtls\inc\mbedtls\bignum.h</FilePath>
</File>
<File>
<FileName>blacklist.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\Service_Libs\blacklist\blacklist.c</FilePath>
</File>
<File>
<FileName>blacklist.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\Service_Libs\blacklist\blacklist.h</FilePath>
</File>
<File>
<FileName>BlockDevice.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\filesystem\bd\BlockDevice.h</FilePath>
</File>
<File>
<FileName>blowfish.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\mbedtls\src\blowfish.c</FilePath>
</File>
<File>
<FileName>blowfish.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\mbedtls\inc\mbedtls\blowfish.h</FilePath>
</File>
<File>
<FileName>bn_mul.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\mbedtls\inc\mbedtls\bn_mul.h</FilePath>
</File>
<File>
<FileName>border_router.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\BorderRouter\border_router.c</FilePath>
</File>
<File>
<FileName>border_router.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\BorderRouter\border_router.h</FilePath>
</File>
<File>
<FileName>buffer.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\hal\buffer.h</FilePath>
</File>
<File>
<FileName>buffer_dyn.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\Core\buffer_dyn.c</FilePath>
</File>
<File>
<FileName>BufferedBlockDevice.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\features\filesystem\bd\BufferedBlockDevice.cpp</FilePath>
</File>
<File>
<FileName>BufferedBlockDevice.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\filesystem\bd\BufferedBlockDevice.h</FilePath>
</File>
<File>
<FileName>BusIn.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\drivers\BusIn.cpp</FilePath>
</File>
<File>
<FileName>BusIn.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\drivers\BusIn.h</FilePath>
</File>
<File>
<FileName>BusInOut.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\drivers\BusInOut.cpp</FilePath>
</File>
<File>
<FileName>BusInOut.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\drivers\BusInOut.h</FilePath>
</File>
<File>
<FileName>BusOut.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\drivers\BusOut.cpp</FilePath>
</File>
<File>
<FileName>BusOut.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\drivers\BusOut.h</FilePath>
</File>
<File>
<FileName>Callback.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\platform\Callback.h</FilePath>
</File>
<File>
<FileName>callback_handler.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\nanostack\mbed-mesh-api\source\include\callback_handler.h</FilePath>
</File>
<File>
<FileName>CallbackHandler.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\features\nanostack\mbed-mesh-api\source\CallbackHandler.cpp</FilePath>
</File>
<File>
<FileName>CallChain.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\platform\CallChain.cpp</FilePath>
</File>
<File>
<FileName>CallChain.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\platform\CallChain.h</FilePath>
</File>
<File>
<FileName>camellia.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\mbedtls\src\camellia.c</FilePath>
</File>
<File>
<FileName>camellia.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\mbedtls\inc\mbedtls\camellia.h</FilePath>
</File>
<File>
<FileName>CAN.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\drivers\CAN.cpp</FilePath>
</File>
<File>
<FileName>CAN.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\drivers\CAN.h</FilePath>
</File>
<File>
<FileName>can_api.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\targets\TARGET_STM\can_api.c</FilePath>
</File>
<File>
<FileName>can_api.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\hal\can_api.h</FilePath>
</File>
<File>
<FileName>can_helper.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\hal\can_helper.h</FilePath>
</File>
<File>
<FileName>cca_api.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\nanostack\cca_api.h</FilePath>
</File>
<File>
<FileName>ccm.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\mbedtls\src\ccm.c</FilePath>
</File>
<File>
<FileName>ccm.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\mbedtls\inc\mbedtls\ccm.h</FilePath>
</File>
<File>
<FileName>ccm_security.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\Service_Libs\CCM_lib\ccm_security.c</FilePath>
</File>
<File>
<FileName>ccmLIB.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\nanostack\ccmLIB.h</FilePath>
</File>
<File>
<FileName>CellularBase.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\netsocket\CellularBase.h</FilePath>
</File>
<File>
<FileName>CellularCommon.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\common\CellularCommon.h</FilePath>
</File>
<File>
<FileName>CellularConnectionFSM.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\features\cellular\easy_cellular\CellularConnectionFSM.cpp</FilePath>
</File>
<File>
<FileName>CellularConnectionFSM.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\easy_cellular\CellularConnectionFSM.h</FilePath>
</File>
<File>
<FileName>CellularDevice.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\API\CellularDevice.h</FilePath>
</File>
<File>
<FileName>CellularInformation.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\API\CellularInformation.h</FilePath>
</File>
<File>
<FileName>CellularList.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\common\CellularList.h</FilePath>
</File>
<File>
<FileName>CellularLog.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\features\cellular\framework\common\CellularLog.cpp</FilePath>
</File>
<File>
<FileName>CellularLog.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\common\CellularLog.h</FilePath>
</File>
<File>
<FileName>CellularNetwork.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\API\CellularNetwork.h</FilePath>
</File>
<File>
<FileName>CellularPower.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\API\CellularPower.h</FilePath>
</File>
<File>
<FileName>CellularSIM.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\API\CellularSIM.h</FilePath>
</File>
<File>
<FileName>CellularSMS.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\API\CellularSMS.h</FilePath>
</File>
<File>
<FileName>CellularTargets.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\common\CellularTargets.h</FilePath>
</File>
<File>
<FileName>CellularUtil.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\features\cellular\framework\common\CellularUtil.cpp</FilePath>
</File>
<File>
<FileName>CellularUtil.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\cellular\framework\common\CellularUtil.h</FilePath>
</File>
<File>
<FileName>certs.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\mbedtls\src\certs.c</FilePath>
</File>
<File>
<FileName>certs.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\mbedtls\inc\mbedtls\certs.h</FilePath>
</File>
<File>
<FileName>ChainingBlockDevice.cpp</FileName>
<FileType>8</FileType>
<FilePath>.\mbed-os\features\filesystem\bd\ChainingBlockDevice.cpp</FilePath>
</File>
<File>
<FileName>ChainingBlockDevice.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\filesystem\bd\ChainingBlockDevice.h</FilePath>
</File>
<File>
<FileName>channel_list.c</FileName>
<FileType>1</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\Service_Libs\fhss\channel_list.c</FilePath>
</File>
<File>
<FileName>channel_list.h</FileName>
<FileType>5</FileType>
<FilePath>.\mbed-os\features\nanostack\sal-stack-nanostack\source\Service_Libs\fhss\channel_list.h</FilePath>
</File>
<File>