-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLT_Eval_board.net
1751 lines (1751 loc) · 67.1 KB
/
LT_Eval_board.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/kp/projects/hardware/LT_Eval_board/LT_Eval_board.sch)
(date "Sun Jun 23 16:08:20 2019")
(tool "Eeschema 5.1.2-f72e74a~84~ubuntu18.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title LT_Eval_board)
(company https://github.com/kprasadvnsi/LT_Eval_board)
(rev v1.0.0)
(date 2019-06-16)
(source LT_Eval_board.sch)
(comment (number 1) (value "License: CC-BY-SA V4.0"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /LT_Breakout_board/) (tstamps /5D06776E/)
(title_block
(title LT_Eval_board)
(company https://github.com/kprasadvnsi/LT_Eval_board)
(rev v1.0.0)
(date 2019-06-16)
(source lt_breakout.sch)
(comment (number 1) (value "License: CC-BY-SA V4.0"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /LT_SOM_Socket/) (tstamps /5D0677E1/)
(title_block
(title LT_Eval_board)
(company https://github.com/kprasadvnsi/LT_Eval_board)
(rev v1.0.0)
(date 2019-06-16)
(source lt_SOM_socket.sch)
(comment (number 1) (value "License: CC-BY-SA V4.0"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /VGA/) (tstamps /5D06789A/)
(title_block
(title LT_Eval_board)
(company https://github.com/kprasadvnsi/LT_Eval_board)
(rev v1.0.0)
(date 2019-06-16)
(source vga.sch)
(comment (number 1) (value "License: CC-BY-SA V4.0"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /HDMI/) (tstamps /5D0678E5/)
(title_block
(title LT_Eval_board)
(company https://github.com/kprasadvnsi/LT_Eval_board)
(rev v1.0.0)
(date 2019-06-16)
(source hdmi.sch)
(comment (number 1) (value "License: CC-BY-SA V4.0"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /Audio/) (tstamps /5D067936/)
(title_block
(title LT_Eval_board)
(company https://github.com/kprasadvnsi/LT_Eval_board)
(rev v1.0.0)
(date 2019-06-16)
(source audio.sch)
(comment (number 1) (value "License: CC-BY-SA V4.0"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name /PS/2/) (tstamps /5D071127/)
(title_block
(title LT_Eval_board)
(company https://github.com/kprasadvnsi/LT_Eval_board)
(rev v1.0.0)
(date 2019-06-16)
(source ps2.sch)
(comment (number 1) (value "License: CC-BY-SA V4.0"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value LicheeTang)
(footprint lt_eval_board:Lichee_Tang)
(libsource (lib lt_eval_board) (part LicheeTang) (description ""))
(sheetpath (names /LT_Breakout_board/) (tstamps /5D06776E/))
(tstamp 5D0D3438))
(comp (ref J1)
(value Conn_01x40_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x20_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x40_Male) (description "Generic connector, single row, 01x40, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /LT_Breakout_board/) (tstamps /5D06776E/))
(tstamp 5D0EB726))
(comp (ref J2)
(value Conn_01x40_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x20_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x40_Male) (description "Generic connector, single row, 01x40, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /LT_Breakout_board/) (tstamps /5D06776E/))
(tstamp 5D0F701E))
(comp (ref R1)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0DA7C3))
(comp (ref R7)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0DB202))
(comp (ref R2)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0E5506))
(comp (ref R8)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0E5510))
(comp (ref R3)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0E62E5))
(comp (ref R9)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0E62EF))
(comp (ref R4)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0E62FC))
(comp (ref R10)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0E6306))
(comp (ref R5)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0E7EF9))
(comp (ref R11)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0E7F03))
(comp (ref R6)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0E7F10))
(comp (ref R12)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0E7F1A))
(comp (ref R13)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3F51))
(comp (ref R19)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3F5B))
(comp (ref R14)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3F68))
(comp (ref R20)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3F72))
(comp (ref R15)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3F7F))
(comp (ref R21)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3F89))
(comp (ref R16)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3F96))
(comp (ref R22)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3FA0))
(comp (ref R17)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3FAD))
(comp (ref R23)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3FB7))
(comp (ref R18)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3FC4))
(comp (ref R24)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0F3FCE))
(comp (ref R26)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC204))
(comp (ref R33)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC20E))
(comp (ref R27)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC21B))
(comp (ref R34)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC225))
(comp (ref R28)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC232))
(comp (ref R35)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC23C))
(comp (ref R29)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC249))
(comp (ref R36)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC253))
(comp (ref R30)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC260))
(comp (ref R37)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC26A))
(comp (ref R31)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC277))
(comp (ref R38)
(value 255)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D0FC281))
(comp (ref U2)
(value ADV7123)
(footprint Package_QFP:LQFP-48_7x7mm_P0.5mm)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7123.pdf)
(libsource (lib lt_eval_board) (part ADV7123) (description "Triple 10-Bit High Speed Video DAC"))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D1205A2))
(comp (ref R25)
(value 4.7K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D2233A6))
(comp (ref R32)
(value 560)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D273F36))
(comp (ref C1)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D2E50B4))
(comp (ref C2)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D2E5594))
(comp (ref R39)
(value 75)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D33A341))
(comp (ref R41)
(value 75)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D33A93B))
(comp (ref R40)
(value 75)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D33AD87))
(comp (ref J3)
(value DB15_Male_HighDensity)
(footprint Connector_Dsub:DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm)
(datasheet " ~")
(libsource (lib Connector) (part DB15_Male_HighDensity) (description "15-pin male D-SUB connector, High density (3 columns), Triple Row, Generic, VGA-connector"))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D13924B))
(comp (ref R43)
(value 75)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D53B350))
(comp (ref R42)
(value 75)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /VGA/) (tstamps /5D06789A/))
(tstamp 5D53BB89))
(comp (ref J4)
(value HDMI_A)
(footprint lt_eval_board:HDMI_A_Female_2000-1-2-41-00-BK)
(datasheet https://en.wikipedia.org/wiki/HDMI)
(libsource (lib Connector) (part HDMI_A) (description "HDMI type A connector"))
(sheetpath (names /HDMI/) (tstamps /5D0678E5/))
(tstamp 5D63985F))
(comp (ref R44)
(value 270)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /HDMI/) (tstamps /5D0678E5/))
(tstamp 5D63B505))
(comp (ref R45)
(value 270)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /HDMI/) (tstamps /5D0678E5/))
(tstamp 5D63DE7F))
(comp (ref R46)
(value 270)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /HDMI/) (tstamps /5D0678E5/))
(tstamp 5D63FCB8))
(comp (ref R47)
(value 270)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /HDMI/) (tstamps /5D0678E5/))
(tstamp 5D63FCC4))
(comp (ref R48)
(value 270)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /HDMI/) (tstamps /5D0678E5/))
(tstamp 5D6413F6))
(comp (ref R49)
(value 270)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /HDMI/) (tstamps /5D0678E5/))
(tstamp 5D641402))
(comp (ref R50)
(value 270)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /HDMI/) (tstamps /5D0678E5/))
(tstamp 5D64140E))
(comp (ref R51)
(value 270)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /HDMI/) (tstamps /5D0678E5/))
(tstamp 5D64141A))
(comp (ref R52)
(value 1K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /HDMI/) (tstamps /5D0678E5/))
(tstamp 5D64A665))
(comp (ref R53)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /HDMI/) (tstamps /5D0678E5/))
(tstamp 5D651621))
(comp (ref U3)
(value CS4344)
(footprint Package_SO:TSSOP-10_3x3mm_P0.5mm)
(datasheet https://statics.cirrus.com/pubs/proDatasheet/CS4344-45-48_F2.pdf)
(libsource (lib lt_eval_board) (part CS4344) (description "10-Pin, 24-Bit, 192 kHz Stereo D/A Converter"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D072C63))
(comp (ref J5)
(value PJ-307)
(footprint lt_eval_board:PJ-307)
(libsource (lib lt_eval_board) (part PJ-307) (description ""))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D087083))
(comp (ref C11)
(value 3.3uf)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D08C7BA))
(comp (ref R56)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D08EF53))
(comp (ref R58)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D08F5D6))
(comp (ref C13)
(value 3.3uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D092BC6))
(comp (ref R59)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D09362D))
(comp (ref R57)
(value 10K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D09A828))
(comp (ref C5)
(value 10uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D0A15AD))
(comp (ref L1)
(value 10uH)
(footprint Inductor_SMD:L_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D0DA66D))
(comp (ref C7)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D306893))
(comp (ref C10)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D30615A))
(comp (ref R54)
(value 2K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D36B321))
(comp (ref C9)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D36BD4D))
(comp (ref C6)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D36C27B))
(comp (ref R55)
(value 2K)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D3792B3))
(comp (ref C8)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D37AB97))
(comp (ref C12)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D37A61B))
(comp (ref C4)
(value 3.3uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D333188))
(comp (ref C3)
(value 0.1uF)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D3334AD))
(comp (ref JP1)
(value Jumper_Dual)
(footprint Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Device) (part Jumper_NC_Dual) (description "Dual jumper, normally closed"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D0C6399))
(comp (ref JP2)
(value Jumper_Dual)
(footprint Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Device) (part Jumper_NC_Dual) (description "Dual jumper, normally closed"))
(sheetpath (names /Audio/) (tstamps /5D067936/))
(tstamp 5D0C73EA))
(comp (ref D1)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /PS/2/) (tstamps /5D071127/))
(tstamp 5D07F41B))
(comp (ref D2)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /PS/2/) (tstamps /5D071127/))
(tstamp 5D07FCC7))
(comp (ref R60)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /PS/2/) (tstamps /5D071127/))
(tstamp 5D080306))
(comp (ref R61)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /PS/2/) (tstamps /5D071127/))
(tstamp 5D080849))
(comp (ref J6)
(value Mini-DIN-6)
(footprint lt_eval_board:Mini_din6)
(datasheet http://service.powerdynamics.com/ec/Catalog17/Section%2011.pdf)
(libsource (lib Connector) (part Mini-DIN-6) (description "6-pin Mini-DIN connector"))
(sheetpath (names /PS/2/) (tstamps /5D071127/))
(tstamp 5D07D04B))
(comp (ref D3)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /PS/2/) (tstamps /5D071127/))
(tstamp 5D0BA90B))
(comp (ref D4)
(value BAT54S)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(libsource (lib Diode) (part BAT54S) (description "schottky barrier diode"))
(sheetpath (names /PS/2/) (tstamps /5D071127/))
(tstamp 5D0BA915))
(comp (ref R62)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /PS/2/) (tstamps /5D071127/))
(tstamp 5D0BA91F))
(comp (ref R63)
(value 510)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /PS/2/) (tstamps /5D071127/))
(tstamp 5D0BA929))
(comp (ref J7)
(value Mini-DIN-6)
(footprint lt_eval_board:Mini_din6)
(datasheet http://service.powerdynamics.com/ec/Catalog17/Section%2011.pdf)
(libsource (lib Connector) (part Mini-DIN-6) (description "6-pin Mini-DIN connector"))
(sheetpath (names /PS/2/) (tstamps /5D071127/))
(tstamp 5D0BA933)))
(libparts
(libpart (lib Connector) (part Conn_01x40_Male)
(description "Generic connector, single row, 01x40, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x40_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(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 Connector) (part DB15_Male_HighDensity)
(description "15-pin male D-SUB connector, High density (3 columns), Triple Row, Generic, VGA-connector")
(docs " ~")
(footprints
(fp DSUB*Male*))
(fields
(field (name Reference) J)
(field (name Value) DB15_Male_HighDensity))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))
(pin (num 7) (name ~) (type passive))
(pin (num 8) (name ~) (type passive))
(pin (num 9) (name ~) (type passive))
(pin (num 10) (name ~) (type passive))
(pin (num 11) (name ~) (type passive))
(pin (num 12) (name ~) (type passive))
(pin (num 13) (name ~) (type passive))
(pin (num 14) (name ~) (type passive))
(pin (num 15) (name ~) (type passive))))
(libpart (lib Connector) (part HDMI_A)
(description "HDMI type A connector")
(docs https://en.wikipedia.org/wiki/HDMI)
(footprints
(fp HDMI*A*))
(fields
(field (name Reference) J)
(field (name Value) HDMI_A))
(pins
(pin (num 1) (name D2+) (type passive))
(pin (num 2) (name D2S) (type power_in))
(pin (num 3) (name D2-) (type passive))
(pin (num 4) (name D1+) (type passive))
(pin (num 5) (name D1S) (type power_in))
(pin (num 6) (name D1-) (type passive))
(pin (num 7) (name D0+) (type passive))
(pin (num 8) (name D0S) (type power_in))
(pin (num 9) (name D0-) (type passive))
(pin (num 10) (name CK+) (type passive))
(pin (num 11) (name CKS) (type power_in))
(pin (num 12) (name CK-) (type passive))
(pin (num 13) (name CEC) (type BiDi))
(pin (num 14) (name UTILITY) (type passive))
(pin (num 15) (name SCL) (type passive))
(pin (num 16) (name SDA) (type BiDi))
(pin (num 17) (name GND) (type power_in))
(pin (num 18) (name +5V) (type power_in))
(pin (num 19) (name HPD) (type passive))
(pin (num SH) (name SH) (type passive))))
(libpart (lib Connector) (part Mini-DIN-6)
(description "6-pin Mini-DIN connector")
(docs http://service.powerdynamics.com/ec/Catalog17/Section%2011.pdf)
(footprints
(fp MINI?DIN*))
(fields
(field (name Reference) J)
(field (name Value) Mini-DIN-6))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (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 Jumper_NC_Dual)
(description "Dual jumper, normally closed")
(docs ~)
(footprints
(fp SolderJumper*Bridged*))
(fields
(field (name Reference) JP)
(field (name Value) Jumper_NC_Dual))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib Device) (part L)
(description Inductor)
(docs ~)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Diode) (part BAT54S)
(description "schottky barrier diode")
(docs https://www.diodes.com/assets/Datasheets/ds11005.pdf)
(footprints
(fp SOT*23*))
(fields
(field (name Reference) D)
(field (name Value) BAT54S)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib lt_eval_board) (part ADV7123)
(description "Triple 10-Bit High Speed Video DAC")
(docs https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7123.pdf)
(fields
(field (name Reference) U)
(field (name Value) ADV7123)
(field (name Footprint) Package_QFP:LQFP-48_7x7mm_P0.5mm))
(pins
(pin (num 1) (name G0) (type output))
(pin (num 2) (name G1) (type output))
(pin (num 3) (name G2) (type output))
(pin (num 4) (name G3) (type output))
(pin (num 5) (name G4) (type output))
(pin (num 6) (name G5) (type output))
(pin (num 7) (name G6) (type output))
(pin (num 8) (name G7) (type output))
(pin (num 9) (name G8) (type output))
(pin (num 10) (name G9) (type output))
(pin (num 11) (name BLANK) (type output))
(pin (num 12) (name SYNC) (type output))
(pin (num 13) (name VAA) (type output))
(pin (num 14) (name B0) (type output))
(pin (num 15) (name B1) (type output))
(pin (num 16) (name B2) (type output))
(pin (num 17) (name B3) (type output))
(pin (num 18) (name B4) (type output))
(pin (num 19) (name B5) (type output))
(pin (num 20) (name B6) (type output))
(pin (num 21) (name B7) (type output))
(pin (num 22) (name B8) (type output))
(pin (num 23) (name B9) (type output))
(pin (num 24) (name CLK) (type output))
(pin (num 25) (name GND) (type output))
(pin (num 26) (name GND) (type output))
(pin (num 27) (name /IOB) (type output))
(pin (num 28) (name IOB) (type output))
(pin (num 29) (name VAA) (type output))
(pin (num 30) (name VAA) (type output))
(pin (num 31) (name /IOG) (type output))
(pin (num 32) (name IOG) (type output))
(pin (num 33) (name /IOR) (type output))
(pin (num 34) (name IOR) (type output))
(pin (num 35) (name COMP) (type output))
(pin (num 36) (name VREF) (type output))
(pin (num 37) (name RESET) (type output))
(pin (num 38) (name PSAVE) (type output))
(pin (num 39) (name R0) (type output))
(pin (num 40) (name R1) (type output))
(pin (num 41) (name R2) (type output))
(pin (num 42) (name R3) (type output))
(pin (num 43) (name R4) (type output))
(pin (num 44) (name R5) (type output))
(pin (num 45) (name R6) (type output))
(pin (num 46) (name R7) (type output))
(pin (num 47) (name R8) (type output))
(pin (num 48) (name R9) (type output))))
(libpart (lib lt_eval_board) (part CS4344)
(description "10-Pin, 24-Bit, 192 kHz Stereo D/A Converter")
(docs https://statics.cirrus.com/pubs/proDatasheet/CS4344-45-48_F2.pdf)
(fields
(field (name Reference) U)
(field (name Value) CS4344)
(field (name Footprint) Package_SO:TSSOP-10_3x3mm_P0.5mm))
(pins
(pin (num 1) (name SDIN) (type input))
(pin (num 2) (name DEM/SCLK) (type input))
(pin (num 3) (name LRCK) (type input))
(pin (num 4) (name MCLK) (type input))
(pin (num 5) (name VQ) (type input))
(pin (num 6) (name FILT+) (type input))
(pin (num 7) (name AOUTL) (type input))
(pin (num 8) (name GND) (type input))
(pin (num 9) (name VA) (type input))
(pin (num 10) (name AOUTR) (type input))))
(libpart (lib lt_eval_board) (part LicheeTang)
(fields
(field (name Reference) U)
(field (name Value) LicheeTang))
(pins
(pin (num 1) (name N3) (type input))
(pin (num 2) (name P2) (type input))
(pin (num 3) (name M4) (type input))
(pin (num 4) (name R2) (type input))
(pin (num 5) (name P4) (type input))
(pin (num 6) (name N5) (type input))
(pin (num 7) (name N4) (type input))
(pin (num 8) (name P5) (type input))
(pin (num 9) (name T5) (type input))
(pin (num 10) (name T7) (type input))