-
Notifications
You must be signed in to change notification settings - Fork 0
/
adc.net
873 lines (873 loc) · 30.2 KB
/
adc.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
(export (version D)
(design
(source /home/luca/Desktop/PCB/adc/adc/adc.sch)
(date "Fri 08 Oct 2021 02:22:45 PM CST")
(tool "Eeschema 5.1.10")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source adc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref R1)
(value 683k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 615D18A4))
(comp (ref R2)
(value 462k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 615D1D8C))
(comp (ref C13)
(value 30p)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 615D2FF1))
(comp (ref J1)
(value Conn_Coaxial)
(footprint Connector_Coaxial:BNC_Amphenol_B6252HB-NPP3G-50_Horizontal)
(datasheet " ~")
(libsource (lib Connector) (part Conn_Coaxial) (description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)"))
(sheetpath (names /) (tstamps /))
(tstamp 615D4136))
(comp (ref U1)
(value OPA2356xxD)
(footprint Package_SO:SOIC-8_7.5x5.85mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/opa2356.pdf)
(libsource (lib Amplifier_Operational) (part OPA2356xxD) (description "Dual High Speed CMOS Operational Amplifiers, SOIC-8"))
(sheetpath (names /) (tstamps /))
(tstamp 615D69F8))
(comp (ref C14)
(value 30p)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 615E1033))
(comp (ref R5)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 615FBA46))
(comp (ref R6)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 615FC453))
(comp (ref R7)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 615FE9A9))
(comp (ref R8)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 615FF29A))
(comp (ref U2)
(value MS9280)
(footprint Package_SO:SSOP-28_5.3x10.2mm_P0.65mm)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/AD9280.pdf)
(libsource (lib ms9280) (part MS9280) (description "Video ADC (32 Mhz), SSOP-28"))
(sheetpath (names /) (tstamps /))
(tstamp 61654C42))
(comp (ref C11)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61695A91))
(comp (ref C7)
(value 1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6169632B))
(comp (ref C9)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6169D4DC))
(comp (ref C5)
(value 10u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6169DBD0))
(comp (ref C1)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 616A55A3))
(comp (ref C2)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 616A5B49))
(comp (ref C15)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 616B2DCC))
(comp (ref C17)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 616B3693))
(comp (ref U3)
(value MS9280)
(footprint Package_SO:SSOP-28_5.3x10.2mm_P0.65mm)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/AD9280.pdf)
(libsource (lib ms9280) (part MS9280) (description "Video ADC (32 Mhz), SSOP-28"))
(sheetpath (names /) (tstamps /))
(tstamp 61703D19))
(comp (ref C12)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61703D25))
(comp (ref C8)
(value 1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61703D2B))
(comp (ref C10)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61703D47))
(comp (ref C6)
(value 10u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61703D4D))
(comp (ref C3)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61703D5D))
(comp (ref C4)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61703D63))
(comp (ref C16)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61703D89))
(comp (ref C18)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61703D91))
(comp (ref J2)
(value Conn_02x20_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x20_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x20_Odd_Even) (description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 617BF405))
(comp (ref R9)
(value 0)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 619FF3C1))
(comp (ref C40)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 619FFA76))
(comp (ref U13)
(value TP7660H)
(footprint Package_SO:SOIC-8_7.5x5.85mm_P1.27mm)
(libsource (lib ms9280) (part TP7660H) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61A3A271))
(comp (ref C42)
(value 10u)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61A6A530))
(comp (ref C48)
(value 10u)
(footprint Capacitor_SMD:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61A6B6A1))
(comp (ref U14)
(value MC1403)
(footprint Package_SO:SOP-8_5.28x5.23mm_P1.27mm)
(libsource (lib ms9280) (part MC1403) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61A791A2))
(comp (ref R10)
(value 0)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61ABF681))
(comp (ref C41)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61ABF687))
(comp (ref C49)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61ACC96A))
(comp (ref R3)
(value 1.47k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61B19AB8))
(comp (ref R4)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61B1A50E))
(comp (ref U12)
(value ME6206A25)
(footprint Package_TO_SOT_SMD:SOT-23)
(libsource (lib ms9280) (part ME6206A25) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61B96365))
(comp (ref C43)
(value 1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61BAF3B8))
(comp (ref C47)
(value 1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61BAFD15))
(comp (ref C19)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 616147BC))
(comp (ref C23)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 616131A5))
(comp (ref C20)
(value 1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 61717F59))
(comp (ref C21)
(value 1u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 617272E2)))
(libparts
(libpart (lib Amplifier_Operational) (part LM2904)
(aliases
(alias LM358)
(alias AD8620)
(alias LMC6062)
(alias LMC6082)
(alias TL062)
(alias TL072)
(alias TL082)
(alias NE5532)
(alias SA5532)
(alias RC4558)
(alias RC4560)
(alias RC4580)
(alias LMV358)
(alias TS912)
(alias TSV912IDT)
(alias TSV912IST)
(alias TLC272)
(alias TLC277)
(alias MCP602)
(alias OPA1678)
(alias OPA2134)
(alias OPA2340)
(alias OPA2376xxD)
(alias OPA2376xxDGK)
(alias MC33078)
(alias MC33178)
(alias LM4562)
(alias OP249)
(alias OP275)
(alias ADA4075-2)
(alias MCP6002-xP)
(alias MCP6002-xSN)
(alias MCP6002-xMS)
(alias LM7332)
(alias OPA2333xxD)
(alias OPA2333xxDGK)
(alias LMC6482)
(alias LT1492)
(alias LTC6081xMS8)
(alias LM6172)
(alias MCP6L92)
(alias NJM2043)
(alias NJM2114)
(alias NJM4556A)
(alias NJM4558)
(alias NJM4559)
(alias NJM4560)
(alias NJM4580)
(alias NJM5532)
(alias ADA4807-2ARM)
(alias OPA2691)
(alias LT6234)
(alias OPA2356xxD)
(alias OPA2356xxDGK)
(alias OPA1612AxD)
(alias MC33172)
(alias OPA1602)
(alias TLV2372)
(alias LT6237)
(alias OPA2277)
(alias MCP6022)
(alias MCP6V67EMS))
(description "Dual Operational Amplifiers, DIP-8/SOIC-8/TSSOP-8/VSSOP-8")
(docs http://www.ti.com/lit/ds/symlink/lm358.pdf)
(footprints
(fp SOIC*3.9x4.9mm*P1.27mm*)
(fp DIP*W7.62mm*)
(fp TO*99*)
(fp OnSemi*Micro8*)
(fp TSSOP*3x3mm*P0.65mm*)
(fp TSSOP*4.4x3mm*P0.65mm*)
(fp MSOP*3x3mm*P0.65mm*)
(fp SSOP*3.9x4.9mm*P0.635mm*)
(fp LFCSP*2x2mm*P0.5mm*)
(fp *SIP*)
(fp SOIC*5.3x6.2mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) LM2904))
(pins
(pin (num 1) (name ~) (type output))
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V-) (type power_in))
(pin (num 5) (name +) (type input))
(pin (num 6) (name -) (type input))
(pin (num 7) (name ~) (type output))
(pin (num 8) (name V+) (type power_in))))
(libpart (lib Connector) (part Conn_Coaxial)
(description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)")
(docs " ~")
(footprints
(fp *BNC*)
(fp *SMA*)
(fp *SMB*)
(fp *SMC*)
(fp *Cinch*))
(fields
(field (name Reference) J)
(field (name Value) Conn_Coaxial))
(pins
(pin (num 1) (name In) (type passive))
(pin (num 2) (name Ext) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x20_Odd_Even)
(description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x20_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))
(pin (num 27) (name Pin_27) (type passive))
(pin (num 28) (name Pin_28) (type passive))
(pin (num 29) (name Pin_29) (type passive))
(pin (num 30) (name Pin_30) (type passive))
(pin (num 31) (name Pin_31) (type passive))
(pin (num 32) (name Pin_32) (type passive))
(pin (num 33) (name Pin_33) (type passive))
(pin (num 34) (name Pin_34) (type passive))
(pin (num 35) (name Pin_35) (type passive))
(pin (num 36) (name Pin_36) (type passive))
(pin (num 37) (name Pin_37) (type passive))
(pin (num 38) (name Pin_38) (type passive))
(pin (num 39) (name Pin_39) (type passive))
(pin (num 40) (name Pin_40) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part CP)
(description "Polarized capacitor")
(docs ~)
(footprints
(fp CP_*))
(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 R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib ms9280) (part MC1403)
(fields
(field (name Reference) U)
(field (name Value) MC1403))
(pins
(pin (num 1) (name VIN) (type passive))
(pin (num 2) (name VOUT) (type passive))
(pin (num 3) (name GND) (type passive))
(pin (num 4) (name NC) (type passive))
(pin (num 6) (name NC) (type passive))
(pin (num 7) (name NC) (type passive))
(pin (num 8) (name NC) (type passive))))
(libpart (lib ms9280) (part ME6206A25)
(fields
(field (name Reference) U)
(field (name Value) ME6206A25))
(pins
(pin (num 1) (name VSS) (type passive))
(pin (num 2) (name VOUT) (type passive))
(pin (num 3) (name VIN) (type passive))))
(libpart (lib ms9280) (part MS9280)
(description "Video ADC (32 Mhz), SSOP-28")
(docs https://www.analog.com/media/en/technical-documentation/data-sheets/AD9280.pdf)
(fields
(field (name Reference) U)
(field (name Value) MS9280))
(pins
(pin (num 1) (name AVSS) (type power_in))
(pin (num 2) (name DRVDD) (type power_in))
(pin (num 3) (name D0) (type output))
(pin (num 4) (name D1) (type output))
(pin (num 5) (name D2) (type output))
(pin (num 6) (name D3) (type output))
(pin (num 7) (name D4) (type output))
(pin (num 8) (name D5) (type output))
(pin (num 9) (name D6) (type output))
(pin (num 10) (name D7) (type output))
(pin (num 11) (name D8) (type output))
(pin (num 12) (name D9) (type output))
(pin (num 13) (name OTR) (type output))
(pin (num 14) (name DRVSS) (type power_in))
(pin (num 15) (name CLK) (type input))
(pin (num 16) (name THREE-STATE) (type input))
(pin (num 17) (name STBY) (type passive))
(pin (num 18) (name REFSENSE) (type input))
(pin (num 19) (name CLAMP) (type passive))
(pin (num 20) (name CLAMPIN) (type input))
(pin (num 21) (name REFTS) (type input))
(pin (num 22) (name REFTF) (type input))
(pin (num 23) (name MODE) (type input))
(pin (num 24) (name REFBF) (type input))
(pin (num 25) (name REFBS) (type input))
(pin (num 26) (name VREF) (type output))
(pin (num 27) (name AIN) (type input))
(pin (num 28) (name AVDD) (type power_in))))
(libpart (lib ms9280) (part TP7660H)
(fields
(field (name Reference) U)
(field (name Value) TP7660H))
(pins
(pin (num 1) (name NC) (type passive))
(pin (num 2) (name CAP+) (type passive))
(pin (num 3) (name GND) (type passive))
(pin (num 4) (name CAP-) (type passive))
(pin (num 5) (name VOUT) (type passive))
(pin (num 6) (name NC) (type passive))
(pin (num 7) (name OSC) (type passive))
(pin (num 8) (name VDD) (type passive)))))
(libraries
(library (logical Amplifier_Operational)
(uri /usr/share/kicad/library/Amplifier_Operational.lib))
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Connector_Generic)
(uri /usr/share/kicad/library/Connector_Generic.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical ms9280)
(uri /home/luca/Desktop/PCB/adc/adc/ms9280.lib)))
(nets
(net (code 1) (name GND)
(node (ref U12) (pin 1))
(node (ref U2) (pin 16))
(node (ref C7) (pin 2))
(node (ref C11) (pin 2))
(node (ref U2) (pin 17))
(node (ref R4) (pin 1))
(node (ref C47) (pin 2))
(node (ref U2) (pin 14))
(node (ref C43) (pin 2))
(node (ref C2) (pin 2))
(node (ref C1) (pin 2))
(node (ref U2) (pin 25))
(node (ref U2) (pin 20))
(node (ref U2) (pin 19))
(node (ref U2) (pin 18))
(node (ref C21) (pin 2))
(node (ref C20) (pin 2))
(node (ref C41) (pin 2))
(node (ref U14) (pin 3))
(node (ref C14) (pin 2))
(node (ref C49) (pin 2))
(node (ref C23) (pin 2))
(node (ref C19) (pin 2))
(node (ref U3) (pin 1))
(node (ref C18) (pin 1))
(node (ref C16) (pin 2))
(node (ref C12) (pin 2))
(node (ref U3) (pin 25))
(node (ref U3) (pin 20))
(node (ref U3) (pin 18))
(node (ref U3) (pin 17))
(node (ref U3) (pin 16))
(node (ref U3) (pin 14))
(node (ref U3) (pin 19))
(node (ref C8) (pin 2))
(node (ref C17) (pin 1))
(node (ref C15) (pin 2))
(node (ref C4) (pin 2))
(node (ref C3) (pin 2))
(node (ref R7) (pin 1))
(node (ref U2) (pin 1))
(node (ref J1) (pin 2))
(node (ref R2) (pin 2))
(node (ref J2) (pin 14))
(node (ref J2) (pin 30))
(node (ref U13) (pin 6))
(node (ref J2) (pin 25))
(node (ref J2) (pin 20))
(node (ref J2) (pin 9))
(node (ref U13) (pin 1))
(node (ref J2) (pin 34))
(node (ref J2) (pin 39))
(node (ref J2) (pin 6))
(node (ref C40) (pin 2))
(node (ref U13) (pin 3))
(node (ref C48) (pin 1)))
(net (code 2) (name "Net-(J2-Pad33)")
(node (ref J2) (pin 33)))
(net (code 3) (name "Net-(J2-Pad35)")
(node (ref J2) (pin 35)))
(net (code 4) (name "Net-(J2-Pad37)")
(node (ref J2) (pin 37)))
(net (code 5) (name "Net-(J2-Pad40)")
(node (ref J2) (pin 40)))
(net (code 6) (name /D5.0)
(node (ref J2) (pin 2))
(node (ref J2) (pin 4))
(node (ref R10) (pin 2)))
(net (code 7) (name /D3.3)
(node (ref U3) (pin 2))
(node (ref J2) (pin 1))
(node (ref C18) (pin 2))
(node (ref U2) (pin 2))
(node (ref C17) (pin 2))
(node (ref R9) (pin 2))
(node (ref J2) (pin 17)))
(net (code 8) (name "Net-(C42-Pad1)")
(node (ref C42) (pin 1))
(node (ref U13) (pin 2)))
(net (code 9) (name /A2.5)
(node (ref U12) (pin 2))
(node (ref C43) (pin 1))
(node (ref U1) (pin 8))
(node (ref C23) (pin 1))
(node (ref U13) (pin 8))
(node (ref C21) (pin 1)))
(net (code 10) (name "Net-(C42-Pad2)")
(node (ref U13) (pin 4))
(node (ref C42) (pin 2)))
(net (code 11) (name "Net-(U13-Pad7)")
(node (ref U13) (pin 7)))
(net (code 12) (name /A3.3)
(node (ref C15) (pin 1))
(node (ref U2) (pin 23))
(node (ref U2) (pin 28))
(node (ref U3) (pin 28))
(node (ref C16) (pin 1))
(node (ref C40) (pin 1))
(node (ref U12) (pin 3))
(node (ref R9) (pin 1))
(node (ref U3) (pin 23))
(node (ref C47) (pin 1)))
(net (code 13) (name /ADC_IN)
(node (ref U3) (pin 27))
(node (ref U1) (pin 7))
(node (ref U2) (pin 27))
(node (ref R8) (pin 2)))
(net (code 14) (name "Net-(J2-Pad38)")
(node (ref J2) (pin 38)))
(net (code 15) (name /A-2.5)
(node (ref C19) (pin 1))
(node (ref C20) (pin 1))
(node (ref U13) (pin 5))
(node (ref U1) (pin 4))
(node (ref C48) (pin 2)))
(net (code 16) (name "Net-(J2-Pad31)")
(node (ref J2) (pin 31)))
(net (code 17) (name /A5.0)
(node (ref C49) (pin 1))
(node (ref U14) (pin 1))
(node (ref R10) (pin 1))
(node (ref C41) (pin 1)))
(net (code 18) (name /Vref)
(node (ref R3) (pin 2))
(node (ref U14) (pin 2)))
(net (code 19) (name "Net-(U14-Pad7)")
(node (ref U14) (pin 7)))
(net (code 20) (name "Net-(U14-Pad4)")
(node (ref U14) (pin 4)))
(net (code 21) (name "Net-(U14-Pad6)")
(node (ref U14) (pin 6)))
(net (code 22) (name "Net-(U14-Pad8)")
(node (ref U14) (pin 8)))
(net (code 23) (name "Net-(U14-Pad8)")
(node (ref U14) (pin 8)))
(net (code 24) (name "Net-(U3-Pad13)")
(node (ref U3) (pin 13)))
(net (code 25) (name /D2A)
(node (ref J2) (pin 7))
(node (ref U2) (pin 5)))
(net (code 26) (name /D3A)
(node (ref J2) (pin 11))
(node (ref U2) (pin 6)))
(net (code 27) (name /D4A)
(node (ref J2) (pin 13))
(node (ref U2) (pin 7)))
(net (code 28) (name /D5A)
(node (ref J2) (pin 15))
(node (ref U2) (pin 8)))
(net (code 29) (name /D6A)
(node (ref J2) (pin 19))
(node (ref U2) (pin 9)))
(net (code 30) (name /D1A)
(node (ref U2) (pin 4))
(node (ref J2) (pin 5)))
(net (code 31) (name /CLKA)
(node (ref J2) (pin 29))
(node (ref U2) (pin 15)))
(net (code 32) (name "Net-(C11-Pad1)")
(node (ref C11) (pin 1))
(node (ref C7) (pin 1))
(node (ref U2) (pin 26))
(node (ref U2) (pin 21)))
(net (code 33) (name /D0A)
(node (ref U2) (pin 3))
(node (ref J2) (pin 3)))
(net (code 34) (name "Net-(C1-Pad1)")
(node (ref U2) (pin 22))
(node (ref C1) (pin 1))
(node (ref C9) (pin 1))
(node (ref C5) (pin 1)))
(net (code 35) (name "Net-(C2-Pad1)")
(node (ref C9) (pin 2))
(node (ref C5) (pin 2))
(node (ref C2) (pin 1))
(node (ref U2) (pin 24)))
(net (code 36) (name "Net-(C13-Pad2)")
(node (ref C14) (pin 1))
(node (ref U1) (pin 3))
(node (ref R2) (pin 1))
(node (ref R1) (pin 2))
(node (ref C13) (pin 2)))
(net (code 37) (name "Net-(C13-Pad1)")
(node (ref C13) (pin 1))
(node (ref R1) (pin 1))
(node (ref J1) (pin 1)))
(net (code 38) (name "Net-(R7-Pad2)")
(node (ref R8) (pin 1))
(node (ref U1) (pin 6))
(node (ref R7) (pin 2)))
(net (code 39) (name /D7A)
(node (ref U2) (pin 10))
(node (ref J2) (pin 21)))
(net (code 40) (name /D8A)
(node (ref J2) (pin 23))
(node (ref U2) (pin 11)))
(net (code 41) (name /D9A)
(node (ref J2) (pin 27))
(node (ref U2) (pin 12)))
(net (code 42) (name "Net-(U2-Pad13)")
(node (ref U2) (pin 13)))
(net (code 43) (name "Net-(R5-Pad1)")
(node (ref R5) (pin 1))
(node (ref U1) (pin 5))
(node (ref R6) (pin 1)))
(net (code 44) (name "Net-(R3-Pad1)")
(node (ref R3) (pin 1))
(node (ref R4) (pin 2))
(node (ref R5) (pin 2)))
(net (code 45) (name "Net-(R6-Pad2)")
(node (ref R6) (pin 2))
(node (ref U1) (pin 2))
(node (ref U1) (pin 1)))
(net (code 46) (name "Net-(C10-Pad1)")
(node (ref U3) (pin 22))
(node (ref C6) (pin 1))
(node (ref C10) (pin 1))
(node (ref C3) (pin 1)))
(net (code 47) (name "Net-(C10-Pad2)")
(node (ref C6) (pin 2))
(node (ref U3) (pin 24))
(node (ref C10) (pin 2))
(node (ref C4) (pin 1)))
(net (code 48) (name "Net-(C12-Pad1)")
(node (ref U3) (pin 26))
(node (ref U3) (pin 21))
(node (ref C8) (pin 1))
(node (ref C12) (pin 1)))
(net (code 49) (name /D7B)
(node (ref U3) (pin 10))
(node (ref J2) (pin 26)))
(net (code 50) (name /D6B)
(node (ref J2) (pin 24))
(node (ref U3) (pin 9)))
(net (code 51) (name /D0B)
(node (ref J2) (pin 8))
(node (ref U3) (pin 3)))
(net (code 52) (name /D1B)
(node (ref U3) (pin 4))
(node (ref J2) (pin 10)))
(net (code 53) (name /D2B)
(node (ref J2) (pin 12))
(node (ref U3) (pin 5)))
(net (code 54) (name /D3B)
(node (ref J2) (pin 16))
(node (ref U3) (pin 6)))
(net (code 55) (name /D4B)
(node (ref U3) (pin 7))
(node (ref J2) (pin 18)))
(net (code 56) (name /D5B)
(node (ref U3) (pin 8))
(node (ref J2) (pin 22)))
(net (code 57) (name /D8B)
(node (ref U3) (pin 11))
(node (ref J2) (pin 28)))
(net (code 58) (name /D9B)
(node (ref J2) (pin 32))
(node (ref U3) (pin 12)))
(net (code 59) (name /CLKB)
(node (ref U3) (pin 15))
(node (ref J2) (pin 36)))))