-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.project
1349 lines (1349 loc) · 49.5 KB
/
.project
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"?>
<projectDescription>
<name>mg1_repeater</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.silabs.ss.framework.ide.project.sls.core.slsResourceBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
<triggers>clean,full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.cdt.core.cnature</nature>
<nature>com.silabs.ss.framework.ide.project.sls.core.SLSProjectNature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
</natures>
<linkedResources>
<link>
<name>command-interpreter2.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/util/serial/command-interpreter2.c</locationURI>
</link>
<link>
<name>crc.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/generic/crc.c</locationURI>
</link>
<link>
<name>ember-base-configuration.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/ember-base-configuration.c</locationURI>
</link>
<link>
<name>ember-configuration.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/stack/config/ember-configuration.c</locationURI>
</link>
<link>
<name>endian.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/generic/endian.c</locationURI>
</link>
<link>
<name>library.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/util/common/library.c</locationURI>
</link>
<link>
<name>mem-util.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/generic/mem-util.c</locationURI>
</link>
<link>
<name>random.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/generic/random.c</locationURI>
</link>
<link>
<name>security-address-cache.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/util/security/security-address-cache.c</locationURI>
</link>
<link>
<name>token-def.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/generic/token-def.c</locationURI>
</link>
<link>
<name>zigbee-device-common.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/util/zigbee-framework/zigbee-device-common.c</locationURI>
</link>
<link>
<name>zigbee-device-library.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/util/zigbee-framework/zigbee-device-library.c</locationURI>
</link>
<link>
<name>antenna-stub/antenna-stub.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/plugin/antenna-stub/antenna-stub.c</locationURI>
</link>
<link>
<name>ccm-encryption/ccm-star.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/stack/framework/ccm-star.c</locationURI>
</link>
<link>
<name>counters/counters-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/counters/counters-cli.c</locationURI>
</link>
<link>
<name>counters/counters-ota.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/counters/counters-ota.c</locationURI>
</link>
<link>
<name>counters/counters-soc.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/counters/counters-soc.c</locationURI>
</link>
<link>
<name>eeprom/eeprom-afv2.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/plugin/plugin-afv2/eeprom/eeprom-afv2.c</locationURI>
</link>
<link>
<name>eeprom/eeprom-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/plugin/plugin-common/eeprom/eeprom-cli.c</locationURI>
</link>
<link>
<name>eeprom/eeprom.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/plugin/plugin-common/eeprom/eeprom.c</locationURI>
</link>
<link>
<name>efr32/assert-crash-handlers.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/assert-crash-handlers.c</locationURI>
</link>
<link>
<name>efr32/button.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/button.c</locationURI>
</link>
<link>
<name>efr32/buzzer-efr32.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/plugin/buzzer/buzzer-efr32.c</locationURI>
</link>
<link>
<name>efr32/cstartup-common.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/cstartup-common.c</locationURI>
</link>
<link>
<name>efr32/diagnostic.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/diagnostic.c</locationURI>
</link>
<link>
<name>efr32/ext-device.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/ext-device.c</locationURI>
</link>
<link>
<name>efr32/faults-v7m.s79</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/faults-v7m.s79</locationURI>
</link>
<link>
<name>efr32/isr-stubs.s79</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/isr-stubs.s79</locationURI>
</link>
<link>
<name>efr32/led.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/led.c</locationURI>
</link>
<link>
<name>efr32/mfg-token.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/mfg-token.c</locationURI>
</link>
<link>
<name>efr32/micro-common.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/micro-common.c</locationURI>
</link>
<link>
<name>efr32/micro.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/micro.c</locationURI>
</link>
<link>
<name>efr32/sleep-efm32.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/sleep-efm32.c</locationURI>
</link>
<link>
<name>efr32/token.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/token.c</locationURI>
</link>
<link>
<name>ember-minimal-printf/ember-printf.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/plugin/serial/ember-printf.c</locationURI>
</link>
<link>
<name>emdrv/dmadrv.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emdrv/dmadrv/src/dmadrv.c</locationURI>
</link>
<link>
<name>emdrv/gpiointerrupt.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emdrv/gpiointerrupt/src/gpiointerrupt.c</locationURI>
</link>
<link>
<name>emdrv/sl_sleeptimer.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/service/sleeptimer/src/sl_sleeptimer.c</locationURI>
</link>
<link>
<name>emdrv/sl_sleeptimer_hal_rtcc.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/service/sleeptimer/src/sl_sleeptimer_hal_rtcc.c</locationURI>
</link>
<link>
<name>emdrv/tempdrv.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emdrv/tempdrv/src/tempdrv.c</locationURI>
</link>
<link>
<name>emdrv/uartdrv.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emdrv/uartdrv/src/uartdrv.c</locationURI>
</link>
<link>
<name>emdrv/ustimer.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emdrv/ustimer/src/ustimer.c</locationURI>
</link>
<link>
<name>emlib/em_adc.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_adc.c</locationURI>
</link>
<link>
<name>emlib/em_cmu.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_cmu.c</locationURI>
</link>
<link>
<name>emlib/em_core.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_core.c</locationURI>
</link>
<link>
<name>emlib/em_cryotimer.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_cryotimer.c</locationURI>
</link>
<link>
<name>emlib/em_emu.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_emu.c</locationURI>
</link>
<link>
<name>emlib/em_eusart.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_eusart.c</locationURI>
</link>
<link>
<name>emlib/em_gpio.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_gpio.c</locationURI>
</link>
<link>
<name>emlib/em_i2c.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_i2c.c</locationURI>
</link>
<link>
<name>emlib/em_ldma.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_ldma.c</locationURI>
</link>
<link>
<name>emlib/em_leuart.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_leuart.c</locationURI>
</link>
<link>
<name>emlib/em_msc.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_msc.c</locationURI>
</link>
<link>
<name>emlib/em_prs.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_prs.c</locationURI>
</link>
<link>
<name>emlib/em_rmu.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_rmu.c</locationURI>
</link>
<link>
<name>emlib/em_rtcc.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_rtcc.c</locationURI>
</link>
<link>
<name>emlib/em_se.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_se.c</locationURI>
</link>
<link>
<name>emlib/em_system.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_system.c</locationURI>
</link>
<link>
<name>emlib/em_timer.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_timer.c</locationURI>
</link>
<link>
<name>emlib/em_usart.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_usart.c</locationURI>
</link>
<link>
<name>emlib/em_wdog.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_wdog.c</locationURI>
</link>
<link>
<name>emlib/system_efr32mg1p.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG1P/Source/system_efr32mg1p.c</locationURI>
</link>
<link>
<name>external-generated-files/bootloader-interface-app.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/bootloader-interface-app.c</locationURI>
</link>
<link>
<name>external-generated-files/bootloader-interface.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/bootloader-interface.c</locationURI>
</link>
<link>
<name>external-generated-files/btl_interface.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/bootloader/api/btl_interface.c</locationURI>
</link>
<link>
<name>external-generated-files/btl_interface_storage.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/bootloader/api/btl_interface_storage.c</locationURI>
</link>
<link>
<name>find-and-bind-initiator/find-and-bind-initiator-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/find-and-bind-initiator/find-and-bind-initiator-cli.c</locationURI>
</link>
<link>
<name>find-and-bind-initiator/find-and-bind-initiator.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/find-and-bind-initiator/find-and-bind-initiator.c</locationURI>
</link>
<link>
<name>network-creator/network-creator-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/network-creator/network-creator-cli.c</locationURI>
</link>
<link>
<name>network-creator/network-creator.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/network-creator/network-creator.c</locationURI>
</link>
<link>
<name>network-creator-security/network-creator-security-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/network-creator-security/network-creator-security-cli.c</locationURI>
</link>
<link>
<name>network-creator-security/network-creator-security.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/network-creator-security/network-creator-security.c</locationURI>
</link>
<link>
<name>network-steering/network-steering-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/network-steering/network-steering-cli.c</locationURI>
</link>
<link>
<name>network-steering/network-steering-soc.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/network-steering/network-steering-soc.c</locationURI>
</link>
<link>
<name>network-steering/network-steering-v2.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/network-steering/network-steering-v2.c</locationURI>
</link>
<link>
<name>network-steering/network-steering.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/network-steering/network-steering.c</locationURI>
</link>
<link>
<name>ota-bootload/ota-bootload-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-bootload/ota-bootload-cli.c</locationURI>
</link>
<link>
<name>ota-bootload/ota-bootload-soc.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-bootload/ota-bootload-soc.c</locationURI>
</link>
<link>
<name>ota-client/ota-client-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-client/ota-client-cli.c</locationURI>
</link>
<link>
<name>ota-client/ota-client-page-request.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-client/ota-client-page-request.c</locationURI>
</link>
<link>
<name>ota-client/ota-client-signature-verify.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-client/ota-client-signature-verify.c</locationURI>
</link>
<link>
<name>ota-client/ota-client.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-client/ota-client.c</locationURI>
</link>
<link>
<name>ota-client-policy/ota-client-policy.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-client-policy/ota-client-policy.c</locationURI>
</link>
<link>
<name>ota-common/ota-common.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-common/ota-common.c</locationURI>
</link>
<link>
<name>ota-storage-common/ota-storage-common-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-storage-common/ota-storage-common-cli.c</locationURI>
</link>
<link>
<name>ota-storage-common/ota-storage-common.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-storage-common/ota-storage-common.c</locationURI>
</link>
<link>
<name>ota-storage-simple/ota-storage-simple.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-storage-simple/ota-storage-simple.c</locationURI>
</link>
<link>
<name>ota-storage-simple-eeprom/ota-storage-eeprom-page-erase.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-storage-simple-eeprom/ota-storage-eeprom-page-erase.c</locationURI>
</link>
<link>
<name>ota-storage-simple-eeprom/ota-storage-eeprom-read-modify-write.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-storage-simple-eeprom/ota-storage-eeprom-read-modify-write.c</locationURI>
</link>
<link>
<name>ota-storage-simple-eeprom/ota-storage-eeprom.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/ota-storage-simple-eeprom/ota-storage-eeprom.c</locationURI>
</link>
<link>
<name>scan-dispatch/scan-dispatch.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/scan-dispatch/scan-dispatch.c</locationURI>
</link>
<link>
<name>serial/com.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/plugin/serial/cortexm/efm32/com.c</locationURI>
</link>
<link>
<name>simple-main/simple-main.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/simple-main/simple-main.c</locationURI>
</link>
<link>
<name>strong-random/strong-random-api.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/stack/framework/strong-random-api.c</locationURI>
</link>
<link>
<name>update-tc-link-key/update-tc-link-key-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/update-tc-link-key/update-tc-link-key-cli.c</locationURI>
</link>
<link>
<name>update-tc-link-key/update-tc-link-key.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/plugin/update-tc-link-key/update-tc-link-key.c</locationURI>
</link>
<link>
<name>zcl-framework-core/af-event.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/af-event.c</locationURI>
</link>
<link>
<name>zcl-framework-core/af-main-common.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/af-main-common.c</locationURI>
</link>
<link>
<name>zcl-framework-core/af-main-soc.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/af-main-soc.c</locationURI>
</link>
<link>
<name>zcl-framework-core/af-node.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/security/af-node.c</locationURI>
</link>
<link>
<name>zcl-framework-core/af-security-common.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/security/af-security-common.c</locationURI>
</link>
<link>
<name>zcl-framework-core/af-trust-center.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/security/af-trust-center.c</locationURI>
</link>
<link>
<name>zcl-framework-core/attribute-size.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/attribute-size.c</locationURI>
</link>
<link>
<name>zcl-framework-core/attribute-storage.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/attribute-storage.c</locationURI>
</link>
<link>
<name>zcl-framework-core/attribute-table.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/attribute-table.c</locationURI>
</link>
<link>
<name>zcl-framework-core/client-api.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/client-api.c</locationURI>
</link>
<link>
<name>zcl-framework-core/core-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/cli/core-cli.c</locationURI>
</link>
<link>
<name>zcl-framework-core/crypto-state.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/security/crypto-state.c</locationURI>
</link>
<link>
<name>zcl-framework-core/message.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/message.c</locationURI>
</link>
<link>
<name>zcl-framework-core/multi-network.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/multi-network.c</locationURI>
</link>
<link>
<name>zcl-framework-core/network-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/cli/network-cli.c</locationURI>
</link>
<link>
<name>zcl-framework-core/option-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/cli/option-cli.c</locationURI>
</link>
<link>
<name>zcl-framework-core/plugin-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/cli/plugin-cli.c</locationURI>
</link>
<link>
<name>zcl-framework-core/print-formatter.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/print-formatter.c</locationURI>
</link>
<link>
<name>zcl-framework-core/print.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/print.c</locationURI>
</link>
<link>
<name>zcl-framework-core/process-cluster-message.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/process-cluster-message.c</locationURI>
</link>
<link>
<name>zcl-framework-core/process-global-message.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/process-global-message.c</locationURI>
</link>
<link>
<name>zcl-framework-core/security-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/cli/security-cli.c</locationURI>
</link>
<link>
<name>zcl-framework-core/service-discovery-common.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/service-discovery-common.c</locationURI>
</link>
<link>
<name>zcl-framework-core/service-discovery-soc.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/service-discovery-soc.c</locationURI>
</link>
<link>
<name>zcl-framework-core/time-util.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/time-util.c</locationURI>
</link>
<link>
<name>zcl-framework-core/util.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/util/util.c</locationURI>
</link>
<link>
<name>zcl-framework-core/zcl-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/cli/zcl-cli.c</locationURI>
</link>
<link>
<name>zcl-framework-core/zdo-cli.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/protocol/zigbee/app/framework/cli/zdo-cli.c</locationURI>
</link>
<link>
<name>coexistence-stub/EFR32/coexistence-802154.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/radio/rail_lib/plugin/coexistence/protocol/ieee802154/coexistence-802154.c</locationURI>
</link>
<link>
<name>coexistence-stub/EFR32/coulomb-counter-802154.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/radio/rail_lib/plugin/coexistence/protocol/ieee802154/coulomb-counter-802154.c</locationURI>
</link>
<link>
<name>debug-basic-library/EFR32/SEGGER_RTT.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/segger/systemview/SEGGER/SEGGER_RTT.c</locationURI>
</link>
<link>
<name>debug-jtag/EFR32/debug-jtag-efr32.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/plugin/debug-jtag/debug-jtag-efr32.c</locationURI>
</link>
<link>
<name>hal-library/EFR32/hal-config-gpio.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/hal-config-gpio.c</locationURI>
</link>
<link>
<name>hal-library/EFR32/hal-config.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/base/hal/micro/cortexm3/efm32/hal-config.c</locationURI>
</link>
<link>
<name>hal-library/EFR32/sl_mpu.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/service/mpu/src/sl_mpu.c</locationURI>
</link>
<link>
<name>hal-library/EFR32/sl_power_manager.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/service/power_manager/src/sl_power_manager.c</locationURI>
</link>
<link>
<name>hal-library/EFR32/sl_power_manager_debug.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/service/power_manager/src/sl_power_manager_debug.c</locationURI>
</link>
<link>
<name>hal-library/EFR32/sl_power_manager_hal_s0_s1.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/service/power_manager/src/sl_power_manager_hal_s0_s1.c</locationURI>
</link>
<link>
<name>hal-library/EFR32/sl_power_manager_hal_s2.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/service/power_manager/src/sl_power_manager_hal_s2.c</locationURI>
</link>
<link>
<name>hal-library/EFR32/sl_slist.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/src/sl_slist.c</locationURI>
</link>
<link>
<name>hal-library/EFR32_xx/pa_conversions_efr32.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/radio/rail_lib/plugin/pa-conversions/pa_conversions_efr32.c</locationURI>
</link>
<link>
<name>hal-library/EFR32_xx/pa_curves_efr32.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/radio/rail_lib/plugin/pa-conversions/pa_curves_efr32.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/aes.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/aes.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/aes_aes.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/aes_aes.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/asn1parse.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/asn1parse.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/asn1write.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/asn1write.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/base64.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/base64.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/bignum.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/bignum.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/ccm.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/ccm.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/chacha20.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/chacha20.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/chachapoly.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/chachapoly.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/cipher.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/cipher.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/cipher_wrap.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/cipher_wrap.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/cmac.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/cmac.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/crypto_aes.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/crypto_aes.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/crypto_ecp.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/crypto_ecp.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/crypto_gcm.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/crypto_gcm.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/crypto_management.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_psa_driver/src/crypto_management.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/cryptoacc_aes.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/cryptoacc_aes.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/cryptoacc_gcm.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/cryptoacc_gcm.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/cryptoacc_management.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_psa_driver/src/cryptoacc_management.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/ctr_drbg.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/ctr_drbg.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/des.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/des.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/ecdh.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/ecdh.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/ecdsa.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/ecdsa.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/ecjpake.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/ecjpake.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/ecp.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/ecp.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/ecp_curves.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/ecp_curves.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/entropy.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/entropy.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/error.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/error.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/gcm.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/gcm.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/mbedtls_ccm.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/mbedtls_ccm.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/mbedtls_cmac.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/mbedtls_cmac.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/mbedtls_ecdsa_ecdh.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/mbedtls_ecdsa_ecdh.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/mbedtls_sha.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/mbedtls_sha.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/md.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/md.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/md5.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/md5.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/oid.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/oid.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/pem.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/pem.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/pk.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/pk.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/pk_wrap.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/pk_wrap.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/pkparse.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/pkparse.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/platform_util.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/platform_util.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/poly1305.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/poly1305.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/psa_crypto.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/psa_crypto.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/psa_crypto_cipher.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/psa_crypto_cipher.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/psa_crypto_client.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/psa_crypto_client.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/psa_crypto_driver_wrappers.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/psa_crypto_driver_wrappers.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/psa_crypto_ecp.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/psa_crypto_ecp.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/psa_crypto_hash.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/psa_crypto_hash.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/psa_crypto_mac.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/psa_crypto_mac.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/psa_crypto_slot_management.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/psa_crypto_slot_management.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/psa_crypto_storage.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/psa_crypto_storage.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/rsa.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/rsa.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/rsa_internal.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/mbedtls/library/rsa_internal.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/se_aes.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/se_aes.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/se_gcm.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/crypto/sl_component/sl_mbedtls_support/src/se_gcm.c</locationURI>
</link>
<link>
<name>mbedtls/EFR32/se_jpake.c</name>
<type>1</type>