This repository has been archived by the owner on Nov 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sbc.net
1748 lines (1748 loc) · 72.5 KB
/
sbc.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/rithvikp/kicad_projects/sbc/sbc.sch)
(date "Sat Jan 28 18:43:25 2017")
(tool "Eeschema 4.0.5-e0-6337~49~ubuntu16.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source sbc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref IC1)
(value AM335X_ZCZ)
(footprint libraries:bga-csg324)
(libsource (lib opendous) (part AM335X_ZCZ))
(sheetpath (names /) (tstamps /))
(tstamp 5881C1EF))
(comp (ref DRAM1)
(value DRAM-IS43TR16128B-125KBL)
(footprint SMD_Packages:BGA-96_pitch0.8mm_dia0.4mm)
(libsource (lib sbc) (part DRAM-IS43TR16128B-125KBL))
(sheetpath (names /) (tstamps /))
(tstamp 58824C60))
(comp (ref R16)
(value 49.9)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5884E56F))
(comp (ref R23)
(value 1K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58849B3A))
(comp (ref R24)
(value 1K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58849C6F))
(comp (ref C54)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58849F17))
(comp (ref C55)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5884A139))
(comp (ref CON1)
(value Micro_SD_Card)
(footprint libraries:MICRO_SD_HINGE_AMP)
(libsource (lib conn) (part Micro_SD_Card))
(sheetpath (names /) (tstamps /))
(tstamp 5881C231))
(comp (ref P1)
(value USB_A)
(footprint Connectors:USB_A)
(libsource (lib conn) (part USB_A))
(sheetpath (names /) (tstamps /))
(tstamp 58852B6F))
(comp (ref F1)
(value Polyfuse)
(footprint Fuse_Holders_and_Fuses:Fuse_SMD1206_HandSoldering)
(libsource (lib device) (part Polyfuse))
(sheetpath (names /) (tstamps /))
(tstamp 5885B83F))
(comp (ref TPS4)
(value TPS82084)
(footprint Housings_SSOP:MSOP-8-1EP_3x3mm_Pitch0.65mm)
(libsource (lib sbc) (part TPS82084))
(sheetpath (names /) (tstamps /))
(tstamp 5885C79B))
(comp (ref R4)
(value 499K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5885D933))
(comp (ref C4)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5885E350))
(comp (ref C8)
(value 22uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5885E617))
(comp (ref R11)
(value 70K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5885ED27))
(comp (ref R12)
(value 80K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5885ED98))
(comp (ref TPS2)
(value TPS82084)
(footprint Housings_SSOP:MSOP-8-1EP_3x3mm_Pitch0.65mm)
(libsource (lib sbc) (part TPS82084))
(sheetpath (names /) (tstamps /))
(tstamp 5885FEF2))
(comp (ref R2)
(value 499K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5885FF19))
(comp (ref C1)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5885FF27))
(comp (ref C5)
(value 22uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5885FF3B))
(comp (ref R5)
(value 250K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5885FF4F))
(comp (ref R6)
(value 80K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5885FF55))
(comp (ref TPS1)
(value TPS82084)
(footprint Housings_SSOP:MSOP-8-1EP_3x3mm_Pitch0.65mm)
(libsource (lib sbc) (part TPS82084))
(sheetpath (names /) (tstamps /))
(tstamp 588601B1))
(comp (ref R1)
(value 499K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 588601D8))
(comp (ref C3)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588601E6))
(comp (ref C7)
(value 22uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588601FA))
(comp (ref R9)
(value 30K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5886020E))
(comp (ref R10)
(value 80K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58860214))
(comp (ref R14)
(value 1M)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5886E5A1))
(comp (ref Y2)
(value 24MHz)
(footprint Crystals:Crystal_SMD_2012-2pin_2.0x1.2mm_HandSoldering)
(libsource (lib device) (part Crystal))
(sheetpath (names /) (tstamps /))
(tstamp 5886E780))
(comp (ref C47)
(value 24pF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5886EAEB))
(comp (ref C46)
(value 24pF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5886ED0D))
(comp (ref Y1)
(value 32.768KHz)
(footprint Crystals:Crystal_SMD_2012-2pin_2.0x1.2mm_HandSoldering)
(libsource (lib device) (part Crystal))
(sheetpath (names /) (tstamps /))
(tstamp 58871D07))
(comp (ref C38)
(value 25pF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58871D0E))
(comp (ref C28)
(value 25pF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58871D15))
(comp (ref C49)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588753F2))
(comp (ref C48)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5887642D))
(comp (ref C50)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58876DE7))
(comp (ref C51)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58876FBB))
(comp (ref R15)
(value 240)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58866A7D))
(comp (ref C52)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588694C6))
(comp (ref C53)
(value 0.1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58869666))
(comp (ref R13)
(value 10K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58890083))
(comp (ref R18)
(value 10K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58864632))
(comp (ref R19)
(value 10K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 588660AE))
(comp (ref R20)
(value 10K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 588661BC))
(comp (ref R21)
(value 10K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 588669A0))
(comp (ref R22)
(value 10K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58866AC0))
(comp (ref R17)
(value 10K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5888F00A))
(comp (ref TPS3)
(value TPS82084)
(footprint Housings_SSOP:MSOP-8-1EP_3x3mm_Pitch0.65mm)
(libsource (lib sbc) (part TPS82084))
(sheetpath (names /) (tstamps /))
(tstamp 5889573D))
(comp (ref R3)
(value 499K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58895755))
(comp (ref C2)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5889575B))
(comp (ref C6)
(value 22uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5889576D))
(comp (ref R7)
(value 100K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 58895779))
(comp (ref R8)
(value 80K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5889577F))
(comp (ref C16)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588768FE))
(comp (ref C9)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5887790B))
(comp (ref C20)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5887B1B7))
(comp (ref C19)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5887B3FB))
(comp (ref C18)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5887B524))
(comp (ref C17)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5887B64A))
(comp (ref C10)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58881227))
(comp (ref C11)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58881337))
(comp (ref C12)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888143E))
(comp (ref C13)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888155C))
(comp (ref C14)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58881671))
(comp (ref C15)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58881899))
(comp (ref C26)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888AAF2))
(comp (ref C27)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888AAF8))
(comp (ref C25)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888D008))
(comp (ref C24)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888D259))
(comp (ref C23)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888D3A1))
(comp (ref C22)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888D4E6))
(comp (ref C21)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888D63C))
(comp (ref C29)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888FE7B))
(comp (ref C30)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888FE87))
(comp (ref C31)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888FE8D))
(comp (ref C32)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888FE93))
(comp (ref C33)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888FE99))
(comp (ref C34)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888FE9F))
(comp (ref C37)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5888FEA5))
(comp (ref C35)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5889217C))
(comp (ref C36)
(value 10nF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588922D1))
(comp (ref C45)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588940BB))
(comp (ref C44)
(value 10uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588940E9))
(comp (ref C43)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588940EF))
(comp (ref C42)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588940F5))
(comp (ref C41)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 588940FB))
(comp (ref C40)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58894101))
(comp (ref C39)
(value 1uF)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 58894107))
(comp (ref R25)
(value 10K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 588DDA65)))
(libparts
(libpart (lib opendous) (part AM335X_ZCZ)
(description "AM335x ARM Cortex-A8 Microprocessor NFBGA324")
(fields
(field (name Reference) IC)
(field (name Value) AM335X_ZCZ))
(pins
(pin (num A1) (name VSS) (type power_in))
(pin (num A2) (name xVDD_MPU_MON) (type power_in))
(pin (num A3) (name RSVD-TESTOUT) (type output))
(pin (num A4) (name RTC_XTALOUT) (type output))
(pin (num A5) (name xVSS_RTC) (type power_in))
(pin (num A6) (name RTC_XTALIN) (type input))
(pin (num A7) (name AIN3) (type passive))
(pin (num A8) (name AIN6) (type passive))
(pin (num A9) (name VREFN) (type passive))
(pin (num A10) (name WARMRSTn-nRESETIN_OUT) (type BiDi))
(pin (num A11) (name TDO) (type output))
(pin (num A12) (name TCK) (type input))
(pin (num A13) (name xMcASP0_ACLKX-eHRPWM0A-SPI1_SCLK-MMC0_SDCD-PR1_PRU0_PRU_R30_0-PR1_PRU0_PRU_R31_0-GPIO3_14) (type BiDi))
(pin (num A14) (name xMcASP0_AHCLKX-eQEP0_STROBE-McASP0_AXR3-McASP1_AXR1-EMU4-PR1_PRU0_PRU_R30_7-PR1_PRU0_PRU_R31_7-GPIO3_21) (type BiDi))
(pin (num A15) (name xDMA_EVENT_INTR0-TIMER4-CLKOUT1-SPI1_CS1-PR1_PRU1_PRU_R31_16-EMU2-GPIO0_19) (type BiDi))
(pin (num A16) (name SPI0_CS0-MMC2_SDWP-I2C1_SCL-eHRPWM0_SYNCI-PR1_UART0_TXD-PR1_EDIO_DATA_IN1-PR1_EDIO_DATA_OUT1-GPIO0_5) (type output))
(pin (num A17) (name SPI0_SCLK-UART2_RXD-I2C2_SDA-eHRPWM0A-PR1_UART0_CTS_n-PR1_EDIO_SOF-EMU2-GPIO0_2) (type output))
(pin (num A18) (name VSS) (type power_in))
(pin (num B1) (name DDR_A5) (type output))
(pin (num B2) (name DDR_WEn) (type output))
(pin (num B3) (name DDR_BA2) (type output))
(pin (num B4) (name RTC_KALDO_ENn) (type input))
(pin (num B5) (name RTC_PWRONRSTn) (type input))
(pin (num B6) (name AIN0) (type passive))
(pin (num B7) (name AIN2) (type passive))
(pin (num B8) (name AIN5) (type passive))
(pin (num B9) (name VREFP) (type passive))
(pin (num B10) (name TRSTn) (type input))
(pin (num B11) (name TDI) (type input))
(pin (num B12) (name xMcASP0_ACLKR-eQEP0A_IN-McASP0_AXR2-McASP1_ACLKX-MMC0_SDWP-PR1_PRU0_PRU_R30_4-PR1_PRU0_PRU_R31_4-GPIO3_18) (type BiDi))
(pin (num B13) (name xMcASP0_FSX-eHRPWM0B-SPI1_D0-MMC1_SDCD-PR1_PRU0_PRU_R30_1-PR1_PRU0_PRU_R31_1-GPIO3_15) (type BiDi))
(pin (num B14) (name EMU1-GPIO3_8) (type BiDi))
(pin (num B15) (name PWRONRSTn) (type input))
(pin (num B16) (name SPI0_D1-MMC1_SDWP-I2C1_SDA-eHRPWM0_TRIPZONE_INPUT-PR1_UART0_RXD-PR1_EDIO_DATA_IN0-PR1_EDIO_DATA_OUT0-GPIO0_4) (type output))
(pin (num B17) (name SPI0_D0-UART2_TXD-I2C2_SCL-eHRPWM0B-PR1_UART0_RTS_n-PR1_EDIO_LATCH_IN-EMU3-GPIO0_3) (type output))
(pin (num B18) (name NMIn-EXTINTn) (type input))
(pin (num C1) (name DDR_A9) (type output))
(pin (num C2) (name DDR_A4) (type output))
(pin (num C3) (name DDR_A3) (type output))
(pin (num C4) (name DDR_BA0) (type output))
(pin (num C5) (name EXT_WAKEUP) (type input))
(pin (num C6) (name PMIC_POWER_EN) (type output))
(pin (num C7) (name AIN1) (type passive))
(pin (num C8) (name AIN4) (type passive))
(pin (num C9) (name AIN7) (type passive))
(pin (num C10) (name CAP_VBB_MPU) (type power_in))
(pin (num C11) (name TMS) (type input))
(pin (num C12) (name xMcASP0_AHCLKR-eHRPWM0_SYNCI-McASP0_AXR2-SPI1_CS0-eCAP2_IN_PWM2_OUT-PR1_PRU0_PRU_R30_3-PR1_PRU0_PRU_R31_3-GPIO3_17) (type BiDi))
(pin (num C13) (name xMcASP0_FSR-eQEP0B_IN-McASP0_AXR3-McASP1_FSX-EMU2-PR1_PRU0_PRU_R30_5-PR1_PRU0_PRU_R31_5-GPIO3_19) (type BiDi))
(pin (num C14) (name EMU0-GPIO3_7) (type BiDi))
(pin (num C15) (name SPI0_CS1-UART3_RXD-eCAP1_IN_PWM1_OUT-MMC0_POW-XDMA_EVENT_INTR2-MMC0_SDCD-EMU4-GPIO0_6) (type output))
(pin (num C16) (name I2C0_SCL-TIMER7-UART2_RTSn-eCAP1_IN_PWM1_OUT-GPIO3_6) (type BiDi))
(pin (num C17) (name I2C0_SDA-TIMER4-UART2_CTSn-eCAP2_IN_PWM2_OUT-GPIO3_5) (type BiDi))
(pin (num C18) (name eCAP0_IN_PWM0_OUT-UART3_TXD-SPI1_CS1-PR1_eCAP0_eCAP_CAPIN_APWM_O-SPI1_SCLK-MMC0_SDWP-XDMA_EVENT_INTR2-GPIO0_7) (type BiDi))
(pin (num D1) (name DDR_CKn) (type output))
(pin (num D2) (name DDR_CK) (type output))
(pin (num D3) (name DDR_A15) (type output))
(pin (num D4) (name DDR_A8) (type output))
(pin (num D5) (name DDR_A6) (type output))
(pin (num D6) (name CAP_VDD_RTC) (type power_in))
(pin (num D7) (name VDDS_RTC) (type power_in))
(pin (num D8) (name VDDA_ADC) (type power_in))
(pin (num D9) (name CAP_VDD_SRAM_CORE) (type power_in))
(pin (num D10) (name VDDS_SRAM_MPU_BB) (type power_in))
(pin (num D11) (name CAP_VDD_SRAM_MPU) (type power_in))
(pin (num D12) (name xMcASP0_AXR0-eHRPWM0_TRIPZONE_INPUT-SPI1_D1-MMC2_SDCD-PR1_PRU0_PRU_R30_2-PR1_PRU0_PRU_R31_2-GPIO3_16) (type BiDi))
(pin (num D13) (name xMcASP0_AXR1-eQEP0_INDEX-McASP1_AXR0-EMU3-PR1_PRU0_PRU_R30_6-PR1_PRU0_PRU_R31_6-GPIO3_20) (type BiDi))
(pin (num D14) (name xDMA_EVENT_INTR1-TCLKIN-CLKOUT2-TIMER7-PR1_PRU0_PRU_R31_16-EMU3-GPIO0_20) (type BiDi))
(pin (num D15) (name UART1_TXD-MMC2_SDWP-DCAN1_RX-I2C1_SCL-PR1_UART0_TXD-PR1_PRU0_PRU_R31_16-GPIO0_15) (type BiDi))
(pin (num D16) (name UART1_RXD-MMC1_SDWP-DCAN1_TX-I2C1_SDA-PR1_UART0_RXD-PR1_PRU1_PRU_R31_16-GPIO0_14) (type BiDi))
(pin (num D17) (name UART1_RTSn-TIMER5-DCAN0_RX-I2C2_SCL-SPI1_CS1-PR1_UART0_RTS_n-PR1_EDC_LATCH1_IN-GPIO0_13) (type BiDi))
(pin (num D18) (name UART1_CTSn-TIMER6-DCAN0_TX-I2C2_SDA-SPI1_CS0-PR1_UART0_CTS_n-PR1_EDC_LATCH0_IN-GPIO0_12) (type BiDi))
(pin (num E1) (name DDR_BA1) (type output))
(pin (num E2) (name DDR_A7) (type output))
(pin (num E3) (name DDR_A12) (type output))
(pin (num E4) (name DDR_A2) (type output))
(pin (num E5) (name VDDS_DDR) (type power_in))
(pin (num E6) (name VDDS) (type power_in))
(pin (num E7) (name VDDS_PLL_DDR) (type power_in))
(pin (num E8) (name VSSA_ADC) (type power_in))
(pin (num E9) (name VDDS_SRAM_CORE_BG) (type power_in))
(pin (num E10) (name VDDSHV6) (type power_in))
(pin (num E11) (name VDDSHV6) (type power_in))
(pin (num E12) (name VDDSHV6) (type power_in))
(pin (num E13) (name VDDSHV6) (type power_in))
(pin (num E14) (name VDDS) (type power_in))
(pin (num E15) (name UART0_RXD-SPI1_CS0-DCAN0_TX-I2C2_SDA-eCAP2_IN_PWM2_OUT-PR1_PRU1_PRU_R30_14-PR1_PRU1_PRU_R31_14-GPIO1_10) (type BiDi))
(pin (num E16) (name UART0_TXD-SPI1_CS1-DCAN0_RX-I2C2_SCL-eCAP1_IN_PWM1_OUT-PR1_PRU1_PRU_R30_15-PR1_PRU1_PRU_R31_15-GPIO1_11) (type BiDi))
(pin (num E17) (name UART0_RTSn-UART4_TXD-DCAN1_RX-I2C1_SCL-SPI1_D1-SPI1_CS0-PR1_EDC_SYNC1_OUT-GPIO1_9) (type BiDi))
(pin (num E18) (name UART0_CTSn-UART4_RXD-DCAN1_TX-I2C1_SDA-SPI1_D0-TIMER7-PR1_EDC_SYNC0_OUT-GPIO1_8) (type BiDi))
(pin (num F1) (name DDR_CASn) (type output))
(pin (num F2) (name DDR_A11) (type output))
(pin (num F3) (name DDR_A0) (type output))
(pin (num F4) (name DDR_A10) (type output))
(pin (num F5) (name VDDS_DDR) (type power_in))
(pin (num F6) (name VDD_CORE) (type power_in))
(pin (num F7) (name VDD_CORE) (type power_in))
(pin (num F8) (name VSS) (type power_in))
(pin (num F9) (name VDDS) (type power_in))
(pin (num F10) (name xVDD_MPU) (type power_in))
(pin (num F11) (name xVDD_MPU) (type power_in))
(pin (num F12) (name xVDD_MPU) (type power_in))
(pin (num F13) (name xVDD_MPU) (type power_in))
(pin (num F14) (name VDDSHV6) (type power_in))
(pin (num F15) (name xUSB1_DRVVBUS-GPIO3_13) (type BiDi))
(pin (num F16) (name USB0_DRVVBUS-GPIO0_18) (type BiDi))
(pin (num F17) (name MMC0_DAT3-GPMC_A20-UART4_CTSn-TIMER5-UART1_DCDn-PR1_PRU0_PRU_R30_8-PR1_PRU0_PRU_R31_8-GPIO2_26) (type BiDi))
(pin (num F18) (name MMC0_DAT2-GPMC_A21-UART4_RTSn-TIMER6-UART1_DSRn-PR1_PRU0_PRU_R30_9-PR1_PRU0_PRU_R31_9-GPIO2_27) (type BiDi))
(pin (num G1) (name DDR_ODT) (type output))
(pin (num G2) (name DDR_RESETn) (type output))
(pin (num G3) (name DDR_CKE) (type output))
(pin (num G4) (name DDR_RASn) (type output))
(pin (num G5) (name VDDS_DDR) (type power_in))
(pin (num G6) (name VDD_CORE) (type power_in))
(pin (num G7) (name VDD_CORE) (type power_in))
(pin (num G8) (name VSS) (type power_in))
(pin (num G9) (name VSS) (type power_in))
(pin (num G10) (name VDD_CORE) (type power_in))
(pin (num G11) (name VSS) (type power_in))
(pin (num G12) (name VSS) (type power_in))
(pin (num G13) (name xVDD_MPU) (type power_in))
(pin (num G14) (name VDDSHV6) (type power_in))
(pin (num G15) (name MMC0_DAT1-GPMC_A22-UART5_CTSn-UART3_RXD-UART1_DTRn-PR1_PRU0_PRU_R30_10-PR1_PRU0_PRU_R31_10-GPIO2_28) (type BiDi))
(pin (num G16) (name MMC0_DAT0-GPMC_A23-UART5_RTSn-UART3_TXD-UART1_RIN-PR1_PRU0_PRU_R30_11-PR1_PRU0_PRU_R31_11-GPIO2_29) (type BiDi))
(pin (num G17) (name MMC0_CLK-GPMC_A24-UART3_CTSn-UART2_RXD-DCAN1_TX-PR1_PRU0_PRU_R30_12-PR1_PRU0_PRU_R31_12-GPIO2_30) (type BiDi))
(pin (num G18) (name MMC0_CMD-GPMC_A25-UART3_RTSn-UART2_TXD-DCAN1_RX-PR1_PRU0_PRU_R30_13-PR1_PRU0_PRU_R31_13-GPIO2_31) (type BiDi))
(pin (num H1) (name DDR_A1) (type output))
(pin (num H2) (name DDR_CSn0) (type output))
(pin (num H3) (name DDR_A13) (type output))
(pin (num H4) (name DDR_A14) (type output))
(pin (num H5) (name VDDS_DDR) (type power_in))
(pin (num H6) (name VSS) (type power_in))
(pin (num H7) (name VSS) (type power_in))
(pin (num H8) (name VSS) (type power_in))
(pin (num H9) (name VSS) (type power_in))
(pin (num H10) (name VSS) (type power_in))
(pin (num H11) (name VDD_CORE) (type power_in))
(pin (num H12) (name VSS) (type power_in))
(pin (num H13) (name xVDD_MPU) (type power_in))
(pin (num H14) (name VDDSHV4) (type power_in))
(pin (num H15) (name VDDS_PLL_MPU) (type power_in))
(pin (num H16) (name GMII1_COL-RMII2_REFCLK-SPI1_SCLK-UART5_RXD-McASP1_AXR2-MMC2_DAT3-McASP0_AXR2-GPIO3_0) (type BiDi))
(pin (num H17) (name GMII1_CRS-RMII1_CRS_DV-SPI1_D0-I2C1_SDA-McASP1_ACLKX-UART5_CTSn-UART2_RXD-GPIO3_1) (type BiDi))
(pin (num H18) (name RMII1_REFCLK-XDMA_EVENT_INTR2-SPI1_CS0-UART5_TXD-McASP1_AXR3-MMC0_POW-McASP1_AHCLKX-GPIO0_29) (type output))
(pin (num J1) (name DDR_D8) (type BiDi))
(pin (num J2) (name DDR_DQM1) (type output))
(pin (num J3) (name DDR_VTP) (type input))
(pin (num J4) (name DDR_VREF) (type power_in))
(pin (num J5) (name VDDS_DDR) (type power_in))
(pin (num J6) (name VSS) (type power_in))
(pin (num J7) (name VSS) (type power_in))
(pin (num J8) (name VSS) (type power_in))
(pin (num J9) (name VSS) (type power_in))
(pin (num J10) (name VSS) (type power_in))
(pin (num J11) (name VSS) (type power_in))
(pin (num J12) (name VDD_CORE) (type power_in))
(pin (num J13) (name xVDD_MPU) (type power_in))
(pin (num J14) (name VDDSHV4) (type power_in))
(pin (num J15) (name GMII1_RXERR-RMII1_RXERR-SPI1_D1-I2C1_SCL-McASP1_FSX-UART5_RTSn-UART2_TXD-GPIO3_2) (type BiDi))
(pin (num J16) (name GMII1_TXEn-RMII1_TXEn-RGMII1_TCTL-TIMER4-McASP1_AXR0-eQEP0_INDEX-MMC2_CMD-GPIO3_3) (type BiDi))
(pin (num J17) (name GMII1_RXDV-LCD_MEMORY_CLK-RGMII1_RCTL-UART5_TXD-McASP1_ACLKX-MMC2_DAT0-McASP0_ACLKR-GPIO3_4) (type BiDi))
(pin (num J18) (name GMII1_TXD3-DCAN0_TX-RGMII1_TD3-UART4_RXD-McASP1_FSX-MMC2_DAT1-McASP0_FSR-GPIO0_16) (type BiDi))
(pin (num K1) (name DDR_D9) (type BiDi))
(pin (num K2) (name DDR_D10) (type BiDi))
(pin (num K3) (name DDR_D11) (type BiDi))
(pin (num K4) (name DDR_D12) (type BiDi))
(pin (num K5) (name VDDS_DDR) (type power_in))
(pin (num K6) (name VDD_CORE) (type power_in))
(pin (num K7) (name VSS) (type power_in))
(pin (num K8) (name VDD_CORE) (type power_in))
(pin (num K9) (name VSS) (type power_in))
(pin (num K10) (name VSS) (type power_in))
(pin (num K11) (name VSS) (type power_in))
(pin (num K12) (name VDD_CORE) (type power_in))
(pin (num K13) (name VDDS) (type power_in))
(pin (num K14) (name VDDSHV5) (type power_in))
(pin (num K15) (name GMII1_TXD2-DCAN0_RX-RGMII1_TD2-UART4_TXD-McASP1_AXR0-MMC2_DAT2-McASP0_AHCLKX-GPIO0_17) (type BiDi))
(pin (num K16) (name GMII1_TXD1-RMII1_TXD1-RGMII1_TD1-McASP1_FSR-McASP1_AXR1-eQEP0A_IN-MMC1_CMD-GPIO0_21) (type BiDi))
(pin (num K17) (name GMII1_TXD0-RMII1_TXD0-RGMII1_TD0-McASP1_AXR2-McASP1_ACLKR-eQEP0B_IN-MMC1_CLK-GPIO0_28) (type BiDi))
(pin (num K18) (name GMII1_TXCLK-UART2_RXD-RGMII1_TCLK-MMC0_DAT7-MMC1_DAT0-UART1_DCDn-McASP0_ACLKX-GPIO3_9) (type BiDi))
(pin (num L1) (name DDR_DQS1) (type BiDi))
(pin (num L2) (name DDR_DQS1n) (type BiDi))
(pin (num L3) (name DDR_D13) (type BiDi))
(pin (num L4) (name DDR_D14) (type BiDi))
(pin (num L5) (name VDDS_DDR) (type power_in))
(pin (num L6) (name VDD_CORE) (type power_in))
(pin (num L7) (name VDD_CORE) (type power_in))
(pin (num L8) (name VDD_CORE) (type power_in))
(pin (num L9) (name VDD_CORE) (type power_in))
(pin (num L10) (name VSS) (type power_in))
(pin (num L11) (name VSS) (type power_in))
(pin (num L12) (name VSS) (type power_in))
(pin (num L13) (name VSS) (type power_in))
(pin (num L14) (name VDDSHV5) (type power_in))
(pin (num L15) (name GMII1_RXD1-RMII1_RXD1-RGMII1_RD1-McASP1_AXR3-McASP1_FSR-eQEP0_STROBE-MMC2_CLK-GPIO2_20) (type BiDi))
(pin (num L16) (name GMII1_RXD2-UART3_TXD-RGMII1_RD2-MMC0_DAT4-MMC1_DAT3-UART1_RIN-McASP0_AXR1-GPIO2_19) (type BiDi))
(pin (num L17) (name GMII1_RXD3-UART3_RXD-RGMII1_RD3-MMC0_DAT5-MMC1_DAT2-UART1_DTRn-McASP0_AXR0-GPIO2_18) (type BiDi))
(pin (num L18) (name GMII1_RXCLK-UART2_TXD-RGMII1_RCLK-MMC0_DAT6-MMC1_DAT1-UART1_DSRn-McASP0_FSX-GPIO3_10) (type BiDi))
(pin (num M1) (name DDR_D15) (type BiDi))
(pin (num M2) (name DDR_DQM0) (type output))
(pin (num M3) (name DDR_D0) (type BiDi))
(pin (num M4) (name DDR_D1) (type BiDi))
(pin (num M5) (name VPP) (type power_in))
(pin (num M6) (name VSS) (type power_in))
(pin (num M7) (name VSS) (type power_in))
(pin (num M8) (name VSS) (type power_in))
(pin (num M9) (name VSS) (type power_in))
(pin (num M10) (name VSS) (type power_in))
(pin (num M11) (name VDD_CORE) (type power_in))
(pin (num M12) (name VSS) (type power_in))
(pin (num M13) (name VDD_CORE) (type power_in))
(pin (num M14) (name VSSA_USB) (type power_in))
(pin (num M15) (name USB0_CE) (type passive))
(pin (num M16) (name GMII1_RXD0-RMII1_RXD0-RGMII1_RD0-McASP1_AHCLKX-McASP1_AHCLKR-McASP1_ACLKR-McASP0_AXR3-GPIO2_21) (type BiDi))
(pin (num M17) (name MDIO_DATA-TIMER6-UART5_RXD-UART3_CTSn-MMC0_SDCD-MMC1_CMD-MMC2_CMD-GPIO0_0) (type BiDi))
(pin (num M18) (name MDIO_CLK-TIMER5-UART5_TXD-UART3_RTSn-MMC0_SDWP-MMC1_CLK-MMC2_CLK-GPIO0_1) (type BiDi))
(pin (num N1) (name DDR_D2) (type BiDi))
(pin (num N2) (name DDR_D3) (type BiDi))
(pin (num N3) (name DDR_D4) (type BiDi))
(pin (num N4) (name DDR_D5) (type BiDi))
(pin (num N5) (name VDDSHV6) (type power_in))
(pin (num N6) (name VDDS) (type power_in))
(pin (num N7) (name VSS) (type power_in))
(pin (num N8) (name VDD_CORE) (type power_in))
(pin (num N9) (name VDD_CORE) (type power_in))
(pin (num N10) (name VSS) (type power_in))
(pin (num N11) (name VSS) (type power_in))
(pin (num N12) (name VDD_CORE) (type power_in))
(pin (num N13) (name VDD_CORE) (type power_in))
(pin (num N14) (name VSSA_USB) (type power_in))
(pin (num N15) (name VDDA3P3V_USB0) (type power_in))
(pin (num N16) (name VDDA1P8V_USB0) (type power_in))
(pin (num N17) (name USB0_DP) (type passive))
(pin (num N18) (name USB0_DM) (type passive))
(pin (num P1) (name DDR_DQS0) (type BiDi))
(pin (num P2) (name DDR_DQS0n) (type BiDi))
(pin (num P3) (name DDR_D6) (type BiDi))
(pin (num P4) (name DDR_D7) (type BiDi))
(pin (num P5) (name VDDSHV6) (type power_in))
(pin (num P6) (name VDDSHV6) (type power_in))
(pin (num P7) (name VDDSHV1) (type power_in))
(pin (num P8) (name VDDSHV1) (type power_in))
(pin (num P9) (name VDDS) (type power_in))
(pin (num P10) (name VDDSHV2) (type power_in))
(pin (num P11) (name VDDSHV2) (type power_in))
(pin (num P12) (name VDDSHV3) (type power_in))
(pin (num P13) (name VDDSHV3) (type power_in))
(pin (num P14) (name VDDS) (type power_in))
(pin (num P15) (name USB0_VBUS) (type passive))
(pin (num P16) (name USB0_ID) (type passive))
(pin (num P17) (name xUSB1_ID) (type passive))
(pin (num P18) (name xUSB1_CE) (type passive))
(pin (num R1) (name LCD_DATA0-GPMC_A0-PR1_MII_MT0_CLK-eHRPWM2A-PR1_PRU1_PRU_R30_0-PR1_PRU1_PRU_R31_0-GPIO2_6) (type BiDi))
(pin (num R2) (name LCD_DATA1-GPMC_A1-PR1_MII0_TXEn-eHRPWM2B-PR1_PRU1_PRU_R30_1-PR1_PRU1_PRU_R31_1-GPIO2_7) (type BiDi))
(pin (num R3) (name LCD_DATA2-GPMC_A2-PR1_MII0_TXD3-eHRPWM2_TRIPZONE_INPUT-PR1_PRU1_PRU_R30_2-PR1_PRU1_PRU_R31_2-GPIO2_8) (type BiDi))
(pin (num R4) (name LCD_DATA3-GPMC_A3-PR1_MII0_TXD2-eHRPWM0_SYNCO-PR1_PRU1_PRU_R30_3-PR1_PRU1_PRU_R31_3-GPIO2_9) (type BiDi))
(pin (num R5) (name LCD_HSYNC-GPMC_A9-PR1_EDIO_DATA_IN3-PR1_EDIO_DATA_OUT3-PR1_PRU1_PRU_R30_9-PR1_PRU1_PRU_R31_9-GPIO2_23) (type BiDi))
(pin (num R6) (name LCD_AC_BIAS_EN-GPMC_A11-PR1_MII1_CRS-PR1_EDIO_DATA_IN5-PR1_EDIO_DATA_OUT5-PR1_PRU1_PRU_R30_11-PR1_PRU1_PRU_R31_11-GPIO2_25) (type BiDi))
(pin (num R7) (name GPMC_ADVn_ALE-TIMER4-GPIO2_2) (type BiDi))
(pin (num R8) (name GPMC_AD2-MMC1_DAT2-GPIO1_2) (type BiDi))
(pin (num R9) (name GPMC_AD6-MMC1_DAT6-GPIO1_6) (type BiDi))
(pin (num R10) (name VDDS_PLL_CORE_LCD) (type power_in))
(pin (num R11) (name VDDS_OSC) (type power_in))
(pin (num R12) (name GPMC_AD13-LCD_DATA18-MMC1_DAT5-MMC2_DAT1-eQEP2B_IN-PR1_MII0_TXD1-PR1_PRU0_PRU_R30_15-GPIO1_13) (type BiDi))
(pin (num R13) (name xGPMC_A0-GMII2_TXEn-RGMII2_TCTL-RMII2_TXEn-GPMC_A16-PR1_MII_MT1_CLK-eHRPWM1_TRIPZONE_INPUT-GPIO1_16) (type BiDi))
(pin (num R14) (name xGPMC_A4-GMII2_TXD1-RGMII2_TD1-RMII2_TXD1-GPMC_A20-PR1_MII1_TXD0-eQEP1A_IN-GPIO1_20) (type BiDi))
(pin (num R15) (name xVDDA3P3V_USB1) (type power_in))
(pin (num R16) (name xVDDA1P8V_USB1) (type power_in))
(pin (num R17) (name xUSB1_DP) (type passive))
(pin (num R18) (name xUSB1_DM) (type passive))
(pin (num T1) (name LCD_DATA4-GPMC_A4-PR1_MII0_TXD1-eQEP2A_IN-PR1_PRU1_PRU_R30_4-PR1_PRU1_PRU_R31_4-GPIO2_10) (type BiDi))
(pin (num T2) (name LCD_DATA5-GPMC_A5-PR1_MII0_TXD0-eQEP2B_IN-PR1_PRU1_PRU_R30_5-PR1_PRU1_PRU_R31_5-GPIO2_11) (type BiDi))
(pin (num T3) (name LCD_DATA6-GPMC_A6-PR1_EDIO_DATA_IN6-eQEP2_INDEX-PR1_EDIO_DATA_OUT6-PR1_PRU1_PRU_R30_6-PR1_PRU1_PRU_R31_6-GPIO2_12) (type BiDi))
(pin (num T4) (name LCD_DATA7-GPMC_A7-PR1_EDIO_DATA_IN7-eQEP2_STROBE-PR1_EDIO_DATA_OUT7-PR1_PRU1_PRU_R30_7-PR1_PRU1_PRU_R31_7-GPIO2_13) (type BiDi))
(pin (num T5) (name LCD_DATA15-GPMC_A19-eQEP1_STROBE-McASP0_AHCLKX-McASP0_AXR3-PR1_MII0_RXDV-UART5_RTSn-GPIO0_11) (type BiDi))
(pin (num T6) (name GPMC_BE0n_CLE-TIMER5-GPIO2_5) (type BiDi))
(pin (num T7) (name GPMC_OEn_REn-TIMER7-GPIO2_3) (type BiDi))
(pin (num T8) (name GPMC_AD3-MMC1_DAT3-GPIO1_3) (type BiDi))
(pin (num T9) (name GPMC_AD7-MMC1_DAT7-GPIO1_7) (type BiDi))
(pin (num T10) (name GPMC_AD9-LCD_DATA22-MMC1_DAT1-MMC2_DAT5-eHRPWM2B-PR1_MII0_COL-GPIO0_23) (type BiDi))
(pin (num T11) (name GPMC_AD10-LCD_DATA21-MMC1_DAT2-MMC2_DAT6-eHRPWM2_TRIPZONE_INPUT-PR1_MII0_TXEn-GPIO0_26) (type BiDi))
(pin (num T12) (name GPMC_AD12-LCD_DATA19-MMC1_DAT4-MMC2_DAT0-eQEP2A_IN-PR1_MII0_TXD2-PR1_PRU0_PRU_R30_14-GPIO1_12) (type BiDi))
(pin (num T13) (name GPMC_CSn3-MMC2_CMD-PR1_MII0_CRS-PR1_MDIO_DATA-EMU4-GPIO2_0) (type BiDi))
(pin (num T14) (name xGPMC_A3-GMII2_TXD2-RGMII2_TD2-MMC2_DAT2-GPMC_A19-PR1_MII1_TXD1-eHRPWM1B-GPIO1_19) (type BiDi))
(pin (num T15) (name xGPMC_A7-GMII2_RXCLK-RGMII2_RCLK-MMC2_DAT5-GPMC_A23-PR1_MII1_RXD1-eQEP1_STROBE-GPIO1_23) (type BiDi))
(pin (num T16) (name xGPMC_A10-GMII2_RXD1-RGMII2_RD1-RMII2_RXD1-GPMC_A26-PR1_MII1_RXDV-McASP0_AXR0-GPIO1_26) (type BiDi))
(pin (num T17) (name GPMC_WAIT0-GMII2_CRS-GPMC_CSN4-RMII2_CRS_DV-MMC1_SDCD-PR1_MII1_COL-UART4_RXD-GPIO0_30) (type BiDi))
(pin (num T18) (name xUSB1_VBUS) (type passive))
(pin (num U1) (name LCD_DATA8-GPMC_A12-eHRPWM1_TRIPZONE_INPUT-McASP0_ACLKX-UART5_TXD-PR1_MII0_RXD3-UART2_CTSn-GPIO2_14) (type BiDi))
(pin (num U2) (name LCD_DATA9-GPMC_A13-eHRPWM0_SYNCO-McASP0_FSX-UART5_RXD-PR1_MII0_RXD2-UART2_RTSn-GPIO2_15) (type BiDi))
(pin (num U3) (name LCD_DATA10-GPMC_A14-eHRPWM1A-McASP0_AXR0-PR1_MII0_RXD1-UART3_CTSn-GPIO2_16) (type BiDi))
(pin (num U4) (name LCD_DATA11-GPMC_A15-eHRPWM1B-McASP0_AHCLKR-McASP0_AXR2-PR1_MII0_RXD0-UART3_RTSn-GPIO2_17) (type BiDi))
(pin (num U5) (name LCD_VSYNC-GPMC_A8-PR1_EDIO_DATA_IN2-PR1_EDIO_DATA_OUT2-PR1_PRU1_PRU_R30_8-PR1_PRU1_PRU_R31_8-GPIO2_22) (type BiDi))
(pin (num U6) (name GPMC_WEn-TIMER6-GPIO2_4) (type BiDi))
(pin (num U7) (name GPMC_AD0-MMC1_DAT0-GPIO1_0) (type BiDi))
(pin (num U8) (name GPMC_AD4-MMC1_DAT4-GPIO1_4) (type BiDi))
(pin (num U9) (name GPMC_CSn1-GPMC_CLK-MMC1_CLK-PR1_EDIO_DATA_IN6-PR1_EDIO_DATA_OUT6-PR1_PRU1_PRU_R30_12-PR1_PRU1_PRU_R31_12-GPIO1_30) (type BiDi))
(pin (num U10) (name GPMC_AD8-LCD_DATA23-MMC1_DAT0-MMC2_DAT4-eHRPWM2A-PR1_MII_MT0_CLK-GPIO0_22) (type BiDi))
(pin (num U11) (name XTALOUT) (type output))
(pin (num U12) (name GPMC_AD11-LCD_DATA20-MMC1_DAT3-MMC2_DAT7-eHRPWM0_SYNCO-PR1_MII0_TXD3-GPIO0_27) (type BiDi))
(pin (num U13) (name GPMC_AD15-LCD_DATA16-MMC1_DAT7-MMC2_DAT3-eQEP2_STROBE-PR1_eCAP0_eCAP_CAPIN_APWM_O-PR1_PRU0_PRU_R31_15-GPIO1_15) (type BiDi))
(pin (num U14) (name xGPMC_A2-GMII2_TXD3-RGMII2_TD3-MMC2_DAT1-GPMC_A18-PR1_MII1_TXD2-eHRPWM1A-GPIO1_18) (type BiDi))
(pin (num U15) (name xGPMC_A6-GMII2_TXCLK-RGMII2_TCLK-MMC2_DAT4-GPMC_A22-PR1_MII1_RXD2-eQEP1_INDEX-GPIO1_22) (type BiDi))
(pin (num U16) (name xGPMC_A9-GMII2_RXD2-RGMII2_RD2-MMC2_DAT7-GPMC_A25-PR1_MII_MR1_CLK-McASP0_FSX-GPIO1_25) (type BiDi))
(pin (num U17) (name GPMC_WPn-GMII2_RXERR-GPMC_CSN5-RMII2_RXERR-MMC2_SDCD-PR1_MII1_TXEn-UART4_TXD-GPIO0_31) (type BiDi))
(pin (num U18) (name GPMC_BE1n-GMII2_COL-GPMC_CSN6-MMC2_DAT3-GPMC_DIR-PR1_MII1_RXLINK-McASP0_ACLKR-GPIO1_28) (type BiDi))
(pin (num V1) (name VSS) (type power_in))
(pin (num V2) (name LCD_DATA12-GPMC_A16-eQEP1A_IN-McASP0_ACLKR-McASP0_AXR2-PR1_MII0_RXLINK-UART4_CTSn-GPIO0_8) (type BiDi))
(pin (num V3) (name LCD_DATA13-GPMC_A17-eQEP1B_IN-McASP0_FSR-McASP0_AXR3-PR1_MII0_RXER-UART4_RTSn-GPIO0_9) (type BiDi))
(pin (num V4) (name LCD_DATA14-GPMC_A18-eQEP1_INDEX-McASP0_AXR1-UART5_RXD-PR1_MII_MR0_CLK-UART5_CTSn-GPIO0_10) (type BiDi))
(pin (num V5) (name LCD_PCLK-GPMC_A10-PR1_MII0_CRS-PR1_EDIO_DATA_IN4-PR1_EDIO_DATA_OUT4-PR1_PRU1_PRU_R30_10-PR1_PRU1_PRU_R31_10-GPIO2_24) (type BiDi))
(pin (num V6) (name GPMC_CSn0-GPIO1_29) (type BiDi))
(pin (num V7) (name GPMC_AD1-MMC1_DAT1-GPIO1_1) (type BiDi))
(pin (num V8) (name GPMC_AD5-MMC1_DAT5-GPIO1_5) (type BiDi))
(pin (num V9) (name GPMC_CSn2-GPMC_BE1n-MMC1_CMD-PR1_EDIO_DATA_IN7-PR1_EDIO_DATA_OUT7-PR1_PRU1_PRU_R30_13-PR1_PRU1_PRU_R31_13-GPIO1_31) (type BiDi))
(pin (num V10) (name XTALIN) (type input))
(pin (num V11) (name VSS_OSC) (type power_in))
(pin (num V12) (name GPMC_CLK-LCD_MEMORY_CLK-GPMC_WAIT1-MMC2_CLK-PR1_MII1_CRS-PR1_MDIO_MDCLK-McASP0_FSR-GPIO2_1) (type BiDi))
(pin (num V13) (name GPMC_AD14-LCD_DATA17-MMC1_DAT6-MMC2_DAT2-eQEP2_INDEX-PR1_MII0_TXD0-PR1_PRU0_PRU_R31_14-GPIO1_14) (type BiDi))
(pin (num V14) (name xGPMC_A1-GMII2_RXDV-RGMII2_RCTL-MMC2_DAT0-GPMC_A17-PR1_MII1_TXD3-eHRPWM0_SYNCO-GPIO1_17) (type BiDi))
(pin (num V15) (name xGPMC_A5-GMII2_TXD0-RGMII2_TD0-RMII2_TXD0-GPMC_A21-PR1_MII1_RXD3-eQEP1B_IN-GPIO1_21) (type BiDi))
(pin (num V16) (name xGPMC_A8-GMII2_RXD3-RGMII2_RD3-MMC2_DAT6-GPMC_A24-PR1_MII1_RXD0-McASP0_ACLKX-GPIO1_24) (type BiDi))
(pin (num V17) (name xGPMC_A11-GMII2_RXD0-RGMII2_RD0-RMII2_RXD0-GPMC_A27-PR1_MII1_RXER-McASP0_AXR1-GPIO1_27) (type BiDi))
(pin (num V18) (name VSS) (type power_in))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part Crystal)
(description "Two pin crystal")
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib sbc) (part DRAM-IS43TR16128B-125KBL)
(footprints
(fp BGA_96))
(fields
(field (name Reference) DRAM)
(field (name Value) DRAM-IS43TR16128B-125KBL))
(pins
(pin (num A1) (name VDDQ) (type input))
(pin (num A2) (name DQU5) (type input))
(pin (num A3) (name DQU7) (type input))
(pin (num A7) (name DQU4) (type input))
(pin (num A8) (name VDDQ) (type input))
(pin (num A9) (name VSS) (type input))
(pin (num B1) (name VSSQ) (type input))
(pin (num B2) (name VDD) (type input))
(pin (num B3) (name VSS) (type input))
(pin (num B7) (name DQSU#) (type input))
(pin (num B8) (name DQU6) (type input))
(pin (num B9) (name VSSQ) (type input))
(pin (num C1) (name VDDQ) (type input))
(pin (num C2) (name DQU3) (type input))
(pin (num C3) (name DQU1) (type input))
(pin (num C7) (name DQSU) (type input))
(pin (num C8) (name DQU2) (type input))
(pin (num C9) (name VDDQ) (type input))
(pin (num D1) (name VSSQ) (type input))
(pin (num D2) (name VDDQ) (type input))
(pin (num D3) (name DMU) (type input))
(pin (num D7) (name DQU0) (type input))
(pin (num D8) (name VSSQ) (type input))
(pin (num D9) (name VDD) (type input))
(pin (num E1) (name VSS) (type input))
(pin (num E2) (name VSSQ) (type input))
(pin (num E3) (name DQL0) (type input))
(pin (num E7) (name DML) (type input))
(pin (num E8) (name VSSQ) (type input))
(pin (num E9) (name VDDQ) (type input))
(pin (num F1) (name VDDQ) (type input))
(pin (num F2) (name DQL2) (type input))
(pin (num F3) (name DQSL) (type input))
(pin (num F7) (name DQL1) (type input))
(pin (num F8) (name DQL3) (type input))
(pin (num F9) (name VSSQ) (type input))
(pin (num G1) (name VSSQ) (type input))
(pin (num G2) (name DQL6) (type input))
(pin (num G3) (name DQSL#) (type input))
(pin (num G7) (name VDD) (type input))
(pin (num G8) (name VSS) (type input))
(pin (num G9) (name VSSQ) (type input))
(pin (num H1) (name VREFDQ) (type input))
(pin (num H2) (name VDDQ) (type input))
(pin (num H3) (name DQL4) (type input))
(pin (num H7) (name DQL7) (type input))
(pin (num H8) (name DQL5) (type input))
(pin (num H9) (name VDDQ) (type input))
(pin (num J1) (name NC) (type input))
(pin (num J2) (name VSS) (type input))
(pin (num J3) (name RAS#) (type input))
(pin (num J7) (name CK) (type input))
(pin (num J8) (name VSS) (type input))
(pin (num J9) (name NC) (type input))
(pin (num K1) (name ODT) (type input))
(pin (num K2) (name VDD) (type input))
(pin (num K3) (name CAS#) (type input))
(pin (num K7) (name CK#) (type input))
(pin (num K8) (name VDD) (type input))
(pin (num K9) (name CKE) (type input))
(pin (num L1) (name NC) (type input))
(pin (num L2) (name CS#) (type input))
(pin (num L3) (name WE#) (type input))
(pin (num L7) (name A10/AP) (type input))
(pin (num L8) (name ZQ) (type input))
(pin (num L9) (name NC) (type input))
(pin (num M1) (name VSS) (type input))
(pin (num M2) (name BA0) (type input))
(pin (num M3) (name BA2) (type input))
(pin (num M7) (name "NC(A15)") (type input))
(pin (num M8) (name VREFCA) (type input))
(pin (num M9) (name VSS) (type input))
(pin (num N1) (name VDD) (type input))
(pin (num N2) (name A3) (type input))
(pin (num N3) (name A0) (type input))