-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.project
1767 lines (1767 loc) · 91.7 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>wius_firmware</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>
</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>
</natures>
<linkedResources>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/aws_client_certificate.pem.crt.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/aws_client_certificate.pem.crt.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/aws_client_private_key.pem.key.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/aws_client_private_key.pem.key.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/aws_starfield_ca.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/aws_starfield_ca.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/azure_baltimore_ca.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/azure_baltimore_ca.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/cacert.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/cacert.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/clientcert.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/clientcert.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/clientkey.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/clientkey.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/eap.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/eap.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/mydevkitcertificate.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/mydevkitcertificate.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/mydevkitkey.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/mydevkitkey.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/servercert.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/servercert.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/serverkey.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/serverkey.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/silabs_client_cert.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/silabs_client_cert.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/silabs_client_key.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/silabs_client_key.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/silabs_dgcert_ca.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/silabs_dgcert_ca.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/certificates/wifiuser.pem.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/certificates/wifiuser.pem.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/html/helloworld.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/html/helloworld.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/html/login.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/html/login.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/html/provisioning.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/html/provisioning.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/resources/other/index.html.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/resources/other/index.html.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/inc/sl_assert.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/inc/sl_assert.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/inc/sl_atomic.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/inc/sl_atomic.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/inc/sl_bit.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/inc/sl_bit.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/inc/sl_cmsis_os2_common.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/inc/sl_cmsis_os2_common.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/inc/sl_common.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/inc/sl_common.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/inc/sl_slist.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/inc/sl_slist.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/inc/sl_status.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/inc/sl_status.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/inc/sl_string.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/inc/sl_string.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/inc/sli_cmsis_os2_ext_task_register.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/inc/sli_cmsis_os2_ext_task_register.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/src/sl_assert.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/src/sl_assert.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/src/sl_slist.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/src/sl_slist.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/src/sl_string.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/src/sl_string.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/common/src/sli_cmsis_os2_ext_task_register.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/common/src/sli_cmsis_os2_ext_task_register.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/emlib/inc/em_core.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/inc/em_core.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/emlib/inc/em_core_generic.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/inc/em_core_generic.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/emlib/src/em_core.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/emlib/src/em_core.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/common/inc/sl_additional_status.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/common/inc/sl_additional_status.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/common/inc/sl_cmsis_utility.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/common/inc/sl_cmsis_utility.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/common/inc/sl_constants.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/common/inc/sl_constants.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/common/inc/sl_ieee802_types.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/common/inc/sl_ieee802_types.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/common/inc/sl_ip_types.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/common/inc/sl_ip_types.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/common/inc/sl_utility.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/common/inc/sl_utility.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/common/src/sl_utility.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/common/src/sl_utility.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/CMSIS/Core/Include/cmsis_compiler.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/CMSIS/Core/Include/cmsis_compiler.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/CMSIS/Core/Include/cmsis_gcc.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/CMSIS/Core/Include/cmsis_gcc.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/CMSIS/Core/Include/cmsis_version.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/CMSIS/Core/Include/cmsis_version.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/CMSIS/Core/Include/core_cm4.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/CMSIS/Core/Include/core_cm4.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/CMSIS/Core/Include/mpu_armv7.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/CMSIS/Core/Include/mpu_armv7.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/CMSIS/Core/Include/tz_context.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/CMSIS/Core/Include/tz_context.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/CMSIS/RTOS2/Include/cmsis_os2.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/CMSIS/RTOS2/Include/cmsis_os2.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/CMSIS/RTOS2/Include/os_tick.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/CMSIS/RTOS2/Include/os_tick.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/CMSIS/RTOS2/Source/os_systick.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/CMSIS/RTOS2/Source/os_systick.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/service/system/inc/sl_system_init.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/service/system/inc/sl_system_init.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/service/system/inc/sl_system_kernel.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/service/system/inc/sl_system_kernel.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/service/system/src/sl_system_init.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/service/system/src/sl_system_init.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/platform/service/system/src/sl_system_kernel.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/platform/service/system/src/sl_system_kernel.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/croutine.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/croutine.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/event_groups.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/event_groups.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/list.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/list.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/queue.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/queue.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/stream_buffer.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/stream_buffer.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/tasks.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/tasks.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/timers.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/timers.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/board/silabs/inc/rsi_board.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/board/silabs/inc/rsi_board.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/board/silabs/inc/rsi_board_configuration.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/board/silabs/inc/rsi_board_configuration.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/board/silabs/inc/sl_gpio_board.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/board/silabs/inc/sl_gpio_board.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/board/silabs/inc/sl_i2c_board.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/board/silabs/inc/sl_i2c_board.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/board/silabs/inc/sl_pwm_board.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/board/silabs/inc/sl_pwm_board.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/board/silabs/inc/sl_sio_board.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/board/silabs/inc/sl_sio_board.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/board/silabs/inc/sl_sysrtc_board.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/board/silabs/inc/sl_sysrtc_board.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/board/silabs/src/rsi_board.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/board/silabs/src/rsi_board.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/protocol/wifi/inc/sl_wifi.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/protocol/wifi/inc/sl_wifi.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/protocol/wifi/inc/sl_wifi_callback_framework.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/protocol/wifi/inc/sl_wifi_callback_framework.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/protocol/wifi/inc/sl_wifi_constants.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/protocol/wifi/inc/sl_wifi_constants.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/protocol/wifi/inc/sl_wifi_host_interface.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/protocol/wifi/inc/sl_wifi_host_interface.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/protocol/wifi/inc/sl_wifi_types.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/protocol/wifi/inc/sl_wifi_types.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/protocol/wifi/si91x/sl_wifi.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/protocol/wifi/si91x/sl_wifi.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/protocol/wifi/src/sl_wifi_callback_framework.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/protocol/wifi/src/sl_wifi_callback_framework.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/bsd_socket/inc/netdb.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/bsd_socket/inc/netdb.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/bsd_socket/inc/netinet6_in6.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/bsd_socket/inc/netinet6_in6.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/bsd_socket/inc/netinet_in.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/bsd_socket/inc/netinet_in.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/bsd_socket/inc/select.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/bsd_socket/inc/select.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/bsd_socket/inc/socket.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/bsd_socket/inc/socket.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/bsd_socket/inc/sys.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/bsd_socket/inc/sys.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/bsd_socket/inc/uio.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/bsd_socket/inc/uio.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/bsd_socket/si91x_socket/sl_si91x_bsd_socket.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/bsd_socket/si91x_socket/sl_si91x_bsd_socket.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/bsd_socket/si91x_socket/sl_si91x_socket_support.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/bsd_socket/si91x_socket/sl_si91x_socket_support.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/network_manager/inc/sl_net.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/network_manager/inc/sl_net.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/network_manager/inc/sl_net_constants.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/network_manager/inc/sl_net_constants.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/network_manager/inc/sl_net_dns.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/network_manager/inc/sl_net_dns.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/network_manager/inc/sl_net_ip_types.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/network_manager/inc/sl_net_ip_types.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/network_manager/inc/sl_net_types.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/network_manager/inc/sl_net_types.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/network_manager/inc/sl_net_wifi_types.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/network_manager/inc/sl_net_wifi_types.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/network_manager/si91x/sl_net_si91x.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/network_manager/si91x/sl_net_si91x.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/network_manager/src/sl_net.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/network_manager/src/sl_net.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/network_manager/src/sl_net_basic_certificate_store.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/network_manager/src/sl_net_basic_certificate_store.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/network_manager/src/sl_net_basic_credentials.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/network_manager/src/sl_net_basic_credentials.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/service/network_manager/src/sl_net_basic_profiles.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/service/network_manager/src/sl_net_basic_profiles.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/cmsis/Include/freertos_mpool.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/cmsis/Include/freertos_mpool.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/cmsis/Include/freertos_os2.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/cmsis/Include/freertos_os2.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/cmsis/Source/cmsis_os2.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/cmsis/Source/cmsis_os2.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/FreeRTOS.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/FreeRTOS.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/StackMacros.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/StackMacros.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/atomic.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/atomic.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/croutine.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/croutine.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/deprecated_definitions.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/deprecated_definitions.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/event_groups.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/event_groups.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/list.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/list.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/message_buffer.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/message_buffer.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/mpu_prototypes.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/mpu_prototypes.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/mpu_wrappers.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/mpu_wrappers.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/portable.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/portable.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/projdefs.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/projdefs.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/queue.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/queue.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/semphr.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/semphr.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/stack_macros.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/stack_macros.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/stream_buffer.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/stream_buffer.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/task.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/task.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/include/timers.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/include/timers.h</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/portable/MemMang/heap_4.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/portable/MemMang/heap_4.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/firmware_upgrade/firmware_upgradation.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/firmware_upgrade/firmware_upgradation.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/firmware_upgrade/firmware_upgradation.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/firmware_upgrade/firmware_upgradation.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/icmp/sl_net_ping.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/icmp/sl_net_ping.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/icmp/sl_net_ping.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/icmp/sl_net_ping.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/inc/sl_rsi_utility.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/inc/sl_rsi_utility.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/inc/sl_si91x_constants.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/inc/sl_si91x_constants.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/inc/sl_si91x_core_utilities.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/inc/sl_si91x_core_utilities.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/inc/sl_si91x_driver.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/inc/sl_si91x_driver.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/inc/sl_si91x_host_interface.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/inc/sl_si91x_host_interface.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/inc/sl_si91x_iot_socket.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/inc/sl_si91x_iot_socket.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/inc/sl_si91x_protocol_types.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/inc/sl_si91x_protocol_types.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/inc/sl_si91x_spi_constants.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/inc/sl_si91x_spi_constants.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/inc/sl_si91x_status.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/inc/sl_si91x_status.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/inc/sl_si91x_types.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/inc/sl_si91x_types.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/inc/sl_wifi_device.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/inc/sl_wifi_device.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/memory/malloc_buffers.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/memory/malloc_buffers.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/src/sl_rsi_utility.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/src/sl_rsi_utility.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/src/sl_si91x_callback_framework.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/src/sl_si91x_callback_framework.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/src/sl_si91x_driver.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/src/sl_si91x_driver.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/threading/sli_si91x_multithreaded.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/threading/sli_si91x_multithreaded.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/portable/GCC/ARM_CM4F/port.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/portable/GCC/ARM_CM4F/port.c</locationURI>
</link>
<link>
<name>gecko_sdk_4.4.3/util/third_party/freertos/kernel/portable/GCC/ARM_CM4F/portmacro.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/util/third_party/freertos/kernel/portable/GCC/ARM_CM4F/portmacro.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/core/config/rsi_ccp_user_config.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/core/config/rsi_ccp_user_config.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/core/config/rsi_nvic_priorities_config.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/core/config/rsi_nvic_priorities_config.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/Driver_Common.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/Driver_Common.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/EMAC.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/EMAC.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/GSPI.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/GSPI.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/GSPI.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/GSPI.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/I2C.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/I2C.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/MCI.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/MCI.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/PHY_LAN8742A.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/PHY_LAN8742A.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/SAI.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/SAI.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/SPI.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/SPI.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/SPI.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/SPI.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/UDMA.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/UDMA.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/UDMA.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/UDMA.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/USART.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/USART.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/USART.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/USART.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/mcu/drivers/cmsis_driver/USB.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/mcu/drivers/cmsis_driver/USB.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_common.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_common.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_data_types.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_data_types.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_driver.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_driver.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_m4.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_m4.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_os.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_os.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_pkt_mgmt.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_pkt_mgmt.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_user.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_user.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_wisemcu_hardware_setup.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_wisemcu_hardware_setup.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_wlan_common_config.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_wlan_common_config.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_wlan_defines.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/rsi_wlan_defines.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/sl_device.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/sl_device.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/sli_siwx917_soc.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/sli_siwx917_soc.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/inc/sli_siwx917_timer.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/inc/sli_siwx917_timer.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/src/rsi_hal_mcu_m4_ram.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/src/rsi_hal_mcu_m4_ram.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/src/rsi_hal_mcu_m4_rom.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/src/rsi_hal_mcu_m4_rom.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/src/sl_platform.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/src/sl_platform.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/src/sl_platform_wireless.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/src/sl_platform_wireless.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/src/sl_si91x_bus.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/src/sl_si91x_bus.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/src/sl_si91x_timer.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/src/sl_si91x_timer.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/ahb_interface/src/sli_siwx917_soc.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/ahb_interface/src/sli_siwx917_soc.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/asynchronous_socket/inc/sl_si91x_socket.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/asynchronous_socket/inc/sl_si91x_socket.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/asynchronous_socket/src/sl_si91x_socket.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/asynchronous_socket/src/sl_si91x_socket.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/errno/inc/errno.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/errno/inc/errno.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/errno/src/sl_si91x_errno.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/errno/src/sl_si91x_errno.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/host_mcu/si91x/siwx917_soc_ncp_host.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/host_mcu/si91x/siwx917_soc_ncp_host.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/sl_net/inc/sl_net_rsi_utility.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/sl_net/inc/sl_net_rsi_utility.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/sl_net/inc/sl_net_si91x.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/sl_net/inc/sl_net_si91x.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/sl_net/inc/sl_net_si91x_integration_handler.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/sl_net/inc/sl_net_si91x_integration_handler.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/sl_net/src/sl_net_rsi_utility.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/sl_net/src/sl_net_rsi_utility.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/sl_net/src/sl_net_si91x_integration_handler.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/sl_net/src/sl_net_si91x_integration_handler.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/sl_net/src/sl_si91x_net_credentials.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/sl_net/src/sl_si91x_net_credentials.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/sl_net/src/sl_si91x_net_internal_stack.c</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/sl_net/src/sl_si91x_net_internal_stack.c</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/socket/inc/sl_bsd_utility.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/socket/inc/sl_bsd_utility.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/socket/inc/sl_si91x_socket_callback_framework.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/socket/inc/sl_si91x_socket_callback_framework.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/socket/inc/sl_si91x_socket_constants.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/socket/inc/sl_si91x_socket_constants.h</locationURI>
</link>
<link>
<name>wiseconnect3_sdk_3.2.0/components/device/silabs/si91x/wireless/socket/inc/sl_si91x_socket_types.h</name>
<type>1</type>
<locationURI>STUDIO_SDK_LOC/extension/wiseconnect/components/device/silabs/si91x/wireless/socket/inc/sl_si91x_socket_types.h</locationURI>
</link>