-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathcompute_module.net
1502 lines (1502 loc) · 55.2 KB
/
compute_module.net
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
(export (version D)
(design
(source /home/manolis/kicad/compute_module/compute_module.sch)
(date "Sat 22 Dec 2018 09:06:55 PM EET")
(tool "Eeschema 4.0.5+dfsg1-4")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source compute_module.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Power/) (tstamps /5C119B70/)
(title_block
(title)
(company)
(rev)
(date)
(source power.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /Connectors/) (tstamps /5C1259A2/)
(title_block
(title)
(company)
(rev)
(date)
(source connectors.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref MD1)
(value Board_RPi_CM3_200pConnector_multipart)
(footprint Conn_TE-DDR2-SODIMM:Conn_TE-DDR2-SODIMM-0.6-200P-doublesided)
(datasheet _)
(fields
(field (name Manf#) _)
(field (name Manf) _)
(field (name Optn) _))
(libsource (lib KiCADinfo_RPi-modules) (part Board_RPi_CM3_200pConnector_multipart))
(sheetpath (names /) (tstamps /))
(tstamp 5C0EF2DF))
(comp (ref C3)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C11C67C))
(comp (ref C4)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C11D389))
(comp (ref C1)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C11D3C1))
(comp (ref C2)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C11D3FE))
(comp (ref C5)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C11D500))
(comp (ref C6)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C11D543))
(comp (ref C7)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C11D587))
(comp (ref C8)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C11D5D0))
(comp (ref R3)
(value 1K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5C0F978E))
(comp (ref R2)
(value 1K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5C0F8516))
(comp (ref D1)
(value "GREEN LED")
(footprint LEDs:LED_0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5C12F05F))
(comp (ref Q1)
(value 2N7002P.215)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /) (tstamps /))
(tstamp 5C130C5C))
(comp (ref R1)
(value 100K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5C140EA2))
(comp (ref C12)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C197E29))
(comp (ref C13)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C197E35))
(comp (ref C18)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C1991DD))
(comp (ref C19)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5C1991E9))
(comp (ref R7)
(value 100K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5C19B5FB))
(comp (ref R8)
(value 100K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5C19B915))
(comp (ref R9)
(value 1.8K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5C19B975))
(comp (ref R10)
(value 1.8K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5C19B9D8))
(comp (ref D8)
(value "RED LED")
(footprint LEDs:LED_0805)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5C1D8A4D))
(comp (ref R11)
(value 1K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5C1D8AC6))
(comp (ref U1)
(value REG1117-3.3)
(footprint TO_SOT_Packages_SMD:SOT-223-3_TabPin2)
(libsource (lib REG1117) (part REG1117-3.3))
(sheetpath (names /Power/) (tstamps /5C119B70/))
(tstamp 5C11A19B))
(comp (ref U3)
(value REG1117A-1.8)
(footprint TO_SOT_Packages_SMD:SOT-223-3_TabPin2)
(libsource (lib REG1117) (part REG1117A-1.8))
(sheetpath (names /Power/) (tstamps /5C119B70/))
(tstamp 5C11A22F))
(comp (ref C10)
(value 10uF)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-C_EIA-6032-28_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /Power/) (tstamps /5C119B70/))
(tstamp 5C11A372))
(comp (ref C11)
(value 10uF)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-C_EIA-6032-28_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /Power/) (tstamps /5C119B70/))
(tstamp 5C11A780))
(comp (ref C14)
(value 10uF)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-C_EIA-6032-28_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /Power/) (tstamps /5C119B70/))
(tstamp 5C11A932))
(comp (ref C15)
(value 10uF)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-C_EIA-6032-28_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /Power/) (tstamps /5C119B70/))
(tstamp 5C11A94D))
(comp (ref P1)
(value POWER)
(footprint Connectors:USB_Micro-B)
(libsource (lib conn) (part USB_OTG))
(sheetpath (names /Power/) (tstamps /5C119B70/))
(tstamp 5C121D56))
(comp (ref Q2)
(value DMP3056L-7)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part Q_PMOS_GSD))
(sheetpath (names /Power/) (tstamps /5C119B70/))
(tstamp 5C124698))
(comp (ref C9)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /Power/) (tstamps /5C119B70/))
(tstamp 5C14646A))
(comp (ref F1)
(value "2A 6V")
(footprint Polyfuse_Bourns_MF-PSML:Polyfuse_0805)
(libsource (lib device) (part Polyfuse))
(sheetpath (names /Power/) (tstamps /5C119B70/))
(tstamp 5C16EB7F))
(comp (ref C16)
(value 10uF)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-C_EIA-6032-28_Reflow)
(libsource (lib device) (part CP1))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1275E4))
(comp (ref P3)
(value CAM1)
(footprint ffc_conn:FPC_22)
(libsource (lib conn) (part CONN_01X22))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C128E07))
(comp (ref P2)
(value HOST)
(footprint Connectors:USB_A)
(libsource (lib conn) (part USB_A))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C12CE0A))
(comp (ref J1)
(value 2001-1-2-21-00-BK)
(footprint HDMI_MOLEX:HDMI_MOLEX_471510001)
(datasheet http://cnctech.us/pdfs/2001-1-2-21-00-BK.pdf)
(fields
(field (name Digi-Key_PN) 1175-1704-1-ND)
(field (name MPN) 2001-1-2-21-00-BK)
(field (name Category) "Connectors, Interconnects")
(field (name Family) "USB, DVI, HDMI Connectors")
(field (name DK_Datasheet_Link) http://cnctech.us/pdfs/2001-1-2-21-00-BK.pdf)
(field (name DK_Detail_Page) /product-detail/en/cnc-tech/2001-1-2-21-00-BK/1175-1704-1-ND/4867013)
(field (name Description) "CONN RCPT MINI HDMI 19POS SMD RA")
(field (name Manufacturer) "CNC Tech")
(field (name Status) Active))
(libsource (lib dk_USB-DVI-HDMI-Connectors) (part 2001-1-2-21-00-BK))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C12A621))
(comp (ref D4)
(value BAV99)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part D_x2_Serial_AKC))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C12B352))
(comp (ref C17)
(value 100nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C12BE7D))
(comp (ref D5)
(value BAV99)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part D_x2_Serial_AKC))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C12C26B))
(comp (ref D6)
(value BAV99)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part D_x2_Serial_AKC))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C12C2A6))
(comp (ref R4)
(value 1.8K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C12F2A3))
(comp (ref R5)
(value 1.8K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C12F3B2))
(comp (ref Q3)
(value 2N7002P.215)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part Q_NMOS_GSD))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C13782A))
(comp (ref R6)
(value 100K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C137A91))
(comp (ref D7)
(value BAV99)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part D_x2_Serial_AKC))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1384B1))
(comp (ref D3)
(value BAT54)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part D_Schottky_AAK))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C147BC1))
(comp (ref D2)
(value BAT54)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part D_Schottky_AAK))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1483E3))
(comp (ref P4)
(value CONN_02X20)
(footprint Pin_Headers:Pin_Header_Straight_2x20)
(libsource (lib conn) (part CONN_02X20))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C19944F))
(comp (ref C20)
(value 10uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1DA038))
(comp (ref C21)
(value 10uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib device) (part C))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1DA0CB))
(comp (ref R12)
(value 150R)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1DA630))
(comp (ref R13)
(value 150R)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1DA8DC))
(comp (ref C22)
(value 33nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1DADEA))
(comp (ref C23)
(value 33nF)
(footprint Capacitors_SMD:C_0402)
(libsource (lib device) (part C))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1DAFE8))
(comp (ref R14)
(value 270R)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1DB42B))
(comp (ref R15)
(value 270R)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1DB4C5))
(comp (ref D9)
(value BAV99)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part D_x2_Serial_AKC))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1DCAE7))
(comp (ref D10)
(value BAV99)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib device) (part D_x2_Serial_AKC))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1DCF02))
(comp (ref J2)
(value JC-128)
(footprint jc-128:JC-128)
(libsource (lib jack_trs_5pins) (part JACK_TRS_5PINS))
(sheetpath (names /Connectors/) (tstamps /5C1259A2/))
(tstamp 5C1E1E9E)))
(libparts
(libpart (lib dk_USB-DVI-HDMI-Connectors) (part 2001-1-2-21-00-BK)
(description "CONN RCPT MINI HDMI 19POS SMD RA")
(docs http://cnctech.us/pdfs/2001-1-2-21-00-BK.pdf)
(fields
(field (name Reference) J)
(field (name Value) 2001-1-2-21-00-BK)
(field (name Footprint) digikey-footprints:HDMI_Mini_Female_2001-1-2-21-00-BK)
(field (name Datasheet) http://cnctech.us/pdfs/2001-1-2-21-00-BK.pdf)
(field (name Digi-Key_PN) 1175-1704-1-ND)
(field (name MPN) 2001-1-2-21-00-BK)
(field (name Category) "Connectors, Interconnects")
(field (name Family) "USB, DVI, HDMI Connectors")
(field (name DK_Datasheet_Link) http://cnctech.us/pdfs/2001-1-2-21-00-BK.pdf)
(field (name DK_Detail_Page) /product-detail/en/cnc-tech/2001-1-2-21-00-BK/1175-1704-1-ND/4867013)
(field (name Description) "CONN RCPT MINI HDMI 19POS SMD RA")
(field (name Manufacturer) "CNC Tech")
(field (name Status) Active))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))
(pin (num 7) (name ~) (type passive))
(pin (num 8) (name ~) (type passive))
(pin (num 9) (name ~) (type passive))
(pin (num 10) (name ~) (type passive))
(pin (num 11) (name ~) (type passive))
(pin (num 12) (name ~) (type passive))
(pin (num 13) (name ~) (type passive))
(pin (num 14) (name ~) (type passive))
(pin (num 15) (name ~) (type passive))
(pin (num 16) (name ~) (type passive))
(pin (num 17) (name ~) (type passive))
(pin (num 18) (name ~) (type passive))
(pin (num 19) (name ~) (type passive))
(pin (num SH) (name ~) (type passive))))
(libpart (lib KiCADinfo_RPi-modules) (part Board_RPi_CM3_200pConnector_multipart)
(fields
(field (name Reference) MD)
(field (name Value) Board_RPi_CM3_200pConnector_multipart)
(field (name Footprint) _)
(field (name Datasheet) _)
(field (name Manf#) _)
(field (name Manf) _)
(field (name Optn) _))
(pins
(pin (num 1) (name GND) (type input))
(pin (num 2) (name EMMC_DISABLE_N) (type input))
(pin (num 3) (name GPIO0) (type input))
(pin (num 4) (name NC) (type NotConnected))
(pin (num 5) (name GPIO1) (type input))
(pin (num 6) (name NC) (type NotConnected))
(pin (num 7) (name GND) (type input))
(pin (num 8) (name GND) (type input))
(pin (num 9) (name GPIO2) (type input))
(pin (num 10) (name NC) (type NotConnected))
(pin (num 11) (name GPIO3) (type input))
(pin (num 12) (name NC) (type NotConnected))
(pin (num 13) (name GND) (type input))
(pin (num 14) (name GND) (type input))
(pin (num 15) (name GPIO4) (type input))
(pin (num 16) (name NC) (type NotConnected))
(pin (num 17) (name GPIO5) (type input))
(pin (num 18) (name NC) (type NotConnected))
(pin (num 19) (name GND) (type input))
(pin (num 20) (name GND) (type input))
(pin (num 21) (name GPIO6) (type input))
(pin (num 22) (name NC) (type NotConnected))
(pin (num 23) (name GPIO7) (type input))
(pin (num 24) (name NC) (type NotConnected))
(pin (num 25) (name GND) (type input))
(pin (num 26) (name GND) (type input))
(pin (num 27) (name GPIO8) (type input))
(pin (num 28) (name GPIO28) (type input))
(pin (num 29) (name GPIO9) (type input))
(pin (num 30) (name GPIO29) (type input))
(pin (num 31) (name GND) (type input))
(pin (num 32) (name GND) (type input))
(pin (num 33) (name GPIO10) (type input))
(pin (num 34) (name GPIO30) (type input))
(pin (num 35) (name GPIO11) (type input))
(pin (num 36) (name GPIO31) (type input))
(pin (num 37) (name GND) (type input))
(pin (num 38) (name GND) (type input))
(pin (num 39) (name GPIO0-27_VDD) (type input))
(pin (num 40) (name GPIO0-27_VDD) (type input))
(pin (num 41) (name GPIO28-45_VDD) (type input))
(pin (num 42) (name GPIO28-45_VDD) (type input))
(pin (num 43) (name GND) (type input))
(pin (num 44) (name GND) (type input))
(pin (num 45) (name GPIO12) (type input))
(pin (num 46) (name GPIO32) (type input))
(pin (num 47) (name GPIO13) (type input))
(pin (num 48) (name GPIO33) (type input))
(pin (num 49) (name GND) (type input))
(pin (num 50) (name GND) (type input))
(pin (num 51) (name GPIO14) (type input))
(pin (num 52) (name GPIO34) (type input))
(pin (num 53) (name GPIO15) (type input))
(pin (num 54) (name GPIO35) (type input))
(pin (num 55) (name GND) (type input))
(pin (num 56) (name GND) (type input))
(pin (num 57) (name GPIO16) (type input))
(pin (num 58) (name GPIO36) (type input))
(pin (num 59) (name GPIO17) (type input))
(pin (num 60) (name GPIO37) (type input))
(pin (num 61) (name GND) (type input))
(pin (num 62) (name GND) (type input))
(pin (num 63) (name GPIO18) (type input))
(pin (num 64) (name GPIO38) (type input))
(pin (num 65) (name GPIO19) (type input))
(pin (num 66) (name GPIO39) (type input))
(pin (num 67) (name GND) (type input))
(pin (num 68) (name GND) (type input))
(pin (num 69) (name GPIO20) (type input))
(pin (num 70) (name GPIO40) (type input))
(pin (num 71) (name GPIO21) (type input))
(pin (num 72) (name GPIO41) (type input))
(pin (num 73) (name GND) (type input))
(pin (num 74) (name GND) (type input))
(pin (num 75) (name GPIO22) (type input))
(pin (num 76) (name GPIO42) (type input))
(pin (num 77) (name GPIO23) (type input))
(pin (num 78) (name GPIO43) (type input))
(pin (num 79) (name GND) (type input))
(pin (num 80) (name GND) (type input))
(pin (num 81) (name GPIO24) (type input))
(pin (num 82) (name GPIO44) (type input))
(pin (num 83) (name GPIO25) (type input))
(pin (num 84) (name GPIO45) (type input))
(pin (num 85) (name GND) (type input))
(pin (num 86) (name GND) (type input))
(pin (num 87) (name GPIO26) (type input))
(pin (num 88) (name HDMI_HPD_N_1V8) (type input))
(pin (num 89) (name GPIO27) (type input))
(pin (num 90) (name EMMC_EN_N_1V8) (type input))
(pin (num 91) (name GND) (type input))
(pin (num 92) (name GND) (type input))
(pin (num 93) (name DSI0_DN1) (type input))
(pin (num 94) (name DSI1_DP0) (type input))
(pin (num 95) (name DSI0_DP1) (type input))
(pin (num 96) (name DSI1_DN0) (type input))
(pin (num 97) (name GND) (type input))
(pin (num 98) (name GND) (type input))
(pin (num 99) (name DSI0_DN0) (type input))
(pin (num 100) (name DSI1_CP) (type input))
(pin (num 101) (name DSI0_DP0) (type input))
(pin (num 102) (name DSI1_CN) (type input))
(pin (num 103) (name GND) (type input))
(pin (num 104) (name GND) (type input))
(pin (num 105) (name DSI0_CN) (type input))
(pin (num 106) (name DSI1_DP3) (type input))
(pin (num 107) (name DSI0_CP) (type input))
(pin (num 108) (name DSI1_DN3) (type input))
(pin (num 109) (name GND) (type input))
(pin (num 110) (name GND) (type input))
(pin (num 111) (name HDMI_CLK_N) (type input))
(pin (num 112) (name DSI1_DP2) (type input))
(pin (num 113) (name HDMI_CLK_P) (type input))
(pin (num 114) (name DSI1_DN2) (type input))
(pin (num 115) (name GND) (type input))
(pin (num 116) (name GND) (type input))
(pin (num 117) (name HDMI_D0_N) (type input))
(pin (num 118) (name DSI1_DP1) (type input))
(pin (num 119) (name HDMI_D0_P) (type input))
(pin (num 120) (name DSI1_DN1) (type input))
(pin (num 121) (name GND) (type input))
(pin (num 122) (name GND) (type input))
(pin (num 123) (name HDMI_D1_N) (type input))
(pin (num 124) (name NC) (type NotConnected))
(pin (num 125) (name HDMI_D1_P) (type input))
(pin (num 126) (name NC) (type NotConnected))
(pin (num 127) (name GND) (type input))
(pin (num 128) (name NC) (type NotConnected))
(pin (num 129) (name HDMI_D2_N) (type input))
(pin (num 130) (name NC) (type NotConnected))
(pin (num 131) (name HDMI_D2_P) (type input))
(pin (num 132) (name NC) (type NotConnected))
(pin (num 133) (name GND) (type input))
(pin (num 134) (name GND) (type input))
(pin (num 135) (name CAM1_DP3) (type input))
(pin (num 136) (name CAM0_DP0) (type input))
(pin (num 137) (name CAM1_DN3) (type input))
(pin (num 138) (name CAM0_DN0) (type input))
(pin (num 139) (name GND) (type input))
(pin (num 140) (name GND) (type input))
(pin (num 141) (name CAM1_DP2) (type input))
(pin (num 142) (name CAM0_CP) (type input))
(pin (num 143) (name CAM1_DN2) (type input))
(pin (num 144) (name CAM0_CN) (type input))
(pin (num 145) (name GND) (type input))
(pin (num 146) (name GND) (type input))
(pin (num 147) (name CAM1_CP) (type input))
(pin (num 148) (name CAM0_DP1) (type input))
(pin (num 149) (name CAM1_CN) (type input))
(pin (num 150) (name CAM0_DN1) (type input))
(pin (num 151) (name GND) (type input))
(pin (num 152) (name GND) (type input))
(pin (num 153) (name CAM1_DP1) (type input))
(pin (num 154) (name NC) (type NotConnected))
(pin (num 155) (name CAM1_DN1) (type input))
(pin (num 156) (name NC) (type NotConnected))
(pin (num 157) (name GND) (type input))
(pin (num 158) (name NC) (type NotConnected))
(pin (num 159) (name CAM1_DP0) (type input))
(pin (num 160) (name NC) (type NotConnected))
(pin (num 161) (name CAM1_DN0) (type input))
(pin (num 162) (name NC) (type NotConnected))
(pin (num 163) (name GND) (type input))
(pin (num 164) (name GND) (type input))
(pin (num 165) (name USB_DP) (type input))
(pin (num 166) (name TVDAC) (type input))
(pin (num 167) (name USB_DM) (type input))
(pin (num 168) (name USB_OTGID) (type input))
(pin (num 169) (name GND) (type input))
(pin (num 170) (name GND) (type input))
(pin (num 171) (name HDMI_CEC) (type input))
(pin (num 172) (name VC_TRST_N) (type input))
(pin (num 173) (name HDMI_SDA) (type input))
(pin (num 174) (name VC_TDI) (type input))
(pin (num 175) (name HDMI_SCL) (type input))
(pin (num 176) (name VC_TMS) (type input))
(pin (num 177) (name RUN) (type input))
(pin (num 178) (name VC_TDO) (type input))
(pin (num 179) (name VDD_CORE) (type NotConnected))
(pin (num 180) (name VC_TCK) (type input))
(pin (num 181) (name GND) (type input))
(pin (num 182) (name GND) (type input))
(pin (num 183) (name 1V8) (type input))
(pin (num 184) (name 1V8) (type input))
(pin (num 185) (name 1V8) (type input))
(pin (num 186) (name 1V8) (type input))
(pin (num 187) (name GND) (type input))
(pin (num 188) (name GND) (type input))
(pin (num 189) (name VDAC) (type input))
(pin (num 190) (name VDAC) (type input))
(pin (num 191) (name 3V3) (type input))
(pin (num 192) (name 3V3) (type input))
(pin (num 193) (name 3V3) (type input))
(pin (num 194) (name 3V3) (type input))
(pin (num 195) (name GND) (type input))
(pin (num 196) (name GND) (type input))
(pin (num 197) (name VBAT) (type input))
(pin (num 198) (name VBAT) (type input))
(pin (num 199) (name VBAT) (type input))
(pin (num 200) (name VBAT) (type input))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_01X22)
(description "Connector, single row, 01x22")
(footprints
(fp Pin_Header_Straight_1X22)
(fp Pin_Header_Angled_1X22)
(fp Socket_Strip_Straight_1X22)
(fp Socket_Strip_Angled_1X22))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X22))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))
(pin (num 14) (name P14) (type passive))
(pin (num 15) (name P15) (type passive))
(pin (num 16) (name P16) (type passive))
(pin (num 17) (name P17) (type passive))
(pin (num 18) (name P18) (type passive))
(pin (num 19) (name P19) (type passive))
(pin (num 20) (name P20) (type passive))
(pin (num 21) (name P21) (type passive))
(pin (num 22) (name P22) (type passive))))
(libpart (lib conn) (part CONN_02X20)
(description "Connector, double row, 02x20")
(footprints
(fp Pin_Header_Straight_2X20)
(fp Pin_Header_Angled_2X20)
(fp Socket_Strip_Straight_2X20)
(fp Socket_Strip_Angled_2X20))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X20))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))
(pin (num 14) (name P14) (type passive))
(pin (num 15) (name P15) (type passive))
(pin (num 16) (name P16) (type passive))
(pin (num 17) (name P17) (type passive))
(pin (num 18) (name P18) (type passive))
(pin (num 19) (name P19) (type passive))
(pin (num 20) (name P20) (type passive))
(pin (num 21) (name P21) (type passive))
(pin (num 22) (name P22) (type passive))
(pin (num 23) (name P23) (type passive))
(pin (num 24) (name P24) (type passive))
(pin (num 25) (name P25) (type passive))
(pin (num 26) (name P26) (type passive))
(pin (num 27) (name P27) (type passive))
(pin (num 28) (name P28) (type passive))
(pin (num 29) (name P29) (type passive))
(pin (num 30) (name P30) (type passive))
(pin (num 31) (name P31) (type passive))
(pin (num 32) (name P32) (type passive))
(pin (num 33) (name P33) (type passive))
(pin (num 34) (name P34) (type passive))
(pin (num 35) (name P35) (type passive))
(pin (num 36) (name P36) (type passive))
(pin (num 37) (name P37) (type passive))
(pin (num 38) (name P38) (type passive))
(pin (num 39) (name P39) (type passive))
(pin (num 40) (name P40) (type passive))))
(libpart (lib device) (part CP1)
(description "Polarised capacitor")
(footprints
(fp SMD*_Pol)
(fp C_Axial*)
(fp C_Radial*)
(fp c_elec*)
(fp C*elec)
(fp TantalC*)
(fp CP*))
(fields
(field (name Reference) C)
(field (name Value) CP1))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part D_Schottky_AAK)
(description "Schottky diode, two anode pins")
(footprints
(fp Diode_*)
(fp D-*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky_AAK))
(pins
(pin (num 1) (name A) (type input))
(pin (num 2) (name A) (type passive))
(pin (num 3) (name K) (type passive))))
(libpart (lib device) (part D_x2_Serial_AKC)
(description "Dual diode")
(fields
(field (name Reference) D)
(field (name Value) D_x2_Serial_AKC))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))
(pin (num 3) (name common) (type passive))))
(libpart (lib jack_trs_5pins) (part JACK_TRS_5PINS)
(description "audio jack TRS 6 pins")
(fields
(field (name Reference) J)
(field (name Value) JACK_TRS_5PINS))
(pins
(pin (num 1) (name S) (type passive))
(pin (num 2) (name T) (type passive))
(pin (num 3) (name TN) (type passive))
(pin (num 4) (name TR) (type BiDi))
(pin (num 5) (name R) (type passive))))
(libpart (lib device) (part LED)
(description "LED generic")
(footprints
(fp LED*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part Polyfuse)
(description "resettable fuse, polymeric positive temperature coefficient (PPTC)")
(footprints
(fp *polyfuse*)
(fp *PTC*))
(fields
(field (name Reference) F)
(field (name Value) Polyfuse))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part Q_NMOS_GSD)
(description "Transistor N-MOSFETwith substrate diode (general)")
(fields
(field (name Reference) Q)
(field (name Value) Q_NMOS_GSD))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib device) (part Q_PMOS_GSD)
(description "Transistor P-MOSFET with substrate diode (general)")
(fields
(field (name Reference) Q)
(field (name Value) Q_PMOS_GSD))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp Resistor_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib REG1117) (part REG1117-3.3)
(description "800mA Fixed Low Drop Positive Voltage Regulator, Fixed Output 3.3V, SOT223")
(docs http://www.ti.com/lit/ds/symlink/reg1117.pdf)
(footprints
(fp SOT223))
(fields
(field (name Reference) U)
(field (name Value) REG1117-3.3)
(field (name Footprint) SOT-223))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name VI) (type power_in))))
(libpart (lib REG1117) (part REG1117A-1.8)
(description "1A Fixed Low Drop Positive Voltage Regulator, Fixed Output 1.8V, SOT223")
(docs http://www.ti.com/lit/ds/symlink/reg1117.pdf)
(footprints
(fp SOT223))
(fields
(field (name Reference) U)
(field (name Value) REG1117A-1.8)
(field (name Footprint) SOT-223))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name VI) (type power_in))))
(libpart (lib conn) (part USB_A)
(description "USB Type A connector")
(footprints
(fp USB*))
(fields
(field (name Reference) P)
(field (name Value) USB_A))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name shield) (type passive))))
(libpart (lib conn) (part USB_OTG)
(description "USB micro/mini connector")
(footprints
(fp USB*))
(fields
(field (name Reference) P)
(field (name Value) USB_OTG))
(pins
(pin (num 1) (name VBUS) (type power_out))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name ID) (type power_in))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name shield) (type passive)))))
(libraries
(library (logical jack_trs_5pins)
(uri /home/manolis/kicad/compute_module/libs/components/jack_trs_5pins.lib))
(library (logical KiCADinfo_RPi-modules)
(uri /home/manolis/kicad/compute_module/libs/components/KiCADinfo_RPi-modules.lib))
(library (logical dk_USB-DVI-HDMI-Connectors)
(uri /home/manolis/kicad/compute_module/libs/components/dk_USB-DVI-HDMI-Connectors.lib))
(library (logical REG1117)
(uri /home/manolis/kicad/compute_module/libs/components/REG1117.lib))
(library (logical device)
(uri /usr/share/kicad/library/device.lib))
(library (logical conn)
(uri /usr/share/kicad/library/conn.lib)))
(nets
(net (code 1) (name GPIO26)
(node (ref P4) (pin 37))
(node (ref MD1) (pin 87)))
(net (code 2) (name GPIO22)
(node (ref P4) (pin 15))
(node (ref MD1) (pin 75)))
(net (code 3) (name CAM1_IO0)
(node (ref MD1) (pin 36))
(node (ref P3) (pin 17)))
(net (code 4) (name "Net-(MD1-Pad46)")
(node (ref MD1) (pin 46)))
(net (code 5) (name "Net-(MD1-Pad66)")
(node (ref MD1) (pin 66)))
(net (code 6) (name "Net-(MD1-Pad76)")
(node (ref MD1) (pin 76)))
(net (code 7) (name GPIO8)
(node (ref MD1) (pin 27))
(node (ref P4) (pin 24)))
(net (code 8) (name GPIO13)
(node (ref P4) (pin 33))
(node (ref MD1) (pin 47)))
(net (code 9) (name GPIO16)
(node (ref P4) (pin 36))
(node (ref MD1) (pin 57)))
(net (code 10) (name GPIO23)
(node (ref MD1) (pin 77))
(node (ref P4) (pin 16)))
(net (code 11) (name GPIO19)
(node (ref P4) (pin 35))
(node (ref MD1) (pin 65)))
(net (code 12) (name "Net-(MD1-Pad48)")
(node (ref MD1) (pin 48)))
(net (code 13) (name "Net-(MD1-Pad58)")
(node (ref MD1) (pin 58)))
(net (code 14) (name "Net-(MD1-Pad78)")
(node (ref MD1) (pin 78)))
(net (code 15) (name GPIO9)
(node (ref P4) (pin 21))
(node (ref MD1) (pin 29)))
(net (code 16) (name GPIO17)
(node (ref P4) (pin 11))
(node (ref MD1) (pin 59)))
(net (code 17) (name GPIO20)
(node (ref MD1) (pin 69))
(node (ref P4) (pin 38)))
(net (code 18) (name GPIO27)
(node (ref P4) (pin 13))
(node (ref MD1) (pin 89)))
(net (code 19) (name USB_D_P)
(node (ref P2) (pin 3))
(node (ref MD1) (pin 165)))
(net (code 20) (name USB_D_N)
(node (ref MD1) (pin 167))
(node (ref P2) (pin 2)))
(net (code 21) (name GPIO10)
(node (ref MD1) (pin 33))
(node (ref P4) (pin 19)))
(net (code 22) (name GPIO6)
(node (ref MD1) (pin 21))
(node (ref P4) (pin 31)))
(net (code 23) (name GPIO14)
(node (ref P4) (pin 8))
(node (ref MD1) (pin 51)))