-
Notifications
You must be signed in to change notification settings - Fork 1
/
diva-card.kicad_sch
1225 lines (1211 loc) · 57.1 KB
/
diva-card.kicad_sch
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
(kicad_sch (version 20211123) (generator eeschema)
(uuid b6ccd13b-2711-4315-93b5-f794f275515d)
(paper "A4")
(title_block
(title "Pico Card")
(date "2022-05-28")
(rev "v1.0")
(company "DIVA ENG")
)
(lib_symbols
)
(junction (at 169.291 76.835) (diameter 0) (color 0 0 0 0)
(uuid 7964b925-c975-4e8c-b418-5fafe8c6fb69)
)
(no_connect (at 165.735 104.14) (uuid 8ea37c06-8487-4508-82d1-ad5b4d88c4fc))
(no_connect (at 165.735 106.045) (uuid 8ea37c06-8487-4508-82d1-ad5b4d88c4fd))
(no_connect (at 165.735 138.43) (uuid 90992df0-f831-4f1b-a668-9b79608a2890))
(no_connect (at 165.735 136.525) (uuid 90992df0-f831-4f1b-a668-9b79608a2891))
(no_connect (at 165.735 92.71) (uuid f2294d11-dc9e-476d-956c-1f1e9ad9b846))
(no_connect (at 165.735 94.615) (uuid f2294d11-dc9e-476d-956c-1f1e9ad9b847))
(no_connect (at 165.735 96.52) (uuid f2294d11-dc9e-476d-956c-1f1e9ad9b848))
(no_connect (at 165.735 88.9) (uuid f2294d11-dc9e-476d-956c-1f1e9ad9b84b))
(no_connect (at 165.735 90.805) (uuid f2294d11-dc9e-476d-956c-1f1e9ad9b84c))
(no_connect (at 165.735 128.905) (uuid f2294d11-dc9e-476d-956c-1f1e9ad9b852))
(no_connect (at 165.735 132.715) (uuid f2294d11-dc9e-476d-956c-1f1e9ad9b853))
(no_connect (at 165.735 134.62) (uuid f2294d11-dc9e-476d-956c-1f1e9ad9b854))
(wire (pts (xy 192.405 147.32) (xy 192.405 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f82f12a-4f2a-4705-b46c-8dd227a587c0)
)
(wire (pts (xy 190.5 145.415) (xy 190.5 135.255))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1197a6fc-026b-484c-aec3-ef9a0224304c)
)
(wire (pts (xy 165.735 121.285) (xy 194.31 121.285))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1408a288-e613-4393-b1b5-3dd6c82e1e75)
)
(wire (pts (xy 175.26 98.425) (xy 175.26 32.385))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d6ba421-1872-44fc-a01f-b7896f2df899)
)
(wire (pts (xy 172.72 86.995) (xy 165.735 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 200d9ee9-67e9-4d2b-b8c0-6ff51296e9cb)
)
(wire (pts (xy 178.435 102.235) (xy 165.735 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2025f117-39f0-4c0d-8d15-bab07c9d93b0)
)
(wire (pts (xy 169.291 58.801) (xy 169.291 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 229e58e2-cdb6-4fc8-a123-c8d686a3cf11)
)
(wire (pts (xy 165.735 145.415) (xy 190.5 145.415))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2628ebc8-93b9-4f63-bc89-42a3ece61c86)
)
(wire (pts (xy 95.25 35.56) (xy 95.25 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a9639b6-43ed-4a8b-b0eb-455664e5512a)
)
(wire (pts (xy 90.17 31.75) (xy 90.17 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b5f84ce-e114-4e3e-a0b1-6e5e3d5323ae)
)
(wire (pts (xy 121.285 35.56) (xy 95.25 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d72095f-de57-4570-9352-b5069c9f6ab4)
)
(wire (pts (xy 121.285 29.845) (xy 87.63 29.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e58570c-da4e-4c84-b7ce-3c575860c98e)
)
(wire (pts (xy 165.735 115.57) (xy 194.31 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32341870-e73e-46a2-a2af-94e057e1cd3b)
)
(wire (pts (xy 191.135 73.025) (xy 191.135 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37805b94-1433-41c7-bf73-7da9ca829a12)
)
(wire (pts (xy 178.435 26.035) (xy 178.435 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 391c07dd-5153-46bc-a39b-729018c69c91)
)
(wire (pts (xy 184.785 83.185) (xy 184.785 106.045))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fa6cc79-4567-4228-9f4d-0829230b380f)
)
(wire (pts (xy 92.71 33.655) (xy 121.285 33.655))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41a59340-0bdb-4584-9ddf-6430b0dc376c)
)
(wire (pts (xy 165.735 71.12) (xy 193.04 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49e23b37-517c-4a05-8fc9-5db6ed2ee762)
)
(wire (pts (xy 184.785 106.045) (xy 194.31 106.045))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ab0771b-129f-4a3c-9ff3-e450fcf51bf7)
)
(wire (pts (xy 165.735 83.185) (xy 184.785 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c4e5d95-fd80-4182-afc2-9f2c1b368d18)
)
(wire (pts (xy 95.25 76.835) (xy 109.22 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4dda7507-fb95-4555-951e-729a7e490013)
)
(wire (pts (xy 186.69 104.14) (xy 194.31 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5411ac3e-c1d8-44d5-a44b-fa15d8e6ee6b)
)
(wire (pts (xy 90.17 80.645) (xy 109.22 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 541f7c27-3c67-4aa5-a6f6-53e8143a7ace)
)
(wire (pts (xy 87.63 29.845) (xy 87.63 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55c2f2cf-d71f-43f2-9090-43ae4f6309ce)
)
(wire (pts (xy 165.735 109.855) (xy 194.31 109.855))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c9e5b8b-b513-451f-9e8b-2d44fab96632)
)
(wire (pts (xy 170.815 85.09) (xy 165.735 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63eb1eac-c6f6-4420-ab77-6991df171bd5)
)
(wire (pts (xy 165.735 98.425) (xy 175.26 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63ec8401-c85e-4133-91c5-5eef3aea3c67)
)
(wire (pts (xy 165.735 117.475) (xy 194.31 117.475))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66f9bcfe-07be-4efb-a5cc-8e48b3fefdeb)
)
(wire (pts (xy 193.04 71.12) (xy 193.04 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d2880f8-5875-48e2-aaa8-501586e0f0d3)
)
(wire (pts (xy 165.735 125.095) (xy 194.31 125.095))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72d0b7e6-3865-4f5f-807a-84bfbccc055d)
)
(wire (pts (xy 165.735 123.19) (xy 194.31 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7541b6bf-bcf7-46d5-aa5c-2ce37417155d)
)
(wire (pts (xy 85.09 27.94) (xy 121.285 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7670fcf4-0834-4f32-95e8-d44d0b51d0eb)
)
(wire (pts (xy 153.67 26.035) (xy 178.435 26.035))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 76aab118-3dba-405b-8c11-3a94c3c0c626)
)
(wire (pts (xy 165.735 81.28) (xy 186.69 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d529201-9fa5-465d-9ca9-4f0f68f07157)
)
(wire (pts (xy 165.735 111.76) (xy 194.31 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7dd69f79-9a2f-4d97-98d6-e99087c1119b)
)
(wire (pts (xy 165.735 147.32) (xy 192.405 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 806a9be3-fd2a-4bc7-b672-f36e6362ef39)
)
(wire (pts (xy 193.04 92.71) (xy 194.31 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82d13faf-6a30-4c8b-b0cd-aeaad54f8a5d)
)
(wire (pts (xy 85.09 84.455) (xy 85.09 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8305fc8f-717c-468f-bac8-171406742fec)
)
(wire (pts (xy 82.55 26.035) (xy 82.55 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87a81d41-fc90-4fb4-b6ca-501eed2d9e2a)
)
(wire (pts (xy 92.71 78.74) (xy 92.71 33.655))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88b51e15-f033-42a1-8d53-34832a071cba)
)
(wire (pts (xy 192.405 137.16) (xy 194.31 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 977d50be-4cb8-40b0-a7ae-654fe343d234)
)
(wire (pts (xy 82.55 86.36) (xy 109.22 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98abe9e0-51ec-4262-8b81-eb688bc35acd)
)
(wire (pts (xy 153.67 58.801) (xy 169.291 58.801))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a6613d61-8dec-40b1-b083-9efdf35a358b)
)
(wire (pts (xy 188.595 99.06) (xy 194.31 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad1a364c-4e81-4ef9-87bf-93c2bfb3c457)
)
(wire (pts (xy 153.67 42.545) (xy 170.815 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af7a8ae8-bf0d-44b6-8e28-2885a6d6985d)
)
(wire (pts (xy 153.67 40.64) (xy 172.72 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b003beae-428d-4bff-bfdd-4960aee89d39)
)
(wire (pts (xy 121.285 26.035) (xy 82.55 26.035))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b028f9f0-294f-44e7-bfda-3a8b5de3e58c)
)
(wire (pts (xy 153.67 32.385) (xy 175.26 32.385))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b3d088d8-9eaf-43a1-8c2a-5a59afba33a7)
)
(wire (pts (xy 153.67 29.845) (xy 177.165 29.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7e82091-7674-4be1-9ad8-370db9252def)
)
(wire (pts (xy 165.735 119.38) (xy 194.31 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c281acfb-221c-4ab5-a2db-f48f2639f61b)
)
(wire (pts (xy 165.735 76.835) (xy 169.291 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c4a8e832-4515-413c-86fa-f7813e987811)
)
(wire (pts (xy 87.63 82.55) (xy 109.22 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid caaaed2e-1a28-40b3-8496-30fc6799edc4)
)
(wire (pts (xy 165.735 107.95) (xy 194.31 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc4969ab-32de-4263-ac51-11c396825e0f)
)
(wire (pts (xy 191.135 94.615) (xy 194.31 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d101ded6-2a84-483b-b7e4-f029e2c17754)
)
(wire (pts (xy 165.735 113.665) (xy 194.31 113.665))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d3cc8bd1-e2dd-4306-b493-37f819659a4d)
)
(wire (pts (xy 177.165 100.33) (xy 165.735 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d506bee0-01cf-4677-9c63-31766f36472b)
)
(wire (pts (xy 177.165 29.845) (xy 177.165 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d779b292-f13b-43f1-9c7c-a5f600c9434f)
)
(wire (pts (xy 121.285 31.75) (xy 90.17 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid daf2096f-f327-4d10-ae3f-d4f7727599d4)
)
(wire (pts (xy 190.5 135.255) (xy 194.31 135.255))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid df2c9696-ef0c-45e8-94ac-1cd15ae26466)
)
(wire (pts (xy 188.595 76.835) (xy 188.595 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dfa5cdca-f2a1-4ef6-8f5a-dabc2afb75e5)
)
(wire (pts (xy 109.22 84.455) (xy 85.09 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e63721cc-d1e2-4daa-9e4d-72904df0c768)
)
(wire (pts (xy 169.291 76.835) (xy 188.595 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef2fbb6b-997d-432e-8149-f4f999b5a48c)
)
(wire (pts (xy 165.735 127) (xy 194.31 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef43d4de-0a99-4b88-ae9b-61a063474f32)
)
(wire (pts (xy 186.69 81.28) (xy 186.69 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f138740a-f7dd-4be3-a6b4-e4a896ae7128)
)
(wire (pts (xy 172.72 40.64) (xy 172.72 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f2c19df6-e5ff-4345-b8cd-23014e39ecb9)
)
(wire (pts (xy 170.815 42.545) (xy 170.815 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f5dbaee4-d68b-4c93-aee8-4b127503c454)
)
(wire (pts (xy 109.22 78.74) (xy 92.71 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fa03f13b-50f5-4e2f-abb2-616746ba10fe)
)
(wire (pts (xy 165.735 73.025) (xy 191.135 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fb776121-34af-4f21-b46f-4aaf94a7aeba)
)
(label "~{USER_SW0}" (at 165.735 26.035 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 36a83b79-cda2-4e03-bab3-c6e5ba6e82ca)
)
(label "I2C0_SDA" (at 165.735 42.545 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8a00b329-7687-4300-bae4-7fa4e943eab4)
)
(label "I2C0_SCL" (at 165.735 40.64 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid d84ac262-ba73-492f-9aa7-cdd1f5bde58d)
)
(label "LED_DI" (at 165.735 29.845 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e575df0f-0506-42eb-9c3b-93ad32bf6411)
)
(label "USER_LED" (at 165.735 32.385 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f5dea0c5-0204-48c8-bc42-6c7cf9d91e0b)
)
(sheet (at 28.575 41.91) (size 33.02 17.78) (fields_autoplaced)
(stroke (width 0.1524) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 6ea7b2ea-28e4-4ca5-9b05-9fcac11f3492)
(property "Sheet name" "power_supply" (id 0) (at 28.575 41.1984 0)
(effects (font (size 1.27 1.27) bold) (justify left bottom))
)
(property "Sheet file" "power_supply.kicad_sch" (id 1) (at 28.575 60.2746 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
)
(sheet (at 194.31 88.9) (size 46.355 50.165) (fields_autoplaced)
(stroke (width 0.1524) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid c6be3312-b21a-44a1-9087-4385ef7236e6)
(property "Sheet name" "connectors" (id 0) (at 194.31 88.1884 0)
(effects (font (size 1.27 1.27) bold) (justify left bottom))
)
(property "Sheet file" "connectors.kicad_sch" (id 1) (at 194.31 139.6496 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "USER_IO_7" input (at 194.31 117.475 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6021757f-3d08-4292-8e32-e670f90fb8dd)
)
(pin "USER_IO_4" input (at 194.31 111.76 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8b9b2e75-6e68-46e6-b6d5-ec16d189226c)
)
(pin "USER_IO_2" input (at 194.31 107.95 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2c75c6dc-07e6-48a4-9c13-81c4439f4e89)
)
(pin "USER_IO_0" input (at 194.31 104.14 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e9922abd-0b5d-49fb-b701-6cdf11919c5b)
)
(pin "USER_IO_5" input (at 194.31 113.665 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3a7c4a4f-acb7-4319-96f1-6631a6219223)
)
(pin "USER_IO_1" input (at 194.31 106.045 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2f2762a4-3868-4de3-bb44-e6efbdfea6f7)
)
(pin "USER_IO_6" input (at 194.31 115.57 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2ac3f94c-2888-453f-a8e9-f44fe45b449d)
)
(pin "USER_IO_3" input (at 194.31 109.855 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6f688a3e-afaa-4a5e-a455-1ff26225af08)
)
(pin "SWDCLK" input (at 194.31 135.255 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5eda67c8-c17d-40a0-a7f3-7f73e8db7864)
)
(pin "USB_D+" input (at 194.31 92.71 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ad511699-3f6e-485a-a474-ce83d4466f8a)
)
(pin "~{RESET}" input (at 194.31 99.06 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 91d74923-ef07-4e33-b230-cb7d64a43fbc)
)
(pin "SWDIO" input (at 194.31 137.16 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 815bdff7-6bab-451c-a05d-bd14cb75cbc4)
)
(pin "USB_D-" input (at 194.31 94.615 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid eb5e998f-256e-48c7-8fd9-043f80f6b0de)
)
(pin "USER_IO_11" input (at 194.31 125.095 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9cf26128-4136-4285-b289-84d63951e8e2)
)
(pin "USER_IO_9" input (at 194.31 121.285 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid aee99a7d-76f7-4338-aecf-09661cd92977)
)
(pin "USER_IO_10" input (at 194.31 123.19 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 68b6d6f6-0378-4de1-86e8-d11887c1a107)
)
(pin "USER_IO_12" input (at 194.31 127 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d8203f9f-972f-4ddd-930d-782e1b347473)
)
(pin "USER_IO_8" input (at 194.31 119.38 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid fde14460-f046-4820-913d-a9941eb991af)
)
)
(sheet (at 121.285 21.59) (size 32.385 41.275) (fields_autoplaced)
(stroke (width 0.1524) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid edc51190-cad1-4c5e-beb6-0b752ab7f2ca)
(property "Sheet name" "peripherals" (id 0) (at 121.285 20.8784 0)
(effects (font (size 1.27 1.27) bold) (justify left bottom))
)
(property "Sheet file" "peripherals.kicad_sch" (id 1) (at 121.285 63.4496 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "QSPI_SIO0" input (at 121.285 29.845 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7d23d832-5aec-4904-be7b-244410768207)
)
(pin "~{QSPI_CS}" input (at 121.285 26.035 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 07481a4e-2e2b-4434-bbef-5ac2dc422795)
)
(pin "QSPI_SCLK" input (at 121.285 27.94 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4066c11b-e886-421f-adf5-c69c4a74326d)
)
(pin "USER_LED" input (at 153.67 32.385 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fbf2664c-3977-4772-b250-ddb06c7e90f4)
)
(pin "I2C0_SCL" input (at 153.67 40.64 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1b15b3d8-a915-48d5-82e4-3e90ca16cf51)
)
(pin "QSPI_SIO3" input (at 121.285 35.56 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 71fba6ec-ef39-4198-8552-45d21ab61adc)
)
(pin "QSPI_SIO1" input (at 121.285 31.75 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 924790b4-667f-4cf2-a671-b3a7590ba777)
)
(pin "I2C0_SDA" input (at 153.67 42.545 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9a2e2a16-b23a-4f9e-aeb4-9c7922e5a647)
)
(pin "QSPI_SIO2" input (at 121.285 33.655 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9368fa9e-8267-4d33-8d98-4d74d662666c)
)
(pin "LED_DI" input (at 153.67 29.845 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7240840b-ffdc-46a3-aa8f-2f2204207d3b)
)
(pin "~{USER_SW0}" input (at 153.67 26.035 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dc74c452-a14d-4f8a-a5c3-b20507315bba)
)
(pin "~{RESET}" input (at 153.67 58.801 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7d414357-12f6-4e3e-b36d-6541653de389)
)
)
(sheet (at 109.22 69.215) (size 56.515 81.28) (fields_autoplaced)
(stroke (width 0.1524) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid ef153473-0ff6-41c4-b5ea-5e2451c67924)
(property "Sheet name" "microcontroller" (id 0) (at 109.22 68.5034 0)
(effects (font (size 1.27 1.27) bold) (justify left bottom))
)
(property "Sheet file" "microcontroller.kicad_sch" (id 1) (at 109.22 151.0796 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "QSPI_SIO0" input (at 109.22 82.55 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 746d9351-8f16-46a4-8ec2-a5ce2cab1809)
)
(pin "QSPI_SIO2" input (at 109.22 78.74 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 51316d6b-14ac-4640-97d1-4b5fb775fdc0)
)
(pin "~{RESET}" input (at 165.735 76.835 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cc3d75ff-adab-4398-898c-1ab5964b8501)
)
(pin "QSPI_SIO1" input (at 109.22 80.645 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e4879574-1fad-4211-8b5b-630c7152da47)
)
(pin "QSPI_SIO3" input (at 109.22 76.835 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f80dfb3c-f2c7-4932-a1b4-97d202737486)
)
(pin "SWCLK" input (at 165.735 145.415 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0ada1118-ecb6-44bc-b96a-9bcb1b466fa0)
)
(pin "QSPI_SCLK" input (at 109.22 84.455 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 30430c54-28dd-48a1-8a22-b1271301357c)
)
(pin "~{QSPI_CS}" input (at 109.22 86.36 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 75bf02dc-955c-44b2-9fec-d5b0c948903f)
)
(pin "SWDIO" input (at 165.735 147.32 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 99c2c7fb-a0e6-4ebe-8efe-15a8f60a16f2)
)
(pin "GPIO_04" output (at 165.735 88.9 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fb31ad07-de2f-4f40-b1e4-0ca53d818fa5)
)
(pin "GPIO_03" output (at 165.735 86.995 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 291b5224-413f-44a5-b13a-71adc6505b51)
)
(pin "GPIO_06" output (at 165.735 92.71 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5e41ef75-10a0-48f0-a309-278cb5162cd3)
)
(pin "GPIO_05" output (at 165.735 90.805 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4c9ae4fc-4ab9-49b2-b7f8-69fe6ca48126)
)
(pin "GPIO_07" output (at 165.735 94.615 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 60c00a76-e78c-40ab-a22c-26b2938ec9c7)
)
(pin "GPIO_13" output (at 165.735 106.045 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2544d878-4fdf-4fb7-a2da-5ad7295dd24f)
)
(pin "GPIO_12" output (at 165.735 104.14 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 777cb84a-9956-4bee-b72f-7043569c338c)
)
(pin "GPIO_08" output (at 165.735 96.52 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e832f99a-d4c6-422b-a703-dda3f3901a06)
)
(pin "GPIO_09" output (at 165.735 98.425 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 281df8ef-79cd-4adc-92e4-b41ecec028a3)
)
(pin "GPIO_11" output (at 165.735 102.235 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 372e0bd2-21a1-4d60-a53d-0a158506d991)
)
(pin "GPIO_10" output (at 165.735 100.33 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ac64e895-8592-42be-b45a-8ebbdca1d5b4)
)
(pin "GPIO_14" output (at 165.735 107.95 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c1778ed6-223e-4809-9ac0-c2ee9f8ccd27)
)
(pin "GPIO_15" output (at 165.735 109.855 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 989b0c18-5c22-48d9-bb2f-6119c255f45c)
)
(pin "GPIO_25" output (at 165.735 128.905 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0cb6407d-0035-487f-ae59-01339c02edeb)
)
(pin "GPIO_24" output (at 165.735 127 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 42bddc2f-a25d-4f19-bb67-3ba1a4578b4a)
)
(pin "GPIO_23" output (at 165.735 125.095 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dbef3285-7b0b-4b71-b93b-2df0e6d8a4ef)
)
(pin "GPIO_17" output (at 165.735 113.665 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 596fcbbe-50df-44cf-8078-d1023ed0eb18)
)
(pin "GPIO_21" output (at 165.735 121.285 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 779f6595-b416-496d-9036-325416daa333)
)
(pin "GPIO_20" output (at 165.735 119.38 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dfe7d83f-d91b-4f98-919c-bbe1ae9dd2df)
)
(pin "GPIO_19" output (at 165.735 117.475 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3a5f618f-521d-4b02-bfe2-883a8248ca8c)
)
(pin "GPIO_18" output (at 165.735 115.57 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3fe204ec-615c-48e3-961d-174e0b4e3849)
)
(pin "GPIO_16" output (at 165.735 111.76 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7ac25225-b241-41cc-bcb0-a7965929f308)
)
(pin "GPIO_22" output (at 165.735 123.19 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 93b6b2be-2c08-4a32-ae9c-f48d788aed9a)
)
(pin "GPIO_26_ADC_1" output (at 165.735 134.62 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 672ad077-250d-43ad-bce9-0b35a5e2aebf)
)
(pin "GPIO_26_ADC_0" output (at 165.735 132.715 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ab8b3031-130c-481a-9724-4303f6d55771)
)
(pin "GPIO_26_ADC_2" output (at 165.735 136.525 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 101b6fe8-f0be-44a9-992f-2498bce4d8f0)
)
(pin "GPIO_26_ADC_3" output (at 165.735 138.43 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dfc294f6-d93b-44fe-8adc-0ef058d5a904)
)
(pin "GPIO_01" output (at 165.735 83.185 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cf6f3b95-d498-4bc0-b4af-ef9130bc8af0)
)
(pin "GPIO_02" output (at 165.735 85.09 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid df5dcc81-e526-4c46-9549-d1211887dd0b)
)
(pin "USB_D+" output (at 165.735 71.12 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1f687c1c-3ff8-4804-8448-c8914ad8d86f)
)
(pin "GPIO_00" output (at 165.735 81.28 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a8a19434-17b7-4116-8192-13fb9bba169d)
)
(pin "USB_D-" output (at 165.735 73.025 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4141dc4a-0da4-4949-ac7f-f89420d5c83c)
)
)
(sheet_instances
(path "/" (page "1"))
(path "/6ea7b2ea-28e4-4ca5-9b05-9fcac11f3492" (page "2"))
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca" (page "4"))
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924" (page "5"))
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6" (page "5"))
)
(symbol_instances
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/5982b1b9-4ab4-41a9-91e0-9f74dc7af70f"
(reference "#FLG02") (unit 1) (value "PWR_FLAG") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/65425915-745b-4c61-9020-fb67df8e0fd3"
(reference "#FLG03") (unit 1) (value "PWR_FLAG") (footprint "")
)
(path "/6ea7b2ea-28e4-4ca5-9b05-9fcac11f3492/886ed550-41f8-4344-9cce-d606cab57c1f"
(reference "#PWR01") (unit 1) (value "VBUS") (footprint "")
)
(path "/6ea7b2ea-28e4-4ca5-9b05-9fcac11f3492/d6738dc3-a8e3-4054-870b-61b297a8b5b5"
(reference "#PWR02") (unit 1) (value "+3.3V") (footprint "")
)
(path "/6ea7b2ea-28e4-4ca5-9b05-9fcac11f3492/87b925fb-96f1-4afb-8ee0-58ddedfd8ef9"
(reference "#PWR03") (unit 1) (value "GND") (footprint "")
)
(path "/6ea7b2ea-28e4-4ca5-9b05-9fcac11f3492/59110006-0849-4069-a865-59cc01918101"
(reference "#PWR04") (unit 1) (value "GND") (footprint "")
)
(path "/6ea7b2ea-28e4-4ca5-9b05-9fcac11f3492/519380ed-996a-4515-8909-8b890252dd30"
(reference "#PWR05") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/85b87af7-cde4-42be-b2b4-b8fffe29d7f7"
(reference "#PWR06") (unit 1) (value "+5V") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/68b5b869-4369-482e-8871-a621ccd9e6ee"
(reference "#PWR07") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/88734d72-7957-4c93-b8d1-d9bdb6c05859"
(reference "#PWR08") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/96abb28f-fed9-4d0b-aa13-6a5f0644887a"
(reference "#PWR09") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/15930230-59d9-44b3-b1d1-fe06ab793029"
(reference "#PWR010") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/24dd3d8e-46eb-4caf-8878-f2880837407b"
(reference "#PWR011") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/7ce41a83-a5c0-47c7-bfc1-7235ea4b5302"
(reference "#PWR012") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/938feb70-dcbc-40ac-9aad-8909aaa31839"
(reference "#PWR013") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/7dfc512d-9b1c-4b4d-8dec-e3bb8de8f0f3"
(reference "#PWR014") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/2df13110-1803-49c4-bd96-2f7f6d99967c"
(reference "#PWR015") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/71350b7d-d4ab-4eba-944f-12f3bcf4592b"
(reference "#PWR016") (unit 1) (value "+5V") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/71e428f8-c188-4541-9cba-13d84149823c"
(reference "#PWR017") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/823e6e25-07fc-4e81-8cb2-7bedf6deebad"
(reference "#PWR018") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/9adf2be9-a40e-4611-82db-01db94747bf2"
(reference "#PWR019") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/6d8857b6-238e-4ea1-82ee-a987d2b2be63"
(reference "#PWR020") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/a650a5e2-adea-4c10-9201-766272be7be8"
(reference "#PWR021") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/c8a90526-93d0-4a86-971f-077feee71418"
(reference "#PWR022") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/98440eb4-cac1-4c5a-971f-b5e29b43634b"
(reference "#PWR023") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/a67a52ea-4224-4c36-99af-9e6555d222fd"
(reference "#PWR024") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/9c7d8f58-db28-4f9c-a81c-8ab2f0ad7fff"
(reference "#PWR025") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/b2e0df2a-26bb-437c-a3ff-a16f517a0e4b"
(reference "#PWR026") (unit 1) (value "+5V") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/71cd9444-c1a9-4cef-a5eb-185974019311"
(reference "#PWR027") (unit 1) (value "+3.3V") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/4bafb93c-ce66-457d-aad7-9c395a82f5ac"
(reference "#PWR028") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/2fd9b72a-dee3-403c-81fd-8be6aad64ddf"
(reference "#PWR029") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/1e722545-0c71-4ef2-bd9b-5a7bf90a5b4e"
(reference "#PWR030") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/85f45776-c230-475c-9fd3-0fbfba8a9cf6"
(reference "#PWR031") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/12f3151a-8c41-4128-b06d-a3f997b98ee5"
(reference "#PWR032") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/fe50b952-5a79-4547-89b2-cf420371b00b"
(reference "#PWR033") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/14f0979c-87ae-454d-b99f-f6ca300b9165"
(reference "#PWR034") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/11764062-4f3c-4b70-b310-fe1f675abf87"
(reference "#PWR035") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/5c537997-c1a9-4f2c-a363-3cfee78fd9df"
(reference "#PWR036") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/78ae59bf-518c-4960-a8d1-7bd012a19c29"
(reference "#PWR037") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/8c350bad-085a-431a-9d6e-3839f38ac5dc"
(reference "#PWR038") (unit 1) (value "+5V") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/fdde4c35-cc02-42e2-a9c4-f3db71a58303"
(reference "#PWR039") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/620ac9ab-0d9c-4726-8240-2be60ee44a37"
(reference "#PWR040") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/c72fe7ba-e58d-4ba1-a34b-130c4a3d7ee6"
(reference "#PWR041") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/fce40a1d-4d4a-4362-83ff-019c7c4aab6f"
(reference "#PWR042") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/84ac86af-0e74-422c-80ef-e3a1d53840b2"
(reference "#PWR043") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/6194a8a1-eb27-46bf-8662-df551813dd00"
(reference "#PWR044") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/c8e47a99-5079-40e2-801c-87c75802563a"
(reference "#PWR045") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/5884d9a4-fff6-43e6-95f4-abc619d0b85a"
(reference "#PWR046") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/6833c5fb-c708-415d-adcb-0bfd7c719628"
(reference "#PWR047") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/7d0ee66e-3f55-4c8f-9f51-f58ef23a8ccd"
(reference "#PWR048") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/15787e7a-4744-4e58-aa15-b72bb9ca5ba5"
(reference "#PWR049") (unit 1) (value "+5V") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/6d456efc-a6d0-4feb-b5ba-1914f77ee78d"
(reference "#PWR050") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/7a0b96a2-eef5-45e2-9538-719621e3b760"
(reference "#PWR051") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/f1f75640-fe76-4f12-a705-4aedafe92fe8"
(reference "#PWR052") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/89417eba-2a86-4846-b1e8-f52244870f9a"
(reference "#PWR053") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/2eeb7d7e-9f31-4542-b3c4-ff339f2fe73f"
(reference "#PWR054") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/19cfc90a-8da1-40cf-b8d8-9fade9f58042"
(reference "#PWR055") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/2a53d399-97ad-44ce-936c-fa6b8161995a"
(reference "#PWR056") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/b3c8aa35-581c-47fe-86da-8bdc981c45c2"
(reference "#PWR057") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/b3beb9de-4f0f-420e-94f6-80af0fe39f46"
(reference "#PWR058") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/09c949f8-c901-428b-99cf-7e131b602b40"
(reference "#PWR059") (unit 1) (value "+3.3V") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/f6af1eb6-b90b-4cb5-a016-ebe94993ea13"
(reference "#PWR060") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/355c0303-33cb-41a2-b478-d8d98cbfec0a"
(reference "#PWR061") (unit 1) (value "+3.3V") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/e81eb9cc-7dac-4d2f-8d9d-d49dafc832bc"
(reference "#PWR062") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/9c554500-18fe-4215-b825-bd22a5ef4fe9"
(reference "#PWR063") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/b755cc40-d885-4b9d-a3a9-ab686f496b1a"
(reference "#PWR064") (unit 1) (value "+3.3V") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/863ef2f1-892a-4235-b8c8-2d707c40c708"
(reference "#PWR065") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/d8323d07-817d-41d4-a4cd-d5c8e4a24dca"
(reference "#PWR066") (unit 1) (value "GND") (footprint "")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/fdda0530-1c1f-4586-a07f-057c5f18208c"
(reference "#PWR067") (unit 1) (value "+1V1") (footprint "")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/664b7cfa-049a-48bb-8004-a67de2644697"
(reference "#PWR068") (unit 1) (value "+3.3V") (footprint "")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/906c7475-f1ad-4202-8f27-242f1e7dbbfa"
(reference "#PWR069") (unit 1) (value "GND") (footprint "")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/579124f0-dfff-4ba8-a89e-080af13df655"
(reference "#PWR070") (unit 1) (value "GND") (footprint "")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/020a3b3c-8f90-4f3b-b793-7bce4328ed91"
(reference "#PWR071") (unit 1) (value "GND") (footprint "")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/c9d3dc59-4b58-48b9-b059-318268ecfbc2"
(reference "#PWR072") (unit 1) (value "GND") (footprint "")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/3e4fd8fc-8ce5-4eac-9daf-4fc794b270f7"
(reference "#PWR073") (unit 1) (value "+3.3V") (footprint "")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/abb897fd-a7ff-44df-9c51-c25d6f8f0279"
(reference "#PWR074") (unit 1) (value "GND") (footprint "")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/531b94fa-6c27-4aec-a973-7dfbaeae15ee"
(reference "#PWR075") (unit 1) (value "GND") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/34ef920c-2931-4c82-9aeb-4bdcc88643aa"
(reference "#PWR076") (unit 1) (value "+3.3V") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/314c425d-9db1-408c-ae08-d557442e7ee1"
(reference "#PWR077") (unit 1) (value "GND") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/e02a3a4c-4106-4684-b00e-536d5c6713f3"
(reference "#PWR078") (unit 1) (value "VBUS") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/9d03955f-1947-4624-ada8-0f32d6d02be5"
(reference "#PWR079") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/031bbbdc-5948-4207-9dc9-02a91a3dee34"
(reference "#PWR080") (unit 1) (value "GND") (footprint "")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/d30f1736-54d5-4589-9bc3-8553094df54c"
(reference "#PWR081") (unit 1) (value "GND") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/f637fcd5-98e3-40f6-8691-ff60029952aa"
(reference "#PWR083") (unit 1) (value "GND") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/73a4513e-9e4c-450d-94a1-19f7ace44e1a"
(reference "#PWR0101") (unit 1) (value "GND") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/554574c9-bc4f-4b13-a83f-1b836f934222"
(reference "#PWR0102") (unit 1) (value "GND") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/0e0f70bd-d675-4136-b43b-58359d4d5783"
(reference "#PWR0103") (unit 1) (value "+3.3V") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/e6c9093f-a3e3-4ccb-9ca7-7e009ababb76"
(reference "#PWR0104") (unit 1) (value "+3.3V") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/feacaca1-eda0-45d5-8aa6-ff00a29af825"
(reference "#PWR0105") (unit 1) (value "VBUS") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/de43492b-e1fe-4081-b571-3ecf2067157c"
(reference "#PWR0106") (unit 1) (value "VBUS") (footprint "")
)
(path "/c6be3312-b21a-44a1-9087-4385ef7236e6/97323299-c695-4c1e-a446-5ef647fb9af6"
(reference "#PWR0107") (unit 1) (value "+5V") (footprint "")
)
(path "/6ea7b2ea-28e4-4ca5-9b05-9fcac11f3492/05f879d7-042f-43bd-bcde-728faaa5380d"
(reference "C1") (unit 1) (value "10u") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/6ea7b2ea-28e4-4ca5-9b05-9fcac11f3492/30016908-d47f-46c1-99f9-bbc36d261bd4"
(reference "C2") (unit 1) (value "10u") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/8f350928-4013-4dc3-a14d-572fd64dcd55"
(reference "C3") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/c8a2e2df-1880-4ffd-b1aa-07d4aff46a2c"
(reference "C4") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/5be4fdcc-3f34-42f1-9502-ad9393f1f34b"
(reference "C5") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/2ff35676-ef57-4348-b0ca-2d19990dd696"
(reference "C6") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/0101a11b-f86d-495f-8b87-832c5f1d40a1"
(reference "C7") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/edc51190-cad1-4c5e-beb6-0b752ab7f2ca/0a90da85-8db7-4098-b4c5-5924f984f7d7"
(reference "C8") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/8d711d6e-69eb-4136-a7ea-480e7c084882"
(reference "C9") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/f8f8a403-edf4-4b26-b6df-cf9b5708d0c0"
(reference "C10") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/d4785446-90b6-4de9-9efd-e9d12f44f4cb"
(reference "C11") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/f129e475-56ce-42d2-bcf6-08447f99766a"
(reference "C12") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/958ef15d-e7fa-49b8-817f-d960790cc375"
(reference "C13") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/cb91779b-2c5d-4bba-b092-d281b0a4b46d"
(reference "C14") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/87fd0595-6132-4d44-b72a-a444d0f468ef"
(reference "C15") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/11f0d5cb-cfb8-4703-bd38-aebad0ea982e"
(reference "C16") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/2b57e72c-5e11-4acf-a3aa-00f61e7bd83d"
(reference "C17") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/6493d2c0-351a-4c86-a968-a386f4b634b6"
(reference "C18") (unit 1) (value "100n") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/5b159d4c-f543-4245-92e0-047b4b1cb060"
(reference "C19") (unit 1) (value "1u") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
(path "/ef153473-0ff6-41c4-b5ea-5e2451c67924/2add70b6-704c-473f-904b-4303d160aa7b"
(reference "C20") (unit 1) (value "1u") (footprint "Capacitor_SMD:C_0402_1005Metric")