-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCM4IOv5.kicad_sch
1525 lines (1501 loc) · 73.1 KB
/
CM4IOv5.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 e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(title_block
(title "Compute Module 4 IO Board - Top Level")
(rev "1")
(company "© 2020-2022 Raspberry Pi Ltd (formerly Raspberry Pi (Trading) Ltd.)")
(comment 1 "www.raspberrypi.com")
)
(lib_symbols
(symbol "Mechanical:MountingHole" (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (id 1) (at 0 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 1.27) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 140.97 110.49) (diameter 1.016) (color 0 0 0 0)
(uuid 87c78429-be2b-40ed-8d3b-56cb9666a56f)
)
(junction (at 137.16 106.68) (diameter 1.016) (color 0 0 0 0)
(uuid 99030c03-63b4-49ba-b5ab-4d56974f7963)
)
(wire (pts (xy 81.28 52.07) (xy 72.39 52.07))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 02165243-61a3-4857-84ba-71a77cb9a387)
)
(wire (pts (xy 168.91 55.88) (xy 190.5 55.88))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 04f5865e-f449-4408-a0c8-771cccfcb129)
)
(wire (pts (xy 105.41 47.498) (xy 115.824 47.498))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0f3c9e3a-9c59-4881-b27a-d0e982b3ea8e)
)
(wire (pts (xy 168.91 69.85) (xy 190.5 69.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 213a2af1-412b-47f4-ab3b-c5f43b6be7a6)
)
(wire (pts (xy 151.13 116.84) (xy 151.13 101.6))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 29256b3d-9450-4c0a-a4d4-911f04b9c140)
)
(wire (pts (xy 137.16 101.6) (xy 137.16 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2bef89de-08c7-4a13-9d85-67948d429ca0)
)
(wire (pts (xy 162.56 116.84) (xy 162.56 101.6))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2d6718e7-f18d-444d-9792-ddf1a113460c)
)
(wire (pts (xy 147.32 101.6) (xy 147.32 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 37e4dc66-4492-4061-908d-7213940a2ec3)
)
(wire (pts (xy 168.91 135.89) (xy 179.07 135.89))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 43891a3c-749f-498d-ba99-685a27689b0d)
)
(wire (pts (xy 105.41 55.88) (xy 132.08 55.88))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 46cfd089-6873-4d8b-89af-02ff30e49472)
)
(wire (pts (xy 140.97 110.49) (xy 140.97 101.6))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 483f60da-14d7-4f88-8d01-3f9f30784c70)
)
(wire (pts (xy 168.91 58.42) (xy 190.5 58.42))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6199bec7-e7eb-4ae0-b9ec-c563e157d635)
)
(wire (pts (xy 105.41 110.49) (xy 140.97 110.49))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 68b52f01-fa04-4908-bf88-60c62ace1cfa)
)
(wire (pts (xy 137.16 106.68) (xy 137.16 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6ca3c38c-4e71-4202-b6c1-1b25f04a27ae)
)
(wire (pts (xy 168.91 50.8) (xy 190.5 50.8))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 71c77456-1405-42e3-95ed-69e629de0558)
)
(wire (pts (xy 119.38 77.47) (xy 132.08 77.47))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7e969d15-6cc0-4258-8b27-586608a21adb)
)
(wire (pts (xy 168.91 64.77) (xy 190.5 64.77))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7f3eb118-a20c-4239-b800-c9211c66847d)
)
(wire (pts (xy 81.28 58.42) (xy 72.39 58.42))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 825c70b0-4860-42b7-97dc-86bfa46e06fd)
)
(wire (pts (xy 218.44 62.23) (xy 226.06 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 909b030b-fa1a-4fe8-b1ee-422b4d9e23cf)
)
(wire (pts (xy 218.44 111.76) (xy 226.06 111.76))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 936e2ca6-11ae-4f42-9128-52bb329f3d21)
)
(wire (pts (xy 105.41 106.68) (xy 137.16 106.68))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9d984d1b-8097-407f-92f3-3ef68867dcfa)
)
(wire (pts (xy 68.58 113.03) (xy 81.28 113.03))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9ff4672a-e1a4-4a1e-887d-1b9a3429d278)
)
(wire (pts (xy 158.75 101.6) (xy 158.75 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b603d26a-e034-42fb-8327-b60c5bf9cdd2)
)
(wire (pts (xy 105.41 116.84) (xy 121.92 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b8c83ad1-b3c9-495c-bdc6-62dead00f5ad)
)
(wire (pts (xy 154.94 116.84) (xy 154.94 101.6))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b994142f-02ac-4881-9587-6d3df53c96d2)
)
(wire (pts (xy 105.41 60.96) (xy 132.08 60.96))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bb4f0314-c44c-4dda-b85c-537120eaae9a)
)
(wire (pts (xy 81.28 115.57) (xy 68.58 115.57))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bbb15673-6d42-42b8-9d51-7515b3ad9ee9)
)
(wire (pts (xy 132.08 81.28) (xy 119.38 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cb868d2e-5efb-4bfb-8796-88435b326918)
)
(wire (pts (xy 179.07 130.81) (xy 168.91 130.81))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cbc539d2-6a10-4052-9b7a-f10326dcac67)
)
(wire (pts (xy 168.91 73.66) (xy 190.5 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d2de4093-1fc2-4bc1-94b6-4d0fe3426c6f)
)
(wire (pts (xy 168.91 62.23) (xy 190.5 62.23))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e47adf3d-9c24-4345-80c9-66679cad107e)
)
(wire (pts (xy 105.41 53.34) (xy 132.08 53.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e83e0227-ac0f-4180-82bd-68d3a7b56476)
)
(wire (pts (xy 218.44 115.57) (xy 226.06 115.57))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ebadd2a5-21ab-4a7e-b5bc-6f737367e560)
)
(wire (pts (xy 68.58 110.49) (xy 81.28 110.49))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid edc9ab4f-487a-48dc-95f2-4d87f0e9cf9e)
)
(wire (pts (xy 121.92 137.16) (xy 132.08 137.16))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f022716e-b121-4cbf-a833-20e924070c22)
)
(wire (pts (xy 168.91 48.26) (xy 190.5 48.26))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f144a97d-c3f0-423f-b0a9-3f7dbc42478b)
)
(wire (pts (xy 121.92 130.81) (xy 121.92 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f1dd8642-b405-490b-a449-d1cc5797fda8)
)
(wire (pts (xy 140.97 116.84) (xy 140.97 110.49))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fb03d859-dcc9-4533-b352-64830e0e5423)
)
(wire (pts (xy 132.08 130.81) (xy 121.92 130.81))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fc0a4225-db46-4d48-8163-d522602d57cd)
)
(text "Connectors\n-------\nFAN\nBattery" (at 88.9 113.03 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0c30a4be-5679-499f-8c5b-5f3024f9d6cf)
)
(text "Connector\n------\nPCIe x1" (at 204.47 45.72 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2f3deced-880d-4075-a81b-95c62da5b94d)
)
(text "Connectors\n-------\nDC Barrel Jack\n4 pin power" (at 193.04 114.3 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3cfcbcc7-4f45-46ab-82a8-c414c7972161)
)
(text "Connectors\n-------\nDual USB\nmicroUSB" (at 83.82 49.53 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4dc6088c-89a5-4db7-b3ae-db4b6396ad49)
)
(text "Connectors\n-------\nEthernet\nSDCARD\n40way RPI\nJumpers"
(at 146.05 142.24 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a501555e-bbc7-4b58-ad89-28a0cd3dd6d0)
)
(text "Connectors\n-------\nHDMI 0\nHDMI 1\nCSI 0\nCSI 1\nDSI 0\nDSI 1"
(at 144.78 57.15 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid db83d0af-e085-4050-8496-fa2ebdecbd62)
)
(label "+5v" (at 220.98 115.57 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0d35483a-0b12-46cc-b9f2-896fd6831779)
)
(label "+12v" (at 72.39 110.49 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4d609e7c-74c9-4ae9-a26d-946ff00c167d)
)
(label "+5v" (at 170.18 130.81 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 55992e35-fe7b-468a-9b7a-1e4dc931b904)
)
(label "+5v" (at 123.19 77.47 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5740c959-93d8-47fd-8f68-62f0109e753d)
)
(label "+5v" (at 72.39 113.03 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 786b6072-5772-4bc1-8eeb-6c4e19f2a91b)
)
(label "+3.3v" (at 73.66 58.42 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7e08f2a4-63d6-468b-bd8b-ec607077e023)
)
(label "+12v" (at 220.98 111.76 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9702d639-3b1f-4825-8985-b32b9008503d)
)
(label "+3.3v" (at 72.39 115.57 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9a9f2d82-f64d-4264-8bec-c182528fc4de)
)
(label "+3.3v" (at 170.18 135.89 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a06e8e78-f567-42e6-b645-013b1073ca31)
)
(label "+5v" (at 73.66 52.07 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b60c50d1-225e-415c-8712-7acb5e3dc8ea)
)
(label "nEXTRST" (at 106.934 47.498 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b6bcc3cf-50de-4a33-bc41-678825c1ecf2)
)
(label "+3.3v" (at 123.19 81.28 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c3c93de0-69b1-4a04-8e0b-d78caf487c63)
)
(label "+12v" (at 219.71 62.23 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ec9e24d8-d1c5-40e2-9812-dc315d05f470)
)
(label "nEXTRST" (at 123.19 137.16 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f9865a9f-edb8-49c7-828f-4896e1f3047a)
)
(symbol (lib_id "Mechanical:MountingHole") (at 22.86 180.975 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e3b1a1d)
(property "Reference" "H4" (id 0) (at 25.4 179.832 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 25.4 182.118 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (id 2) (at 22.86 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 22.86 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field4" "nf" (id 4) (at 22.86 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field5" "nf" (id 5) (at 22.86 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field6" "nf" (id 6) (at 22.86 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field7" "nf" (id 7) (at 22.86 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "M2.5 mounting hole" (id 8) (at 22.86 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 22.86 175.895 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e3b25a9)
(property "Reference" "H3" (id 0) (at 25.4 174.752 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 25.4 177.038 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (id 2) (at 22.86 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 22.86 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field4" "nf" (id 4) (at 22.86 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field5" "nf" (id 5) (at 22.86 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field6" "nf" (id 6) (at 22.86 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field7" "nf" (id 7) (at 22.86 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "M2.5 mounting hole" (id 8) (at 22.86 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 22.86 170.815 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e3b2cb2)
(property "Reference" "H2" (id 0) (at 25.4 169.672 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 25.4 171.958 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (id 2) (at 22.86 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 22.86 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field4" "nf" (id 4) (at 22.86 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field5" "nf" (id 5) (at 22.86 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field6" "nf" (id 6) (at 22.86 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field7" "nf" (id 7) (at 22.86 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "M2.5 mounting hole" (id 8) (at 22.86 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 22.86 165.735 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e3b2f75)
(property "Reference" "H1" (id 0) (at 25.4 164.592 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 25.4 166.878 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (id 2) (at 22.86 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 22.86 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field4" "nf" (id 4) (at 22.86 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field5" "nf" (id 5) (at 22.86 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field6" "nf" (id 6) (at 22.86 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field7" "nf" (id 7) (at 22.86 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "M2.5 mounting hole" (id 8) (at 22.86 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 43.815 165.735 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e3b32fa)
(property "Reference" "H5" (id 0) (at 46.355 164.592 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 46.355 166.878 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (id 2) (at 43.815 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 43.815 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field4" "nf" (id 4) (at 43.815 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field5" "nf" (id 5) (at 43.815 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field6" "nf" (id 6) (at 43.815 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field7" "nf" (id 7) (at 43.815 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "M2.5 mounting hole" (id 8) (at 43.815 165.735 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 43.815 180.975 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e3b330c)
(property "Reference" "H8" (id 0) (at 46.355 179.832 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 46.355 182.118 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (id 2) (at 43.815 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 43.815 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field4" "nf" (id 4) (at 43.815 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field5" "nf" (id 5) (at 43.815 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field6" "nf" (id 6) (at 43.815 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field7" "nf" (id 7) (at 43.815 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "M2.5 mounting hole" (id 8) (at 43.815 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 43.815 175.895 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e3b331e)
(property "Reference" "H7" (id 0) (at 46.355 174.752 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 46.355 177.038 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (id 2) (at 43.815 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 43.815 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field4" "nf" (id 4) (at 43.815 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field5" "nf" (id 5) (at 43.815 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field6" "nf" (id 6) (at 43.815 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field7" "nf" (id 7) (at 43.815 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "M2.5 mounting hole" (id 8) (at 43.815 175.895 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 43.815 170.815 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e3b3330)
(property "Reference" "H6" (id 0) (at 46.355 169.672 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 46.355 171.958 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (id 2) (at 43.815 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 43.815 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field4" "nf" (id 4) (at 43.815 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field5" "nf" (id 5) (at 43.815 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field6" "nf" (id 6) (at 43.815 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Field7" "nf" (id 7) (at 43.815 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Part Description" "M2.5 mounting hole" (id 8) (at 43.815 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(sheet (at 132.08 116.84) (size 36.83 31.75)
(stroke (width 0.1524) (type solid) (color 132 0 132 1))
(fill (color 255 255 255 0.0000))
(uuid 00000000-0000-0000-0000-00005cff706a)
(property "Sheet name" "CM4_GPIO ( Ethernet, GPIO, SDCARD)" (id 0) (at 132.08 151.13 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheet file" "CM4_GPIO.kicad_sch" (id 1) (at 132.08 152.4 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "ID_SC" output (at 162.56 116.84 90)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2e642b3e-a476-4c54-9a52-dcea955640cd)
)
(pin "ID_SD" output (at 158.75 116.84 90)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5038e144-5119-49db-b6cf-f7c345f1cf03)
)
(pin "CAM_GPIO" output (at 151.13 116.84 90)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ac264c30-3e9a-4be2-b97a-9949b68bd497)
)
(pin "SCL0" output (at 140.97 116.84 90)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 54365317-1355-4216-bb75-829375abc4ec)
)
(pin "SDA0" output (at 137.16 116.84 90)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a3e4f0ae-9f86-49e9-b386-ed8b42e012fb)
)
(pin "+5v" input (at 168.91 130.81 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a690fc6c-55d9-47e6-b533-faa4b67e20f3)
)
(pin "+3.3v" output (at 168.91 135.89 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c144caa5-b0d4-4cef-840a-d4ad178a2102)
)
(pin "nEXTRST" output (at 132.08 137.16 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid efeac2a2-7682-4dc7-83ee-f6f1b23da506)
)
(pin "GLOBAL_EN" input (at 132.08 130.81 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5fc27c35-3e1c-4f96-817c-93b5570858a6)
)
(pin "GPIO_VREF" output (at 147.32 116.84 90)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6c9b793c-e74d-4754-a2c0-901e73b26f1c)
)
(pin "TV_OUT" input (at 154.94 116.84 90)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6a45789b-3855-401f-8139-3c734f7f52f9)
)
)
(sheet (at 132.08 39.37) (size 36.83 62.23)
(stroke (width 0.1524) (type solid) (color 132 0 132 1))
(fill (color 255 255 255 0.0000))
(uuid 00000000-0000-0000-0000-00005cff70b1)
(property "Sheet name" "CM4_HighSpeed" (id 0) (at 132.08 35.56 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheet file" "CM4_HighSpeed.kicad_sch" (id 1) (at 132.08 36.83 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "USB2_N" bidirectional (at 132.08 55.88 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid fd470e95-4861-44fe-b1e4-6d8a7c66e144)
)
(pin "USB2_P" bidirectional (at 132.08 53.34 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8174b4de-74b1-48db-ab8e-c8432251095b)
)
(pin "ID_SC" input (at 162.56 101.6 270)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 704d6d51-bb34-4cbf-83d8-841e208048d8)
)
(pin "ID_SD" input (at 158.75 101.6 270)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0eaa98f0-9565-4637-ace3-42a5231b07f7)
)
(pin "CAM_GPIO" input (at 151.13 101.6 270)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 181abe7a-f941-42b6-bd46-aaa3131f90fb)
)
(pin "SCL0" input (at 140.97 101.6 270)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ce83728b-bebd-48c2-8734-b6a50d837931)
)
(pin "SDA0" input (at 137.16 101.6 270)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c41b3c8b-634e-435a-b582-96b83bbd4032)
)
(pin "+5v" input (at 132.08 77.47 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9340c285-5767-42d5-8b6d-63fe2a40ddf3)
)
(pin "PCIE_CLK_P" output (at 168.91 62.23 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1831fb37-1c5d-42c4-b898-151be6fca9dc)
)
(pin "PCIE_CLK_N" output (at 168.91 64.77 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0f22151c-f260-4674-b486-4710a2c42a55)
)
(pin "PCIE_TX_P" output (at 168.91 48.26 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fe8d9267-7834-48d6-a191-c8724b2ee78d)
)
(pin "PCIE_TX_N" output (at 168.91 50.8 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0b21a65d-d20b-411e-920a-75c343ac5136)
)
(pin "PCIE_nRST" output (at 168.91 69.85 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3cd1bda0-18db-417d-b581-a0c50623df68)
)
(pin "PCIE_RX_P" input (at 168.91 55.88 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d57dcfee-5058-4fc2-a68b-05f9a48f685b)
)
(pin "PCIE_RX_N" input (at 168.91 58.42 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 03c52831-5dc5-43c5-a442-8d23643b46fb)
)
(pin "PCIE_CLK_nREQ" input (at 168.91 73.66 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)
)
(pin "+3.3v" input (at 132.08 81.28 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 29e78086-2175-405e-9ba3-c48766d2f50c)
)
(pin "USBOTG_ID" input (at 132.08 60.96 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 94a873dc-af67-4ef9-8159-1f7c93eeb3d7)
)
(pin "GPIO_VREF" input (at 147.32 101.6 270)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4c8eb964-bdf4-44de-90e9-e2ab82dd5313)
)
(pin "TV_OUT" output (at 154.94 101.6 270)
(effects (font (size 1.27 1.27)) (justify left))
(uuid aa14c3bd-4acc-4908-9d28-228585a22a9d)
)
)
(sheet (at 190.5 104.14) (size 27.94 20.32)
(stroke (width 0.1524) (type solid) (color 132 0 132 1))
(fill (color 255 255 255 0.0000))
(uuid 00000000-0000-0000-0000-00005d31f999)
(property "Sheet name" "PSUs" (id 0) (at 190.5 103.5045 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheet file" "PSUs.kicad_sch" (id 1) (at 190.5 125.73 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "+5v" output (at 218.44 115.57 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid bfc0aadc-38cf-466e-a642-68fdc3138c78)
)
(pin "+12v" output (at 218.44 111.76 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6441b183-b8f2-458f-a23d-60e2b1f66dd6)
)
)
(sheet (at 81.28 39.878) (size 24.13 28.702)
(stroke (width 0.1524) (type solid) (color 132 0 132 1))
(fill (color 255 255 255 0.0000))
(uuid 00000000-0000-0000-0000-00005e072e02)
(property "Sheet name" "USB2-HUB" (id 0) (at 81.28 39.2425 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheet file" "USB2-HUB.kicad_sch" (id 1) (at 81.026 68.58 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "USB2_N" bidirectional (at 105.41 55.88 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b)
)
(pin "USB2_P" bidirectional (at 105.41 53.34 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9e1b837f-0d34-4a18-9644-9ee68f141f46)
)
(pin "+5v" input (at 81.28 52.07 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)
)
(pin "+3.3v" input (at 81.28 58.42 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b88717bd-086f-46cd-9d3f-0396009d0996)
)
(pin "nEXTRST" input (at 105.41 47.498 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 61fe293f-6808-4b7f-9340-9aaac7054a97)
)
(pin "USBOTG" output (at 105.41 60.96 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2f215f15-3d52-4c91-93e6-3ea03a95622f)
)
)
(sheet (at 81.28 104.14) (size 24.13 20.32)
(stroke (width 0.1524) (type solid) (color 132 0 132 1))
(fill (color 255 255 255 0.0000))
(uuid 00000000-0000-0000-0000-00005e328d89)
(property "Sheet name" "RTC , Wakeup, FAN" (id 0) (at 81.28 103.5045 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheet file" "RTC.kicad_sch" (id 1) (at 81.28 124.9685 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "SCL" input (at 105.41 110.49 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7bbf981c-a063-4e30-8911-e4228e1c0743)
)
(pin "SDA" input (at 105.41 106.68 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5528bcad-2950-4673-90eb-c37e6952c475)
)
(pin "+5v" input (at 81.28 113.03 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)
)
(pin "+3.3v" input (at 81.28 115.57 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 08a7c925-7fae-4530-b0c9-120e185cb318)
)
(pin "GLOBAL_EN" output (at 105.41 116.84 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4a4ec8d9-3d72-4952-83d4-808f65849a2b)
)
(pin "+12v" input (at 81.28 110.49 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid cbd8faed-e1f8-4406-87c8-58b2c504a5d4)
)
)
(sheet (at 190.5 39.37) (size 27.94 43.18)
(stroke (width 0.152) (type solid) (color 132 0 132 1))
(fill (color 255 255 255 0.0000))
(uuid 00000000-0000-0000-0000-00005ed4bb5b)
(property "Sheet name" "PCIe-connector" (id 0) (at 190.5 38.734 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheet file" "PCIe.kicad_sch" (id 1) (at 190.5 83.0585 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "PCIE_CLK_P" input (at 190.5 62.23 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e)
)
(pin "PCIE_CLK_N" input (at 190.5 64.77 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280)
)
(pin "PCIE_TX_P" input (at 190.5 48.26 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7aed3a71-054b-4aaa-9c0a-030523c32827)
)
(pin "PCIE_TX_N" input (at 190.5 50.8 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2)
)
(pin "PCIE_CLK_nREQ" output (at 190.5 73.66 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 42713045-fffd-4b2d-ae1e-7232d705fb12)
)
(pin "PCIE_nRST" input (at 190.5 69.85 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c0515cd2-cdaa-467e-8354-0f6eadfa35c9)
)
(pin "PCIE_RX_P" output (at 190.5 55.88 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1bf544e3-5940-4576-9291-2464e95c0ee2)
)
(pin "PCIE_RX_N" output (at 190.5 58.42 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7)
)
(pin "+12v" input (at 218.44 62.23 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid bdc7face-9f7c-4701-80bb-4cc144448db1)
)
)
(sheet_instances
(path "/" (page "1"))
(path "/00000000-0000-0000-0000-00005e072e02" (page "2"))
(path "/00000000-0000-0000-0000-00005e328d89" (page "3"))
(path "/00000000-0000-0000-0000-00005cff70b1" (page "4"))
(path "/00000000-0000-0000-0000-00005cff706a" (page "5"))
(path "/00000000-0000-0000-0000-00005ed4bb5b" (page "6"))
(path "/00000000-0000-0000-0000-00005d31f999" (page "7"))
)
(symbol_instances
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005e9b65ca"
(reference "#PWR01") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005d31f999/00000000-0000-0000-0000-00005eb13923"
(reference "#PWR02") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e328d89/d246da2f-475c-405e-9593-d9ba8ff6c310"
(reference "#PWR03") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005e20cb90"
(reference "#PWR05") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005e3b6d96"
(reference "#PWR06") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005e3d5697"
(reference "#PWR07") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005db36104"
(reference "#PWR08") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005db3990f"
(reference "#PWR09") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005dab10d9"
(reference "#PWR010") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005db3d1df"
(reference "#PWR011") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005db40afb"
(reference "#PWR012") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005dd30b91"
(reference "#PWR013") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005dafd9c4"
(reference "#PWR014") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005d4c03f8"
(reference "#PWR017") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005d4c0417"
(reference "#PWR018") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005db61f2b"
(reference "#PWR019") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005d4c040b"
(reference "#PWR021") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005d55749c"
(reference "#PWR023") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005d5574a2"
(reference "#PWR024") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005d2f5819"
(reference "#PWR025") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005d2f5823"
(reference "#PWR026") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005d4cc3ad"
(reference "#PWR027") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e328d89/00000000-0000-0000-0000-00005d30bf83"
(reference "#PWR028") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e328d89/00000000-0000-0000-0000-00005d313aa3"
(reference "#PWR030") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e328d89/00000000-0000-0000-0000-00005e3893ce"
(reference "#PWR031") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e328d89/00000000-0000-0000-0000-00005d0dd5c0"
(reference "#PWR032") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e328d89/00000000-0000-0000-0000-00005e3727fe"
(reference "#PWR033") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e328d89/00000000-0000-0000-0000-00005e382746"
(reference "#PWR034") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e328d89/00000000-0000-0000-0000-00005d0e8ad5"
(reference "#PWR035") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005d31f999/00000000-0000-0000-0000-00005d3211d5"
(reference "#PWR041") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005d31f999/00000000-0000-0000-0000-00005d336679"
(reference "#PWR042") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005d31f999/00000000-0000-0000-0000-00005d294451"
(reference "#PWR043") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005d31f999/00000000-0000-0000-0000-00005d4949e4"
(reference "#PWR045") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005dbc1856"
(reference "#PWR049") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005dbc1892"
(reference "#PWR050") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005dcc8bbc"
(reference "#PWR0101") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005ddd76da"
(reference "#PWR0102") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005ddf038e"
(reference "#PWR0103") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005e15bd87"
(reference "#PWR0104") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005e16bb43"
(reference "#PWR0105") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005e4f0ad3"
(reference "#PWR0106") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005e6c852b"
(reference "#PWR0107") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005e6dcb75"
(reference "#PWR0108") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005ebccb18"
(reference "#PWR0109") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005ebf0a51"
(reference "#PWR0110") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005ec0fbf3"
(reference "#PWR0111") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005cff706a/00000000-0000-0000-0000-00005d718e31"
(reference "#PWR0113") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005e072e02/00000000-0000-0000-0000-00005dc24f31"
(reference "#PWR0114") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005d31f999/00000000-0000-0000-0000-00005e533405"
(reference "#PWR0118") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005d31f999/00000000-0000-0000-0000-00005e540dfc"
(reference "#PWR0119") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00005d31f999/00000000-0000-0000-0000-00005e571a33"
(reference "#PWR0120") (unit 1) (value "GND") (footprint "")