-
Notifications
You must be signed in to change notification settings - Fork 162
/
edk.net
1594 lines (1594 loc) · 55.9 KB
/
edk.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/pablo/Documents/CIAA-Repositories/Hardware/PCB/EDU-INTEL/edk.sch)
(date "mié 22 abr 2015 11:56:11 ART")
(tool "Eeschema (2015-01-17 BZR 5377)-product"))
(components
(comp (ref P1)
(value I/O)
(footprint Pin_Headers:Pin_Header_Straight_2x10)
(libsource (lib conn) (part CONN_02X10))
(sheetpath (names /) (tstamps /))
(tstamp 54DB0307))
(comp (ref P2)
(value I/O)
(footprint Pin_Headers:Pin_Header_Straight_2x10)
(libsource (lib conn) (part CONN_02X10))
(sheetpath (names /) (tstamps /))
(tstamp 54DB171A))
(comp (ref P3)
(value PWR)
(footprint Pin_Headers:Pin_Header_Straight_2x04)
(libsource (lib conn) (part CONN_02X04))
(sheetpath (names /) (tstamps /))
(tstamp 54DCCB1C))
(comp (ref H3)
(value "Mounting hole")
(footprint Mounting_Holes:MountingHole_3mm)
(libsource (lib device) (part TST))
(sheetpath (names /) (tstamps /))
(tstamp 54DEACDB))
(comp (ref H4)
(value "Mounting hole")
(footprint Mounting_Holes:MountingHole_3mm)
(libsource (lib device) (part TST))
(sheetpath (names /) (tstamps /))
(tstamp 54DEC26A))
(comp (ref H1)
(value "Mounting hole")
(footprint Mounting_Holes:MountingHole_3mm)
(libsource (lib device) (part TST))
(sheetpath (names /) (tstamps /))
(tstamp 54DEC2E0))
(comp (ref H2)
(value "Mounting hole")
(footprint Mounting_Holes:MountingHole_3mm)
(libsource (lib device) (part TST))
(sheetpath (names /) (tstamps /))
(tstamp 54DEC2E6))
(comp (ref U2)
(value INTEL_EDISON)
(footprint intel_edison:INTEL_EDISON)
(libsource (lib intel_edison) (part INTEL_EDISON))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 544FBFB3))
(comp (ref R2)
(value 220)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 544FDE63))
(comp (ref SW1)
(value POWER_BTN)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 544FFE3E))
(comp (ref R1)
(value 10k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 544FFE69))
(comp (ref BT1)
(value BATTERY)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib device) (part BATTERY))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54500044))
(comp (ref SW2)
(value RCVR_MODE)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54500269))
(comp (ref Q2)
(value BSS138DP)
(footprint ref_packages:-SOT363_PHILIPS)
(libsource (lib bss138dp) (part BSS138DP))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54503D49))
(comp (ref R6)
(value 4.7k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54503D79))
(comp (ref R9)
(value 4.7k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54503FEA))
(comp (ref R8)
(value 4.7k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 5450412E))
(comp (ref R7)
(value 4.7k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 5450413E))
(comp (ref Q3)
(value BSS138DP)
(footprint ref_packages:-SOT363_PHILIPS)
(libsource (lib bss138dp) (part BSS138DP))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 545045F4))
(comp (ref R10)
(value 4.7k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 545045FA))
(comp (ref R13)
(value 4.7k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 5450460D))
(comp (ref R12)
(value 4.7k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54504626))
(comp (ref R11)
(value 4.7k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 5450462C))
(comp (ref C2)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54510ED5))
(comp (ref C3)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54510EEA))
(comp (ref SW3)
(value FWR_RCVR)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54511CA9))
(comp (ref R5)
(value 220)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54511E51))
(comp (ref Q1)
(value BSS138)
(footprint SMD_Packages:SOT-23)
(libsource (lib transistors) (part BSS138))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54523DD4))
(comp (ref R4)
(value 10k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54523DE7))
(comp (ref D1)
(value LED)
(footprint LEDs:LED-0603)
(libsource (lib device) (part LED))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54523FB5))
(comp (ref R3)
(value 10k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54523FC2))
(comp (ref C4)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 5453A0ED))
(comp (ref C1)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 5453A0F3))
(comp (ref C5)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 5453A112))
(comp (ref U1)
(value TXB0108)
(footprint Housings_SSOP:SSOP-20_4.4x6.5mm_Pitch0.65mm)
(libsource (lib TXB0108) (part TXB0108))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 545A048B))
(comp (ref C6)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 545A06EA))
(comp (ref C7)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 545A06FF))
(comp (ref U3)
(value TXB0108)
(footprint Housings_SSOP:SSOP-20_4.4x6.5mm_Pitch0.65mm)
(libsource (lib TXB0108) (part TXB0108))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 545A072E))
(comp (ref C10)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54DC1248))
(comp (ref C11)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54DC1257))
(comp (ref U5)
(value TXB0108)
(footprint Housings_SSOP:SSOP-20_4.4x6.5mm_Pitch0.65mm)
(libsource (lib TXB0108) (part TXB0108))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54DC1270))
(comp (ref C8)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54DC5A72))
(comp (ref C9)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54DC5A81))
(comp (ref U4)
(value TXB0108)
(footprint Housings_SSOP:SSOP-20_4.4x6.5mm_Pitch0.65mm)
(libsource (lib TXB0108) (part TXB0108))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54DC5A99))
(comp (ref GS1)
(value GS3)
(footprint Connect:GS3)
(libsource (lib conn) (part GS3))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54DCDB14))
(comp (ref GS2)
(value GS3)
(footprint Connect:GS3)
(libsource (lib conn) (part GS3))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54DCF239))
(comp (ref GS3)
(value GS3)
(footprint Connect:GS3)
(libsource (lib conn) (part GS3))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 54DD4818))
(comp (ref GS4)
(value GS3)
(footprint Connect:GS3)
(libsource (lib conn) (part GS3))
(sheetpath (names /CPU/) (tstamps /54DA1A9C/))
(tstamp 5537D081))
(comp (ref J1)
(value ZX62-AB-5PA)
(footprint MicroUSB-ZX62AB&B-5PA:USB_microAB_ZX62-AB&B-5PA-11)
(fields
(field (name Descripcion) "CONNECTOR RECEPTACLE MICRO USB AB SMD"))
(libsource (lib edk-cache) (part MICRO_USB))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 545ED07C))
(comp (ref FB1)
(value BLM18KG221SN1D)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part FILTER))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 545F449B))
(comp (ref FB2)
(value MMZ1608B601C)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part FILTER))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 545F44AD))
(comp (ref U6)
(value MIC2039EYMT)
(footprint dfn6:DFN6_2x2mm_0.65Pitch)
(libsource (lib mic2039eymt) (part MIC2039EYMT))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 545F4701))
(comp (ref R14)
(value 10k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 545F472B))
(comp (ref C12)
(value 2.2uF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 545F476C))
(comp (ref R16)
(value "576 1%")
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 545F47F5))
(comp (ref R15)
(value 100k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 545F47FB))
(comp (ref TR1)
(value SRF2012)
(footprint srf2012:SRF2012)
(libsource (lib transf_unip) (part TRANSF_UNIP))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 5453DCB9))
(comp (ref U7)
(value PRTR5V0U2X)
(footprint opendous:SOT-143B)
(libsource (lib prtr5v0u2x) (part PRTR5V0U2X))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 5453DE95))
(comp (ref J2)
(value ZX62-B-5PA)
(footprint MicroUSB-ZX62AB&B-5PA:USB_microAB_ZX62-AB&B-5PA-11)
(fields
(field (name Descripcion) "CONNECTOR RECEPTACLE MICRO USB AB SMD"))
(libsource (lib edk-cache) (part MICRO_USB))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 5453DF8B))
(comp (ref FB3)
(value BLM18KG221SN1D)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part FILTER))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 5453DF91))
(comp (ref FB4)
(value MMZ1608B601C)
(footprint SMD_Packages:SMD-0603)
(libsource (lib device) (part FILTER))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 5453DF97))
(comp (ref TR2)
(value SRF2012)
(footprint srf2012:SRF2012)
(libsource (lib transf_unip) (part TRANSF_UNIP))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 5453DFB8))
(comp (ref U9)
(value PRTR5V0U2X)
(footprint opendous:SOT-143B)
(libsource (lib prtr5v0u2x) (part PRTR5V0U2X))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 5453DFD0))
(comp (ref U8)
(value FT232RQ)
(footprint SMD_Packages:QFN-32-1EP)
(libsource (lib ft232rq) (part FT232RQ))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 5453E43B))
(comp (ref C13)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 5453E448))
(comp (ref C14)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 5453E459))
(comp (ref C15)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names /USB/) (tstamps /54DD67E8/))
(tstamp 5453EB65))
(comp (ref J3)
(value SD-CON)
(footprint microsd:MicroSD_Hinged)
(libsource (lib sd-con) (part SD-CON))
(sheetpath (names "/SD Card/") (tstamps /54DE09A3/))
(tstamp 5454857F))
(comp (ref C16)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names "/SD Card/") (tstamps /54DE09A3/))
(tstamp 5454023C))
(comp (ref C18)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names "/SD Card/") (tstamps /54DE09A3/))
(tstamp 54540289))
(comp (ref C17)
(value 100nF)
(footprint SMD_Packages:SMD-0603_c)
(libsource (lib device) (part C))
(sheetpath (names "/SD Card/") (tstamps /54DE09A3/))
(tstamp 5454036F))
(comp (ref R18)
(value 10k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names "/SD Card/") (tstamps /54DE09A3/))
(tstamp 545404DF))
(comp (ref JP1)
(value CARD_DET)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib device) (part JUMPER))
(sheetpath (names "/SD Card/") (tstamps /54DE09A3/))
(tstamp 5457829E))
(comp (ref U10)
(value TXB0108)
(footprint Housings_SSOP:SSOP-20_4.4x6.5mm_Pitch0.65mm)
(libsource (lib TXB0108) (part TXB0108))
(sheetpath (names "/SD Card/") (tstamps /54DE09A3/))
(tstamp 54EB8FDA))
(comp (ref U11)
(value NCP1117ST33T3G)
(footprint SMD_Packages:SOT-223)
(libsource (lib regul) (part NCP1117ST33T3G))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 52B779B3))
(comp (ref C20)
(value 10uF)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeB_EIA-3528_HandSoldering)
(libsource (lib device) (part CAPAPOL))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 52B78D18))
(comp (ref D5)
(value LED)
(footprint LEDs:LED-0603)
(libsource (lib device) (part LED))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 52CF8844))
(comp (ref R19)
(value 1k)
(footprint SMD_Packages:SMD-0603_r)
(libsource (lib device) (part R))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 52CF884A))
(comp (ref D3)
(value PMEG3020EJ)
(footprint sod323:SOD323)
(libsource (lib device) (part DIODESCH))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 52EACD19))
(comp (ref D2)
(value PMEG3020EJ)
(footprint sod323:SOD323)
(libsource (lib device) (part DIODESCH))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 52EACD2B))
(comp (ref ZA1)
(value BZT52C5V6)
(footprint sod123_inv:SOD123_INV)
(libsource (lib device) (part ZENER))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 53BE2EA3))
(comp (ref U12)
(value NCP1117ST18T3G)
(footprint SMD_Packages:SOT-223)
(libsource (lib regul) (part NCP1117ST33T3G))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 5453FB45))
(comp (ref C21)
(value 10uF)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeB_EIA-3528_HandSoldering)
(libsource (lib device) (part CAPAPOL))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 5453FB51))
(comp (ref C19)
(value 10uF)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeB_EIA-3528_HandSoldering)
(libsource (lib device) (part CAPAPOL))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 54DB7F69))
(comp (ref D4)
(value PMEG3020EJ)
(footprint sod323:SOD323)
(libsource (lib device) (part DIODESCH))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 54DF9405))
(comp (ref P4)
(value 5V_IN)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 54DE7866))
(comp (ref P5)
(value 5V_IN)
(footprint Connect:BARREL_JACK)
(libsource (lib conn) (part BARREL_JACK))
(sheetpath (names "/Power Supply/") (tstamps /54DB722F/))
(tstamp 553529D0)))
(libparts
(libpart (lib device) (part BATTERY)
(fields
(field (name Reference) BT)
(field (name Value) BATTERY))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib device) (part C)
(description "Condensateur non polarise")
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(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 CP)
(aliases
(alias CAPAPOL))
(description "Condensateur polarise")
(footprints
(fp CP*)
(fp SM*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part DIODESCH)
(description "Diode schottky")
(footprints
(fp D?)
(fp S*))
(fields
(field (name Reference) D)
(field (name Value) DIODESCH))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib device) (part FILTER)
(description "Filtre EMI")
(fields
(field (name Reference) FB)
(field (name Value) FILTER))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part JUMPER)
(fields
(field (name Reference) JP)
(field (name Value) JUMPER))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part LED)
(footprints
(fp LED-3MM)
(fp LED-5MM)
(fp LED-10MM)
(fp LED-0603)
(fp LED-0805)
(fp LED-1206)
(fp LEDV))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib device) (part R)
(description Resistance)
(footprints
(fp R?)
(fp SM0603)
(fp SM0805)
(fp R?-*)
(fp SM1206))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part SW_PUSH)
(description "Push Button")
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part TST)
(fields
(field (name Reference) P)
(field (name Value) TST))
(pins
(pin (num 1) (name ~) (type passive))))
(libpart (lib device) (part ZENER)
(description "Diode zener")
(footprints
(fp D?)
(fp SO*)
(fp SM*))
(fields
(field (name Reference) D)
(field (name Value) ZENER))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib transistors) (part BSS138)
(description "BSS138, 50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23")
(docs http://www.fairchildsemi.com/ds/BS/BSS138.pdf)
(footprints
(fp SOT-23*))
(fields
(field (name Reference) Q)
(field (name Value) BSS138)
(field (name Footprint) SOT-23))
(pins
(pin (num 1) (name G) (type passive))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib conn) (part BARREL_JACK)
(description "DC Barrel Jack")
(fields
(field (name Reference) CON)
(field (name Value) BARREL_JACK))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib conn) (part CONN_01X02)
(footprints
(fp Pin_Header_Straight_1X02)
(fp Pin_Header_Angled_1X02)
(fp Socket_Strip_Straight_1X02)
(fp Socket_Strip_Angled_1X02))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X02))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))))
(libpart (lib conn) (part CONN_02X04)
(footprints
(fp Pin_Header_Straight_2X04)
(fp Pin_Header_Angled_2X04)
(fp Socket_Strip_Straight_2X04)
(fp Socket_Strip_Angled_2X04))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X04))
(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))))
(libpart (lib conn) (part CONN_02X10)
(footprints
(fp Pin_Header_Straight_2X10)
(fp Pin_Header_Angled_2X10)
(fp Socket_Strip_Straight_2X10)
(fp Socket_Strip_Angled_2X10))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X10))
(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))))
(libpart (lib conn) (part GS3)
(fields
(field (name Reference) GS)
(field (name Value) GS3)
(field (name Footprint) GS3))
(pins
(pin (num 1) (name G1) (type passive))
(pin (num 2) (name G2) (type passive))
(pin (num 3) (name G3) (type passive))))
(libpart (lib regul) (part NCP1117ST50T3G)
(aliases
(alias NCP1117ST12T3G)
(alias NCP1117ST15T3G)
(alias NCP1117ST18T3G)
(alias NCP1117ST20T3G)
(alias NCP1117ST25T3G)
(alias NCP1117ST285T3G)
(alias NCP1117ST33T3G))
(description "NCP1117ST50T3G, 1A Low drop-out regulator, Fixed Output 5V, SOT223")
(docs http://www.onsemi.com/pub_link/Collateral/NCP1117-D.PDF)
(footprints
(fp SOT223))
(fields
(field (name Reference) U)
(field (name Value) NCP1117ST50T3G))
(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 ft232rq) (part FT232RQ)
(fields
(field (name Reference) U)
(field (name Value) FT232RQ))
(pins
(pin (num 1) (name VCCIO) (type input))
(pin (num 2) (name RXD) (type input))
(pin (num 3) (name RI) (type input))
(pin (num 4) (name GND) (type power_in))
(pin (num 6) (name DCR) (type input))
(pin (num 7) (name DCD) (type input))
(pin (num 8) (name CTS) (type input))
(pin (num 9) (name CBUS4) (type BiDi))
(pin (num 10) (name CBUS2) (type BiDi))
(pin (num 11) (name CBUS3) (type BiDi))
(pin (num 14) (name USBD+) (type BiDi))
(pin (num 15) (name USBD-) (type BiDi))
(pin (num 16) (name 3V3OUT) (type input))
(pin (num 17) (name GND) (type power_in))
(pin (num 18) (name RESET) (type input))
(pin (num 19) (name VCC) (type power_in))
(pin (num 20) (name GND) (type power_in))
(pin (num 21) (name CBUS1) (type output))
(pin (num 22) (name CBUS0) (type BiDi))
(pin (num 24) (name AGND) (type power_in))
(pin (num 26) (name TEST) (type power_in))
(pin (num 27) (name OSCI) (type input))
(pin (num 28) (name OSCO) (type output))
(pin (num 30) (name TXD) (type output))
(pin (num 31) (name DTR) (type output))
(pin (num 32) (name RTS) (type output))
(pin (num 33) (name PAD) (type power_in))))
(libpart (lib bss138dp) (part BSS138DP)
(footprints
(fp SOT-23*))
(fields
(field (name Reference) Q)
(field (name Value) BSS138DP)
(field (name Footprint) SOT-363))
(pins
(pin (num 1) (name S1) (type passive))
(pin (num 2) (name G1) (type passive))
(pin (num 3) (name D2) (type passive))
(pin (num 4) (name S2) (type passive))
(pin (num 5) (name G2) (type passive))
(pin (num 6) (name D1) (type passive))))
(libpart (lib intel_edison) (part INTEL_EDISON)
(fields
(field (name Reference) U)
(field (name Value) INTEL_EDISON))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VSYS) (type power_in))
(pin (num 3) (name USB_ID) (type input))
(pin (num 4) (name VSYS) (type power_in))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name VSYS) (type power_in))
(pin (num 7) (name MSIC_SLP_CLK3) (type output))
(pin (num 8) (name 3.3Vout) (type power_in))
(pin (num 9) (name GND) (type power_in))
(pin (num 10) (name 3.3Vout) (type power_out))
(pin (num 11) (name GND) (type power_in))
(pin (num 12) (name 1.8Vout) (type power_out))
(pin (num 13) (name GND) (type power_in))
(pin (num 14) (name DCIN) (type power_in))
(pin (num 15) (name GND) (type power_in))
(pin (num 16) (name USB_DP) (type BiDi))
(pin (num 17) (name PWRBTN#) (type input))
(pin (num 18) (name USB_DN) (type BiDi))
(pin (num 19) (name FAULT) (type input))
(pin (num 20) (name USB_VBUS) (type power_in))
(pin (num 21) (name PSW) (type output))
(pin (num 22) (name GP134/UART_2_RX) (type BiDi))
(pin (num 23) (name V_VBAT_BKUP) (type power_in))
(pin (num 24) (name GP44) (type BiDi))
(pin (num 25) (name GP165) (type BiDi))
(pin (num 26) (name GP45) (type BiDi))
(pin (num 27) (name GP135/UART_2_TX) (type BiDi))
(pin (num 28) (name GP46) (type BiDi))
(pin (num 29) (name NC) (type NotConnected))
(pin (num 30) (name GP47) (type BiDi))
(pin (num 31) (name RCVR_MODE) (type input))
(pin (num 32) (name GP48) (type BiDi))
(pin (num 33) (name GP13_PWM1) (type BiDi))
(pin (num 34) (name GP49) (type BiDi))
(pin (num 35) (name GP12_PWM0) (type BiDi))
(pin (num 36) (name RESET_OUT#) (type output))
(pin (num 37) (name GP182_PWM2) (type BiDi))
(pin (num 38) (name NC) (type NotConnected))
(pin (num 39) (name GP183_PWM3) (type BiDi))
(pin (num 40) (name NC) (type NotConnected))
(pin (num 41) (name GP19/I2C_1_SCL) (type BiDi))
(pin (num 42) (name GP15) (type BiDi))
(pin (num 43) (name GP20/I2C_1_SDA) (type BiDi))
(pin (num 44) (name GP84/SD_0_CLK_FB) (type BiDi))
(pin (num 45) (name GP27/I2C_6_SCL) (type BiDi))
(pin (num 46) (name GP131/UART_1_TX) (type BiDi))
(pin (num 47) (name GP28/I2C_6_SDA) (type BiDi))
(pin (num 48) (name GP14) (type BiDi))
(pin (num 49) (name NC) (type NotConnected))
(pin (num 50) (name GP42/I2S_2_RXD) (type BiDi))
(pin (num 51) (name GP111/SPI_2_FS1) (type BiDi))
(pin (num 52) (name GP40/I2S_2_CLK) (type BiDi))
(pin (num 53) (name GP110/SPI_2_FS0) (type BiDi))
(pin (num 54) (name GP41/I2S_2_FS) (type BiDi))
(pin (num 55) (name GP109/SPI_2_CLK) (type BiDi))
(pin (num 56) (name GP43/I2S_2_TXD) (type BiDi))
(pin (num 57) (name GP115/SPI_2_TXD) (type BiDi))
(pin (num 58) (name GP78/SD_0_CLK) (type BiDi))
(pin (num 59) (name GP114/SPI_2_RXD) (type BiDi))
(pin (num 60) (name GP77/SD_0_CD#) (type BiDi))
(pin (num 61) (name GP130/UART_1_RX) (type BiDi))
(pin (num 62) (name GP79/SD_0_CMD) (type BiDi))
(pin (num 63) (name GP129/UART_1_RTS) (type BiDi))
(pin (num 64) (name GP82/SD_0_DAT2) (type BiDi))
(pin (num 65) (name GP128/UART_1_CTS) (type BiDi))
(pin (num 66) (name GP80/SD_0_DAT0) (type BiDi))
(pin (num 67) (name OSC_CLK_OUT_0) (type output))
(pin (num 68) (name GP83/SD_0_DAT3) (type BiDi))
(pin (num 69) (name FW_RCVR) (type output))
(pin (num 70) (name GP81/SD_0_DAT1) (type BiDi))
(pin (num TH) (name SHIELD) (type power_in))))
(libpart (lib mic2039eymt) (part MIC2039EYMT)
(fields
(field (name Reference) U)
(field (name Value) MIC2039EYMT))
(pins
(pin (num 1) (name VOUT) (type power_out))
(pin (num 2) (name ILIM) (type output))
(pin (num 3) (name FAULT) (type output))
(pin (num 4) (name EN) (type input))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name VIN) (type power_in))
(pin (num 7) (name PAD) (type power_in))))
(libpart (lib sd-con) (part SD-CON)
(fields
(field (name Reference) J)
(field (name Value) SD-CON)
(field (name Footprint) sdcard))
(pins
(pin (num 1) (name DAT2) (type BiDi))
(pin (num 2) (name CD/DAT3) (type BiDi))
(pin (num 3) (name CMD) (type input))
(pin (num 4) (name VDD) (type power_in))
(pin (num 5) (name CLK) (type input))
(pin (num 6) (name VSS) (type power_in))
(pin (num 7) (name DAT0) (type BiDi))
(pin (num 8) (name DAT1) (type BiDi))
(pin (num 9) (name SHLD1) (type power_in))
(pin (num 10) (name SHLD2) (type power_in))
(pin (num 11) (name SHLD3) (type power_in))
(pin (num 12) (name SHLD4) (type power_in))))
(libpart (lib TXB0108) (part TXB0108)
(fields
(field (name Reference) U)
(field (name Value) TXB0108))
(pins
(pin (num 1) (name A1) (type input))
(pin (num 2) (name VCCA) (type input))
(pin (num 3) (name A2) (type input))
(pin (num 4) (name A3) (type input))
(pin (num 5) (name A4) (type input))
(pin (num 6) (name A5) (type input))
(pin (num 7) (name A6) (type input))
(pin (num 8) (name A7) (type input))
(pin (num 9) (name A8) (type input))
(pin (num 10) (name OE) (type input))
(pin (num 11) (name GND) (type power_in))
(pin (num 12) (name B8) (type input))
(pin (num 13) (name B7) (type BiDi))
(pin (num 14) (name B6) (type BiDi))
(pin (num 15) (name B5) (type BiDi))
(pin (num 16) (name B4) (type input))
(pin (num 17) (name B3) (type BiDi))
(pin (num 18) (name B2) (type input))
(pin (num 19) (name VCCB) (type input))
(pin (num 20) (name B1) (type BiDi))))
(libpart (lib prtr5v0u2x) (part PRTR5V0U2X)
(fields
(field (name Reference) U)
(field (name Value) PRTR5V0U2X))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name I/O) (type BiDi))
(pin (num 3) (name I/O) (type BiDi))
(pin (num 4) (name VCC) (type power_in))))
(libpart (lib transf_unip) (part TRANSF_UNIP)
(fields
(field (name Reference) TR)
(field (name Value) TRANSF_UNIP))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))
(pin (num 3) (name ~) (type input))
(pin (num 4) (name ~) (type input))))
(libpart (lib edk-cache) (part MICRO_USB)
(fields
(field (name Reference) J)
(field (name Value) MICRO_USB)
(field (name Descripcion) "CONNECTOR RECEPTACLE MICRO USB AB SMD"))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name USB_DN) (type BiDi))
(pin (num 3) (name USB_DP) (type BiDi))
(pin (num 4) (name USB_ID) (type output))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name S2) (type power_in))
(pin (num 7) (name S1) (type power_in))
(pin (num 8) (name S3) (type power_in))
(pin (num 9) (name S4) (type power_in)))))
(libraries
(library (logical device)
(uri /usr/local/share/kicad/library/device.lib))
(library (logical transistors)
(uri /usr/local/share/kicad/library/transistors.lib))
(library (logical conn)
(uri /usr/local/share/kicad/library/conn.lib))
(library (logical regul)
(uri /usr/local/share/kicad/library/regul.lib))
(library (logical bss138dp)
(uri /home/pablo/Documents/CIAA-Repositories/Hardware/PCB/EDU-INTEL/components/bss138dp.lib))
(library (logical ft232rq)
(uri /home/pablo/Documents/CIAA-Repositories/Hardware/PCB/EDU-INTEL/components/ft232rq.lib))
(library (logical intel_edison)
(uri /home/pablo/Documents/CIAA-Repositories/Hardware/PCB/EDU-INTEL/components/intel_edison.lib))
(library (logical mic2039eymt)
(uri /home/pablo/Documents/CIAA-Repositories/Hardware/PCB/EDU-INTEL/components/mic2039eymt.lib))
(library (logical sd-con)
(uri /home/pablo/Documents/CIAA-Repositories/Hardware/PCB/EDU-INTEL/components/sd-con.lib))
(library (logical TXB0108)
(uri /home/pablo/Documents/CIAA-Repositories/Hardware/PCB/EDU-INTEL/components/TXB0108.lib))
(library (logical prtr5v0u2x)
(uri /home/pablo/Documents/CIAA-Repositories/Hardware/PCB/EDU-INTEL/components/prtr5v0u2x.lib))
(library (logical transf_unip)
(uri /home/pablo/Documents/CIAA-Repositories/Hardware/PCB/EDU-INTEL/components/transf_unip.lib))
(library (logical edk-cache)
(uri /home/pablo/Documents/CIAA-Repositories/Hardware/PCB/EDU-INTEL/edk-cache.lib)))
(nets
(net (code 1) (name /USB/FAULT)
(node (ref U2) (pin 19))
(node (ref R14) (pin 2))
(node (ref U6) (pin 3)))
(net (code 2) (name /CPU/SPI_MISO)