-
Notifications
You must be signed in to change notification settings - Fork 0
/
HSMC-GPIO-kicad.net
1658 lines (1658 loc) · 64.3 KB
/
HSMC-GPIO-kicad.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/caleb/Desktop/HSMC-GPIO-kicad/HSMC-GPIO-kicad.sch)
(date "Thu 13 Sep 2018 03:24:14 PM PDT")
(tool "Eeschema 5.0.0")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "HSMC GPIO Breakout")
(company)
(rev)
(date)
(source HSMC-GPIO-kicad.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /GPIO/) (tstamps /5B89AD18/)
(title_block
(title)
(company)
(rev)
(date)
(source GPIO_Port.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J1)
(value HSMC)
(footprint HSMC:HSMC_Card_QTH-090-01-L-D-A)
(datasheet https://www.intel.com/content/dam/altera-www/global/en_US/pdfs/literature/ds/hsmc_spec.pdf)
(libsource (lib HSMC) (part HSMC) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B8956F1))
(comp (ref J3)
(value I2C)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C20C81F))
(comp (ref U2)
(value TCA9517)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(libsource (lib TCA9517) (part TCA9517) (description "Level-Shifting I2C Bus Repeater"))
(sheetpath (names /) (tstamps /))
(tstamp 5C863CF5))
(comp (ref J2)
(value Conn_01x03_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA5FD8D))
(comp (ref C6)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC50C01))
(comp (ref C5)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC94DA9))
(comp (ref U1)
(value MC78M05_TO252)
(footprint Package_TO_SOT_SMD:TO-252-2)
(libsource (lib Regulator_Linear) (part MC78M05_TO252) (description "Positive 500mA 35V Linear Regulator, Fixed Output 5V, TO-252 (D-PAK)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB0F90A))
(comp (ref C1)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB7525C))
(comp (ref C4)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB7538F))
(comp (ref C3)
(value 10u)
(footprint Capacitor_SMD:C_1210_3225Metric_Pad1.42x2.65mm_HandSolder)
(libsource (lib Device) (part CP1) (description "Polarised capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DC21CD2))
(comp (ref J4)
(value Screw_Terminal_01x04)
(footprint Phoenix_MFKDS:Phoenix_MFKDS-5.08_1x04_P5.08mm)
(libsource (lib Connector) (part Screw_Terminal_01x04) (description "Generic screw terminal, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD1C17D))
(comp (ref C2)
(value 10u)
(footprint Capacitor_SMD:C_1210_3225Metric_Pad1.42x2.65mm_HandSolder)
(libsource (lib Device) (part CP1) (description "Polarised capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DEDB05B))
(comp (ref D1)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891BA0))
(comp (ref D2)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891BB4))
(comp (ref D3)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891BC8))
(comp (ref D4)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891BDC))
(comp (ref D5)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891BF0))
(comp (ref D6)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891C04))
(comp (ref D7)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891C18))
(comp (ref D8)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891C2C))
(comp (ref D9)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891C40))
(comp (ref D10)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891C54))
(comp (ref D11)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891C68))
(comp (ref D12)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891C7C))
(comp (ref D13)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891C90))
(comp (ref D14)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891CA4))
(comp (ref D15)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891CB8))
(comp (ref D16)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891CCC))
(comp (ref D17)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891CE0))
(comp (ref D18)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891CF4))
(comp (ref D19)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891D08))
(comp (ref D20)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891D1C))
(comp (ref D21)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891D30))
(comp (ref D22)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891D44))
(comp (ref D23)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891D58))
(comp (ref D24)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891D6C))
(comp (ref D25)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891D80))
(comp (ref D26)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891D94))
(comp (ref D27)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891DA8))
(comp (ref D28)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891DBC))
(comp (ref D29)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891DD0))
(comp (ref D30)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891DE4))
(comp (ref D31)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891DF8))
(comp (ref D32)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891E0C))
(comp (ref D33)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891E20))
(comp (ref D34)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891E34))
(comp (ref D35)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B891E48))
(comp (ref J5)
(value Conn_02x20_Odd_Even)
(footprint Connector_IDC:IDC-Header_2x20_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x20_Odd_Even) (description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893609))
(comp (ref R1)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893663))
(comp (ref R3)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B89366A))
(comp (ref R5)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893671))
(comp (ref R7)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893678))
(comp (ref R9)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B89367F))
(comp (ref R13)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893686))
(comp (ref R15)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B89368D))
(comp (ref R17)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893694))
(comp (ref R19)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B89369B))
(comp (ref R21)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936A2))
(comp (ref R23)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936A9))
(comp (ref R25)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936B0))
(comp (ref R27)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936B7))
(comp (ref R31)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936BE))
(comp (ref R33)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936C5))
(comp (ref R35)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936CC))
(comp (ref R37)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936D3))
(comp (ref R39)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936DA))
(comp (ref R40)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936E1))
(comp (ref R38)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936E8))
(comp (ref R36)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936EF))
(comp (ref R34)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936F6))
(comp (ref R32)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B8936FD))
(comp (ref R28)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893704))
(comp (ref R26)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B89370B))
(comp (ref R24)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893712))
(comp (ref R22)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893719))
(comp (ref R20)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893720))
(comp (ref R18)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893727))
(comp (ref R16)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B89372E))
(comp (ref R14)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893735))
(comp (ref R10)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B89373C))
(comp (ref R8)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893743))
(comp (ref R6)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B89374A))
(comp (ref R4)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893751))
(comp (ref R2)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B893758))
(comp (ref R30)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B9B8421))
(comp (ref R29)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B9B84C5))
(comp (ref R11)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B9B8BCB))
(comp (ref R12)
(value 50)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5B9E0A3B))
(comp (ref D36)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5BA4DD15))
(comp (ref D37)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5BA53B88))
(comp (ref D38)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5BA59BF2))
(comp (ref D39)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5BA601BB))
(comp (ref D40)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-323_SC-70)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /GPIO/) (tstamps /5B89AD18/))
(tstamp 5BA66679)))
(libparts
(libpart (lib Connector) (part Conn_01x03_Male)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector) (part Conn_01x04_Male)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector) (part Screw_Terminal_01x04)
(description "Generic screw terminal, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp TerminalBlock*:*))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_01x04))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x20_Odd_Even)
(description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x20_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))
(pin (num 27) (name Pin_27) (type passive))
(pin (num 28) (name Pin_28) (type passive))
(pin (num 29) (name Pin_29) (type passive))
(pin (num 30) (name Pin_30) (type passive))
(pin (num 31) (name Pin_31) (type passive))
(pin (num 32) (name Pin_32) (type passive))
(pin (num 33) (name Pin_33) (type passive))
(pin (num 34) (name Pin_34) (type passive))
(pin (num 35) (name Pin_35) (type passive))
(pin (num 36) (name Pin_36) (type passive))
(pin (num 37) (name Pin_37) (type passive))
(pin (num 38) (name Pin_38) (type passive))
(pin (num 39) (name Pin_39) (type passive))
(pin (num 40) (name Pin_40) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part CP1)
(description "Polarised capacitor")
(docs ~)
(footprints
(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 R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Diode) (part BAT54S)
(description "schottky barrier diode")
(docs https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(footprints
(fp SOT*23*))
(fields
(field (name Reference) D)
(field (name Value) BAT54S)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib HSMC) (part HSMC)
(fields
(field (name Reference) J)
(field (name Value) HSMC)
(field (name Datasheet) https://www.intel.com/content/dam/altera-www/global/en_US/pdfs/literature/ds/hsmc_spec.pdf))
(pins
(pin (num 1) (name XCVR_TXp7) (type passive))
(pin (num 2) (name XCVR_RXp7) (type passive))
(pin (num 3) (name XCVR_TXn7) (type passive))
(pin (num 4) (name XCVR_RXn7) (type passive))
(pin (num 5) (name XCVR_TXp6) (type passive))
(pin (num 6) (name XCVR_RXp6) (type passive))
(pin (num 7) (name XCVR_TXn6) (type passive))
(pin (num 8) (name XCVR_RXn6) (type passive))
(pin (num 9) (name XCVR_TXp5) (type passive))
(pin (num 10) (name XCVR_RXp5) (type passive))
(pin (num 11) (name XCVR_TXn5) (type passive))
(pin (num 12) (name XCVR_RXn5) (type passive))
(pin (num 13) (name XCVR_TXp4) (type passive))
(pin (num 14) (name XCVR_RXp4) (type passive))
(pin (num 15) (name XCVR_TXn4) (type passive))
(pin (num 16) (name XCVR_RXn4) (type passive))
(pin (num 17) (name XCVR_TXp3) (type passive))
(pin (num 18) (name XCVR_RXp3) (type passive))
(pin (num 19) (name XCVR_TXn3) (type passive))
(pin (num 20) (name XCVR_RXn3) (type passive))
(pin (num 21) (name XCVR_TXp2) (type passive))
(pin (num 22) (name XCVR_RXp2) (type passive))
(pin (num 23) (name XCVR_TXn2) (type passive))
(pin (num 24) (name XCVR_RXn2) (type passive))
(pin (num 25) (name XCVR_TXp1) (type passive))
(pin (num 26) (name XCVR_RXp1) (type passive))
(pin (num 27) (name XCVR_TXn1) (type passive))
(pin (num 28) (name XCVR_RXn1) (type passive))
(pin (num 29) (name XCVR_TXp0) (type passive))
(pin (num 30) (name XCVR_RXp0) (type passive))
(pin (num 31) (name XCVR_TXn0) (type passive))
(pin (num 32) (name XCVR_RXn0) (type passive))
(pin (num 33) (name SDA) (type passive))
(pin (num 34) (name SCL) (type passive))
(pin (num 35) (name JTAG_TCK) (type passive))
(pin (num 36) (name JTAG_TMS) (type passive))
(pin (num 37) (name JTAG_TDO) (type passive))
(pin (num 38) (name JTAG_TDI) (type passive))
(pin (num 39) (name CLKOUT0) (type passive))
(pin (num 40) (name CLKIN0) (type passive))
(pin (num 41) (name D0) (type passive))
(pin (num 42) (name D1) (type passive))
(pin (num 43) (name D2) (type passive))
(pin (num 44) (name D3) (type passive))
(pin (num 45) (name 3V3) (type passive))
(pin (num 46) (name 12V) (type passive))
(pin (num 47) (name D4/LVDS_TXp0) (type passive))
(pin (num 48) (name D5/LVDS_RXp0) (type passive))
(pin (num 49) (name D6/LVDS_TXn0) (type passive))
(pin (num 50) (name D7/LVDS_RXn0) (type passive))
(pin (num 51) (name 3V3) (type passive))
(pin (num 52) (name 12V) (type passive))
(pin (num 53) (name D8/LVDS_TXp1) (type passive))
(pin (num 54) (name D9/LVDS_RXp1) (type passive))
(pin (num 55) (name D10/LVDS_TXn1) (type passive))
(pin (num 56) (name D11/LVDS_RXn1) (type passive))
(pin (num 57) (name 3V3) (type passive))
(pin (num 58) (name 12V) (type passive))
(pin (num 59) (name D12/LVDS_TXp2) (type passive))
(pin (num 60) (name D13/LVDS_RXp2) (type passive))
(pin (num 61) (name D14/LVDS_TXn2) (type passive))
(pin (num 62) (name D15/LVDS_RXn2) (type passive))
(pin (num 63) (name 3V3) (type passive))
(pin (num 64) (name 12V) (type passive))
(pin (num 65) (name D16/LVDS_TXp3) (type passive))
(pin (num 66) (name D17/LVDS_RXp3) (type passive))
(pin (num 67) (name D18/LVDS_TXn3) (type passive))
(pin (num 68) (name D19/LVDS_RXn3) (type passive))
(pin (num 69) (name 3V3) (type passive))
(pin (num 70) (name 12V) (type passive))
(pin (num 71) (name D20/LVDS_TXp4) (type passive))
(pin (num 72) (name D21/LVDS_RXp4) (type passive))
(pin (num 73) (name D22/LVDS_TXn4) (type passive))
(pin (num 74) (name D23/LVDS_RXn4) (type passive))
(pin (num 75) (name 3V3) (type passive))
(pin (num 76) (name 12V) (type passive))
(pin (num 77) (name D24/LVDS_TXp5) (type passive))
(pin (num 78) (name D25/LVDS_RXp5) (type passive))
(pin (num 79) (name D26/LVDS_TXn5) (type passive))
(pin (num 80) (name D27/LVDS_RXn5) (type passive))
(pin (num 81) (name 3V3) (type passive))
(pin (num 82) (name 12V) (type passive))
(pin (num 83) (name D28/LVDS_TXp6) (type passive))
(pin (num 84) (name D29/LVDS_RXp6) (type passive))
(pin (num 85) (name D30/LVDS_TXn6) (type passive))
(pin (num 86) (name D31/LVDS_RXn6) (type passive))
(pin (num 87) (name 3V3) (type passive))
(pin (num 88) (name 12V) (type passive))
(pin (num 89) (name D32/LVDS_TXp7) (type passive))
(pin (num 90) (name D33/LVDS_RXp7) (type passive))
(pin (num 91) (name D34/LVDS_TXn7) (type passive))
(pin (num 92) (name D35/LVDS_RXn7) (type passive))
(pin (num 93) (name 3V3) (type passive))
(pin (num 94) (name 12V) (type passive))
(pin (num 95) (name D36/CLKOUT1p) (type passive))
(pin (num 96) (name D37/CLKIN1p) (type passive))
(pin (num 97) (name D38/CLKOUT1n) (type passive))
(pin (num 98) (name D39/CLKIN1n) (type passive))
(pin (num 99) (name 3V3) (type passive))
(pin (num 100) (name 12V) (type passive))
(pin (num 101) (name D40/LVDS_TXp8) (type passive))
(pin (num 102) (name D41/LVDS_RXp8) (type passive))
(pin (num 103) (name D42/LVDS_TXn8) (type passive))
(pin (num 104) (name D43/LVDS_RXn8) (type passive))
(pin (num 105) (name 3V3) (type passive))
(pin (num 106) (name 12V) (type passive))
(pin (num 107) (name D44/LVDS_TXp9) (type passive))
(pin (num 108) (name D45/LVDS_RXp9) (type passive))
(pin (num 109) (name D46/LVDS_TXn9) (type passive))
(pin (num 110) (name D47/LVDS_RXn9) (type passive))
(pin (num 111) (name 3V3) (type passive))
(pin (num 112) (name 12V) (type passive))
(pin (num 113) (name D48/LVDS_TXp10) (type passive))
(pin (num 114) (name D49/LVDS_RXp10) (type passive))
(pin (num 115) (name D50/LVDS_TXn10) (type passive))
(pin (num 116) (name D51/LVDS_RXn10) (type passive))
(pin (num 117) (name 3V3) (type passive))
(pin (num 118) (name 12V) (type passive))
(pin (num 119) (name D52/LVDS_TXp11) (type passive))
(pin (num 120) (name D53/LVDS_RXp11) (type passive))
(pin (num 121) (name D54/LVDS_TXn11) (type passive))
(pin (num 122) (name D55/LVDS_RXn11) (type passive))
(pin (num 123) (name 3V3) (type passive))
(pin (num 124) (name 12V) (type passive))
(pin (num 125) (name D56/LVDS_TXp12) (type passive))
(pin (num 126) (name D57/LVDS_RXp12) (type passive))
(pin (num 127) (name D58/LVDS_TXn12) (type passive))
(pin (num 128) (name D59/LVDS_RXn12) (type passive))
(pin (num 129) (name 3V3) (type passive))
(pin (num 130) (name 12V) (type passive))
(pin (num 131) (name D60/LVDS_TXp13) (type passive))
(pin (num 132) (name D61/LVDS_RXp13) (type passive))
(pin (num 133) (name D62/LVDS_TXn13) (type passive))
(pin (num 134) (name D63/LVDS_RXn13) (type passive))
(pin (num 135) (name 3V3) (type passive))
(pin (num 136) (name 12V) (type passive))
(pin (num 137) (name D64/LVDS_TXp14) (type passive))
(pin (num 138) (name D65/LVDS_RXp14) (type passive))
(pin (num 139) (name D66/LVDS_TXn14) (type passive))
(pin (num 140) (name D67/LVDS_RXn14) (type passive))
(pin (num 141) (name 3V3) (type passive))
(pin (num 142) (name 12V) (type passive))
(pin (num 143) (name D68/LVDS_TXp15) (type passive))
(pin (num 144) (name D69/LVDS_RXp15) (type passive))
(pin (num 145) (name D70/LVDS_TXn15) (type passive))
(pin (num 146) (name D71/LVDS_RXn15) (type passive))
(pin (num 147) (name 3V3) (type passive))
(pin (num 148) (name 12V) (type passive))
(pin (num 149) (name D72/LVDS_TXp16) (type passive))
(pin (num 150) (name D73/LVDS_RXp16) (type passive))
(pin (num 151) (name D74/LVDS_TXn16) (type passive))
(pin (num 152) (name D75/LVDS_RXn16) (type passive))
(pin (num 153) (name 3V3) (type passive))
(pin (num 154) (name 12V) (type passive))
(pin (num 155) (name D76/CLKOUT2p) (type passive))
(pin (num 156) (name D77/CLKIN2p) (type passive))
(pin (num 157) (name D78/CLKOUT2n) (type passive))
(pin (num 158) (name D79/CLKIN2n) (type passive))
(pin (num 159) (name 3V3) (type passive))
(pin (num 160) (name PSNTn) (type passive))
(pin (num 161) (name GND) (type passive))
(pin (num 162) (name GND) (type passive))
(pin (num 163) (name GND) (type passive))
(pin (num 164) (name GND) (type passive))
(pin (num 165) (name GND) (type passive))
(pin (num 166) (name GND) (type passive))
(pin (num 167) (name GND) (type passive))
(pin (num 168) (name GND) (type passive))
(pin (num 169) (name GND) (type passive))
(pin (num 170) (name GND) (type passive))
(pin (num 171) (name GND) (type passive))
(pin (num 172) (name GND) (type passive))))
(libpart (lib Regulator_Linear) (part LM78M05_TO252)
(aliases
(alias MC78M05_TO252)
(alias KA78M05_TO252)
(alias LF15_TO252)
(alias LF18_TO252)
(alias LF25_TO252)
(alias LF33_TO252)
(alias LF50_TO252)
(alias LF60_TO252)
(alias LF80_TO252)
(alias LF85_TO252)
(alias LF120_TO252)
(alias LP2950-3.0_TO252)
(alias LP2950-3.3_TO252)
(alias LP2950-5.0_TO252)
(alias LF47_TO252)
(alias LF90_TO252))
(description "Positive 500mA 35V Linear Regulator, Fixed Output 5V, TO-252 (D-PAK)")
(docs http://www.fairchildsemi.com/ds/LM/LM78M05.pdf)