-
Notifications
You must be signed in to change notification settings - Fork 12
/
DFTBoard.net
6614 lines (6614 loc) · 250 KB
/
DFTBoard.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/julian/Downloads/dt01zynq/DFTBoard.sch)
(date "Tue 03 Dec 2019 11:29:24 PM EST")
(tool "Eeschema 5.1.5-52549c5~84~ubuntu18.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source DFTBoard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Power/) (tstamps /58508414/)
(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 /Audio/) (tstamps /58508444/)
(title_block
(title)
(company)
(rev)
(date)
(source Audio.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /USB/) (tstamps /5852A88E/)
(title_block
(title)
(company)
(rev)
(date)
(source USB.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /Sensors/) (tstamps /5852FF3B/)
(title_block
(title)
(company)
(rev)
(date)
(source sensors.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /DDR3/) (tstamps /58818A06/)
(title_block
(title)
(company)
(rev)
(date)
(source DDR3.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name /LCD50/) (tstamps /5C7C62AE/)
(title_block
(title)
(company)
(rev)
(date)
(source LCD50.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 8) (name /Storage/) (tstamps /5CA1ABAE/)
(title_block
(title)
(company)
(rev)
(date)
(source Storage.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref CON1)
(value AVR-JTAG-10)
(footprint DFTcustom:XilinxJTAG)
(fields
(field (name MFR) DNS))
(libsource (lib DFTBoard-rescue) (part AVR-JTAG-10-) (description ""))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7BE56A))
(comp (ref C32)
(value 47uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name MFR) "Murata Manufacturing Co Ltd")
(field (name MPN) GRM32ER70J476ME20L)
(field (name SPN) 490-6542-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7BE582))
(comp (ref C28)
(value 100uF)
(footprint Capacitor_SMD:C_1210_3225Metric)
(fields
(field (name MFR) "TAIYO YUDEN")
(field (name MPN) JMK325ABJ107MM-P)
(field (name SPN) 587-4313-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7BED66))
(comp (ref U7)
(value "SC189 - 1.8V")
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet DOCUMENTATION)
(fields
(field (name MFR) "Semtech Corporation")
(field (name MPN) SC189LSKTRT)
(field (name SPN) SC189LSKCT-ND)
(field (name SPR) Digikey))
(libsource (lib DFTBoard-rescue) (part SC189-) (description ""))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1C9C))
(comp (ref U4)
(value "SC189 - 3.3V")
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet DOCUMENTATION)
(fields
(field (name MFR) "Semtech Corporation")
(field (name MPN) SC189ZSKTRT)
(field (name SPN) SC189ZSKCT-ND)
(field (name SPR) Digikey))
(libsource (lib DFTBoard-rescue) (part SC189-) (description ""))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1CA8))
(comp (ref U3)
(value "SC189 - 1.0V")
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet DOCUMENTATION)
(fields
(field (name MFR) "Semtech Corporation")
(field (name MPN) SC189ASKTRT)
(field (name SPN) SC189ASKCT-ND)
(field (name SPR) Digikey))
(libsource (lib DFTBoard-rescue) (part SC189-) (description ""))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1CB4))
(comp (ref C3)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A106KE19L)
(field (name SPN) 490-1709-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1CCC))
(comp (ref C13)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A106KE19L)
(field (name SPN) 490-1709-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1CE4))
(comp (ref C2)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A106KE19L)
(field (name SPN) 490-1709-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1CF0))
(comp (ref C10)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A106KE19L)
(field (name SPN) 490-1709-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1CFC))
(comp (ref C11)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A106KE19L)
(field (name SPN) 490-1709-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1D08))
(comp (ref C26)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A106KE19L)
(field (name SPN) 490-1709-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1D20))
(comp (ref L2)
(value 2.2uH)
(footprint Capacitor_SMD:C_1812_4532Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) LQH43PN2R2M26L)
(field (name SPN) 490-12049-1-ND)
(field (name SPR) Digikey))
(libsource (lib DFTBoard-rescue) (part INDUCTOR_SMALL_P-) (description ""))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1D56))
(comp (ref L3)
(value 2.2uH)
(footprint Capacitor_SMD:C_1812_4532Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) LQH43PN2R2M26L)
(field (name SPN) 490-12049-1-ND)
(field (name SPR) Digikey))
(libsource (lib DFTBoard-rescue) (part INDUCTOR_SMALL_P-) (description ""))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1D62))
(comp (ref L4)
(value 2.2uH)
(footprint Capacitor_SMD:C_1812_4532Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) LQH43PN2R2M26L)
(field (name SPN) 490-12049-1-ND)
(field (name SPR) Digikey))
(libsource (lib DFTBoard-rescue) (part INDUCTOR_SMALL_P-) (description ""))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C7D1D6E))
(comp (ref C34)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C81518C))
(comp (ref FB1)
(value "120R, 100 MHz, size 0603")
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name MFR) "Murata Electronics")
(field (name MPN) BLM18AG121SN1D)
(field (name SPN) 490-1011-1-ND)
(field (name SPR) Digikey)
(field (name SPURL) -))
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C82C86A))
(comp (ref C33)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A106KE19L)
(field (name SPN) 490-1709-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C844825))
(comp (ref C22)
(value 330uF)
(footprint Capacitor_SMD:C_1206_3216Metric)
(fields
(field (name MFR) "AVX Corporation")
(field (name MPN) F950G337MAAAQ2)
(field (name SPN) 478-8378-1-ND)
(field (name SPR) Digikey)
(field (name SPURL) -))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C8AC20E))
(comp (ref C20)
(value 4.7uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A475KA73L)
(field (name SPN) 490-9750-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C8AC2A4))
(comp (ref C19)
(value 4.7uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A475KA73L)
(field (name SPN) 490-9750-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C8AC360))
(comp (ref C18)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C8AC564))
(comp (ref C17)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C8AC608))
(comp (ref C15)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C8AC69A))
(comp (ref C14)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C8AC72E))
(comp (ref C29)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C9D6835))
(comp (ref C30)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C9D694B))
(comp (ref C31)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5C9D69DD))
(comp (ref C25)
(value 100uF)
(footprint Capacitor_SMD:C_1210_3225Metric)
(fields
(field (name MFR) "TAIYO YUDEN")
(field (name MPN) JMK325ABJ107MM-P)
(field (name SPN) 587-4313-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CAC0871))
(comp (ref C23)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CAC0A11))
(comp (ref C24)
(value 4.7uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A475KA73L)
(field (name SPN) 490-9750-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CAC0BC7))
(comp (ref C27)
(value 4.7uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A475KA73L)
(field (name SPN) 490-9750-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CAFF907))
(comp (ref C12)
(value 100uF)
(footprint Capacitor_SMD:C_1210_3225Metric)
(fields
(field (name MFR) "TAIYO YUDEN")
(field (name MPN) JMK325ABJ107MM-P)
(field (name SPN) 587-4313-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CB552B2))
(comp (ref C8)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CB552BD))
(comp (ref C9)
(value 4.7uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A475KA73L)
(field (name SPN) 490-9750-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CB552C8))
(comp (ref C4)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CB8A6F6))
(comp (ref C5)
(value 4.7uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A475KA73L)
(field (name SPN) 490-9750-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CB8A701))
(comp (ref C6)
(value 100uF)
(footprint Capacitor_SMD:C_1210_3225Metric)
(fields
(field (name MFR) "TAIYO YUDEN")
(field (name MPN) JMK325ABJ107MM-P)
(field (name SPN) 587-4313-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CB8A6EB))
(comp (ref R9)
(value 4.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402JR-074K7L)
(field (name SPN) 311-4.7KJRCT-ND)
(field (name SPR) Digikey)
(field (name SPURL) -))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CA4F130))
(comp (ref R10)
(value 4.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402JR-074K7L)
(field (name SPN) 311-4.7KJRCT-ND)
(field (name SPR) Digikey)
(field (name SPURL) -))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CA826F0))
(comp (ref U1)
(value LM3880)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet http://www.ti.com/lit/ds/symlink/lm3880.pdf)
(fields
(field (name MFR) "Texas Instruments")
(field (name MPN) LM3880MF-1AE/NOPB)
(field (name SPN) LM3880MF-1AE/NOPBDKR-ND)
(field (name SPR) Digikey)
(field (name SPURL) -))
(libsource (lib Power_Supervisor) (part LM3880) (description "Simple Power Sequencer, SOT-23-6"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CA31CDF))
(comp (ref U2)
(value LM3880)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet http://www.ti.com/lit/ds/symlink/lm3880.pdf)
(fields
(field (name MFR) "Texas Instruments")
(field (name MPN) LM3880MF-1AE/NOPB)
(field (name SPN) LM3880MF-1AE/NOPBDKR-ND)
(field (name SPR) Digikey)
(field (name SPURL) -))
(libsource (lib Power_Supervisor) (part LM3880) (description "Simple Power Sequencer, SOT-23-6"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CA31F61))
(comp (ref R1)
(value 100k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-07100KL)
(field (name SPN) 311-100KLRTR-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CA780D9))
(comp (ref R2)
(value 100k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-07100KL)
(field (name SPN) 311-100KLRTR-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CA88CFA))
(comp (ref R3)
(value 100k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-07100KL)
(field (name SPN) 311-100KLRTR-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CA88D7C))
(comp (ref R4)
(value 100k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-07100KL)
(field (name SPN) 311-100KLRTR-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CA88E00))
(comp (ref R5)
(value 100k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-07100KL)
(field (name SPN) 311-100KLRTR-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CA88E86))
(comp (ref C1)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CAD3D93))
(comp (ref U20)
(value xc7z020clg484)
(footprint DFTcustom:BGA-484_19.0x19.0mm_Layout22x22_P0.80mm_dia0.40mm)
(fields
(field (name MFR) Xilinx)
(field (name MPN) XC7Z020-1CLG484C)
(field (name SPN) 122-1850-ND)
(field (name SPR) Digikey)
(field (name SPURL) -))
(libsource (lib xilinx7) (part xc7z020clg484) (description ""))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CC9035B))
(comp (ref R90)
(value .05)
(footprint Resistor_SMD:R_2512_6332Metric)
(libsource (lib DFTCustom) (part R) (description Resistor))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5E33F260))
(comp (ref R88)
(value .05)
(footprint Resistor_SMD:R_2512_6332Metric)
(libsource (lib DFTCustom) (part R) (description Resistor))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5E38593F))
(comp (ref C7)
(value 47uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(fields
(field (name MFR) "Murata Manufacturing Co Ltd")
(field (name MPN) GRM32ER70J476ME20L)
(field (name SPN) 490-6542-1-ND)
(field (name SPR) Digikey)
(field (name SPURL) -))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CD355D1))
(comp (ref R6)
(value 10k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-0710KL)
(field (name SPN) 311-10.0KLRTR-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CCBBDF0))
(comp (ref R8)
(value 4.7k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402JR-074K7L)
(field (name SPN) 311-4.7KJRCT-ND)
(field (name SPR) Digikey)
(field (name SPURL) -))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CCB0802))
(comp (ref R7)
(value "240 1%")
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-07240RL)
(field (name SPN) 311-240LRTR-ND)
(field (name SPR) Digikey)
(field (name SPURL) -))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CC9B486))
(comp (ref L1)
(value 2.2uH)
(footprint Capacitor_SMD:C_1812_4532Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) LQH43PN2R2M26L)
(field (name SPN) 490-12049-1-ND)
(field (name SPR) Digikey))
(libsource (lib DFTBoard-rescue) (part INDUCTOR_SMALL_P-) (description ""))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CC3D4E3))
(comp (ref U5)
(value TLV62080DSGx)
(footprint Package_SON:WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm)
(datasheet http://www.ti.com/lit/ds/symlink/tlv62080.pdf)
(fields
(field (name MFR) "Texas Instruments")
(field (name MPN) TLV62080DSGR)
(field (name SPN) 296-39270-6-ND)
(field (name SPR) Digikey)
(field (name SPURL) -))
(libsource (lib Regulator_Switching) (part TLV62080DSGx) (description "High-efficiency Step-down Converter"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5CC29908))
(comp (ref R89)
(value .05)
(footprint Resistor_SMD:R_2512_6332Metric)
(libsource (lib DFTCustom) (part R) (description Resistor))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5E44787D))
(comp (ref C108)
(value .47uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C474KA88D)
(field (name SPN) 490-3295-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /Power/) (tstamps /58508414/))
(tstamp 5E15F16B))
(comp (ref R27)
(value 100k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-07100KL)
(field (name SPN) 311-100KLRTR-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 5862FD7D))
(comp (ref R29)
(value 100k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-07100KL)
(field (name SPN) 311-100KLRTR-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 5862FDDA))
(comp (ref R32)
(value 49.9k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-0749K9L)
(field (name SPN) 311-49.9KLRCT-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 5863022C))
(comp (ref R30)
(value 49.9k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-0749K9L)
(field (name SPN) 311-49.9KLRCT-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 5863028A))
(comp (ref R17)
(value 100k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-07100KL)
(field (name SPN) 311-100KLRTR-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 586315C6))
(comp (ref R18)
(value 49.9k)
(footprint Resistor_SMD:R_0402_1005Metric)
(fields
(field (name MFR) Yageo)
(field (name MPN) RC0402FR-0749K9L)
(field (name SPN) 311-49.9KLRCT-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 5863175D))
(comp (ref C36)
(value .1uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C104KA01D)
(field (name SPN) 490-1532-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 5874D553))
(comp (ref C64)
(value .1uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C104KA01D)
(field (name SPN) 490-1532-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 5874E569))
(comp (ref C63)
(value .1uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C104KA01D)
(field (name SPN) 490-1532-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 5874E8CC))
(comp (ref J4)
(value "AUDIO JACK")
(footprint DFTcustom:RA49C14B)
(fields
(field (name MFR) "Switchcraft Conxall")
(field (name MPN) RA49C12B)
(field (name SPN) SC2083-ND)
(field (name SPR) Digikey))
(libsource (lib DFTBoard-rescue) (part JACK_TRS_5PINS) (description ""))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 5877D72D))
(comp (ref J3)
(value "AUDIO JACK")
(footprint DFTcustom:RA49C14B)
(fields
(field (name MFR) "Switchcraft Conxall")
(field (name MPN) RA49C12B)
(field (name SPN) SC2083-ND)
(field (name SPR) Digikey))
(libsource (lib DFTBoard-rescue) (part JACK_TRS_5PINS) (description ""))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 5877DC82))
(comp (ref J2)
(value "AUDIO JACK")
(footprint DFTcustom:RA49C14B)
(fields
(field (name MFR) "Switchcraft Conxall")
(field (name MPN) RA49C12B)
(field (name SPN) SC2083-ND)
(field (name SPR) Digikey))
(libsource (lib DFTBoard-rescue) (part JACK_TRS_5PINS) (description ""))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 5877E58B))
(comp (ref MIC1)
(value MEMSMIC)
(footprint DFTcustom:WM7121PE)
(fields
(field (name MFR) "Cirrus Logic")
(field (name MPN) WM7121PIMSE/RV)
(field (name SPN) WM7121PIMSE/RVCT-ND)
(field (name SPR) Digikey))
(libsource (lib DFTBoard-rescue) (part MEMSMIC) (description ""))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 58786ED4))
(comp (ref C52)
(value .1uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C104KA01D)
(field (name SPN) 490-1532-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 588D48D0))
(comp (ref C56)
(value .1uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C104KA01D)
(field (name SPN) 490-1532-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 588D55C1))
(comp (ref C54)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A106KE19L)
(field (name SPN) 490-1709-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 588D86AF))
(comp (ref C58)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A106KE19L)
(field (name SPN) 490-1709-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 588D8CBD))
(comp (ref C53)
(value .1uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C104KA01D)
(field (name SPN) 490-1532-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 588DA9D9))
(comp (ref C51)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A106KE19L)
(field (name SPN) 490-1709-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 588DA9DF))
(comp (ref C62)
(value .1uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C104KA01D)
(field (name SPN) 490-1532-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 588E3BBC))
(comp (ref C39)
(value .1uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM188R71C104KA01D)
(field (name SPN) 490-1532-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 588BFACF))
(comp (ref C41)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM21BR61A106KE19L)
(field (name SPN) 490-1709-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 588BFAD5))
(comp (ref C35)
(value 2.2uF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(fields
(field (name MFR) Murata)
(field (name MPN) GRM155R61A225KE95D)
(field (name SPN) 490-10451-1-ND)
(field (name SPR) Digikey))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /58508444/))
(tstamp 589CF9FC))
(comp (ref C60)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)