-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTMS9929_RGB_Adapter.net
1013 lines (1013 loc) · 33.4 KB
/
TMS9929_RGB_Adapter.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 Y:/work/git/ti99-rgb/TMS9929_RGB_Adapter.sch)
(date "24/09/2017 20:30:34")
(tool "Eeschema 4.0.7")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "TMS9929A to RGB")
(company "Gerhard Wiesinger")
(rev 0)
(date 2017-09-17)
(source TMS9929_RGB_Adapter.sch)
(comment (number 1) (value "Based on Alexis Kotlowy"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U2)
(value XR8052)
(footprint SMD_Packages:SOIC-8-N)
(libsource (lib linear) (part LM358))
(sheetpath (names /) (tstamps /))
(tstamp 57667434))
(comp (ref U3)
(value XR8052)
(footprint SMD_Packages:SOIC-8-N)
(libsource (lib linear) (part LM358))
(sheetpath (names /) (tstamps /))
(tstamp 57667A6D))
(comp (ref R11)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57667D35))
(comp (ref R14)
(value 2k7)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57667D95))
(comp (ref R13)
(value 5.6k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57667E83))
(comp (ref R22)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57667EE6))
(comp (ref R19)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57667FF3))
(comp (ref R20)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5766807A))
(comp (ref R21)
(value 2k7)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57668108))
(comp (ref U1)
(value XR8052)
(footprint SMD_Packages:SOIC-8-N)
(libsource (lib linear) (part LM358))
(sheetpath (names /) (tstamps /))
(tstamp 57668809))
(comp (ref R4)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 576688C0))
(comp (ref R6)
(value 2k7)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5766897E))
(comp (ref R5)
(value 1.2k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57668B28))
(comp (ref R7)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57668BCA))
(comp (ref R3)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5766958D))
(comp (ref R1)
(value 1.2k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57669651))
(comp (ref R12)
(value 6.8k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57669E63))
(comp (ref R15)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57669F8C))
(comp (ref R18)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5766A0BA))
(comp (ref R16)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5766A146))
(comp (ref R8)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5766A8FB))
(comp (ref R10)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5766A98B))
(comp (ref R2)
(value 75R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5766E264))
(comp (ref R9)
(value 75R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5766E3E5))
(comp (ref R17)
(value 75R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5766E47A))
(comp (ref C3)
(value 47uF)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeB_EIA-3528_HandSoldering)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5766E8AE))
(comp (ref C2)
(value 47uF)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeB_EIA-3528_HandSoldering)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5766E9DE))
(comp (ref C1)
(value 47uF)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeB_EIA-3528_HandSoldering)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 5766EA82))
(comp (ref P1)
(value CONN_01X06)
(footprint Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm)
(libsource (lib TMS9929_RGB_Adapter-cache) (part CONN_01X06))
(sheetpath (names /) (tstamps /))
(tstamp 5766F637))
(comp (ref U4)
(value 4066)
(footprint SMD_Packages:SOIC-14_N)
(libsource (lib cmos4000) (part 4066))
(sheetpath (names /) (tstamps /))
(tstamp 5767130D))
(comp (ref U5)
(value LM1881)
(footprint SMD_Packages:SOIC-8-N)
(libsource (lib lm1881) (part LM1881))
(sheetpath (names /) (tstamps /))
(tstamp 5767187D))
(comp (ref C6)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57671AC3))
(comp (ref C7)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57672C75))
(comp (ref R23)
(value 680k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57672D49))
(comp (ref C8)
(value 47uF)
(footprint Capacitors_Tantalum_SMD:TantalC_SizeB_EIA-3528_HandSoldering)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 57677AF3))
(comp (ref C9)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57677C77))
(comp (ref C10)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57677D62))
(comp (ref C11)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57677E0A))
(comp (ref C12)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57677EBD))
(comp (ref C13)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57677F6F))
(comp (ref R24)
(value 680R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57684908))
(comp (ref R25)
(value 82R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 576849DC))
(comp (ref P6)
(value CONN_01X01)
(footprint Connect:1pin)
(libsource (lib TMS9929_RGB_Adapter-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 57677766))
(comp (ref P7)
(value CONN_01X01)
(footprint Connect:1pin)
(libsource (lib TMS9929_RGB_Adapter-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 5767781F))
(comp (ref P8)
(value CONN_01X01)
(footprint Connect:1pin)
(libsource (lib TMS9929_RGB_Adapter-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 576778D8))
(comp (ref P9)
(value CONN_01X01)
(footprint Connect:1pin)
(libsource (lib TMS9929_RGB_Adapter-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 5767796B))
(comp (ref P3)
(value SEL)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib TMS9929_RGB_Adapter-cache) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 5767DE49))
(comp (ref P4)
(value SEL)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib TMS9929_RGB_Adapter-cache) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 5767E3A8))
(comp (ref P5)
(value SEL)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib TMS9929_RGB_Adapter-cache) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 5767E680))
(comp (ref U6)
(value TL081)
(footprint SMD_Packages:SOIC-8-N)
(libsource (lib TMS9929_RGB_Adapter-rescue) (part TL071-RESCUE-TMS9929_RGB_Adapter))
(sheetpath (names /) (tstamps /))
(tstamp 57686080))
(comp (ref C14)
(value 10nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 576867C4))
(comp (ref C15)
(value 100nF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5768D41A))
(comp (ref R28)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5768FAA9))
(comp (ref R29)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5768FB9E))
(comp (ref P2)
(value CONN_01X08)
(footprint Pin_Headers:Pin_Header_Straight_1x08_Pitch2.54mm)
(libsource (lib TMS9929_RGB_Adapter-cache) (part CONN_01X08))
(sheetpath (names /) (tstamps /))
(tstamp 576BC046))
(comp (ref P10)
(value 12V)
(footprint Pin_Headers:Pin_Header_Straight_1x01)
(libsource (lib TMS9929_RGB_Adapter-cache) (part CONN_01X01))
(sheetpath (names /) (tstamps /))
(tstamp 576BC172))
(comp (ref R30)
(value 270R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 576BC430))
(comp (ref L1)
(value FERRITE)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib TMS9929_RGB_Adapter-cache) (part INDUCTOR_SMALL))
(sheetpath (names /) (tstamps /))
(tstamp 576F771A))
(comp (ref R26)
(value 1k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 576FBC9F))
(comp (ref JYIN1)
(value Conn_01x02)
(footprint rca_black)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 59BF3565))
(comp (ref JUIN1)
(value Conn_01x02)
(footprint rca_white)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 59BEB0E5))
(comp (ref JVIN1)
(value Conn_01x02)
(footprint rca_red)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 59BEC2C5))
(comp (ref RYIN1)
(value 4.7k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59BF5531))
(comp (ref RYIN2)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59BF597E))
(comp (ref RVIN1)
(value 4.7k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59BF6A11))
(comp (ref RUIN1)
(value 4.7k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59BF819E))
(comp (ref JYINSHORT1)
(value Conn_01x02)
(footprint Pin_Header_Straight_1x02_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 59BF85B8))
(comp (ref JVSHORT1)
(value Conn_01x02)
(footprint Pin_Header_Straight_1x02_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 59BFA6D1))
(comp (ref JUSHORT1)
(value Conn_01x02)
(footprint Pin_Header_Straight_1x02_Pitch2.54mm)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 59BFF986))
(comp (ref JYOUT1)
(value Conn_01x02)
(footprint rca_black)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 59C05270))
(comp (ref JVOUT1)
(value Conn_01x02)
(footprint rca_red)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 59C071F0))
(comp (ref JUOUT1)
(value Conn_01x02)
(footprint rca_white)
(libsource (lib conn) (part Conn_01x02))
(sheetpath (names /) (tstamps /))
(tstamp 59C08E7B))
(comp (ref JDC1)
(value Jack-DC)
(footprint jack_2mm:jack_2mm)
(libsource (lib conn) (part Jack-DC))
(sheetpath (names /) (tstamps /))
(tstamp 59C21F8F))
(comp (ref R14_2)
(value 12k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59C841B4))
(comp (ref R21_2)
(value 12k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59C8476E))
(comp (ref R6_2)
(value 12k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59C850AE))
(comp (ref R15_2)
(value 100k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59C85B57))
(comp (ref R13_2)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59C86052))
(comp (ref R12_2)
(value 68k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59C86A03)))
(libparts
(libpart (lib cmos4000) (part 4016)
(aliases
(alias 4066))
(description "Quad Analog Switches")
(docs http://www.ti.com/lit/ds/symlink/cd4016b.pdf)
(fields
(field (name Reference) U)
(field (name Value) 4016))
(pins
(pin (num 1) (name I/O) (type passive))
(pin (num 2) (name O/I) (type passive))
(pin (num 3) (name O/I) (type passive))
(pin (num 4) (name I/O) (type passive))
(pin (num 5) (name ON) (type input))
(pin (num 6) (name ON) (type input))
(pin (num 7) (name V-) (type power_in))
(pin (num 8) (name I/O) (type passive))
(pin (num 9) (name O/I) (type passive))
(pin (num 10) (name O/I) (type passive))
(pin (num 11) (name I/O) (type passive))
(pin (num 12) (name ON) (type input))
(pin (num 13) (name ON) (type input))
(pin (num 14) (name V+) (type power_in))))
(libpart (lib conn) (part Barrel_Jack)
(aliases
(alias Jack-DC))
(description "DC Barrel Jack")
(docs ~)
(fields
(field (name Reference) J)
(field (name Value) Barrel_Jack))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(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 TMS9929_RGB_Adapter-cache) (part CONN_01X01)
(footprints
(fp Pin_Header_Straight_1X01)
(fp Pin_Header_Angled_1X01)
(fp Socket_Strip_Straight_1X01)
(fp Socket_Strip_Angled_1X01))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X01))
(pins
(pin (num 1) (name P1) (type passive))))
(libpart (lib TMS9929_RGB_Adapter-cache) (part CONN_01X03)
(footprints
(fp Pin_Header_Straight_1X03)
(fp Pin_Header_Angled_1X03)
(fp Socket_Strip_Straight_1X03)
(fp Socket_Strip_Angled_1X03))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib TMS9929_RGB_Adapter-cache) (part CONN_01X06)
(footprints
(fp Pin_Header_Straight_1X06)
(fp Pin_Header_Angled_1X06)
(fp Socket_Strip_Straight_1X06)
(fp Socket_Strip_Angled_1X06))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X06))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))))
(libpart (lib TMS9929_RGB_Adapter-cache) (part CONN_01X08)
(footprints
(fp Pin_Header_Straight_1X08)
(fp Pin_Header_Angled_1X08)
(fp Socket_Strip_Straight_1X08)
(fp Socket_Strip_Angled_1X08))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X08))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))))
(libpart (lib device) (part CP)
(description "Polarised capacitor")
(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 conn) (part Conn_01x02)
(description "Generic connector, single row, 01x02")
(docs ~)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib TMS9929_RGB_Adapter-cache) (part INDUCTOR_SMALL)
(fields
(field (name Reference) L)
(field (name Value) INDUCTOR_SMALL))
(pins
(pin (num 1) (name 1) (type input))
(pin (num 2) (name 2) (type input))))
(libpart (lib lm1881) (part LM1881)
(fields
(field (name Reference) U)
(field (name Value) LM1881))
(pins
(pin (num 1) (name CSYNC) (type output))
(pin (num 2) (name Video) (type input))
(pin (num 3) (name VSYNC) (type output))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name BURST) (type output))
(pin (num 6) (name Rset) (type output))
(pin (num 7) (name O/E) (type output))
(pin (num 8) (name Vcc) (type power_in))))
(libpart (lib linear) (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 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))
(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*Pitch1.27mm*)
(fp DIP*W7.62mm*)
(fp TO*99*)
(fp OnSemi*Micro8*)
(fp TSSOP*3x3mm*Pitch0.65mm*)
(fp TSSOP*4.4x3mm*Pitch0.65mm*)
(fp MSOP*3x3mm*Pitch0.65mm*)
(fp SSOP*3.9x4.9mm*Pitch0.635mm*)
(fp LFCSP*2x2mm*Pitch0.5mm*)
(fp *SIP*)
(fp SOIC*5.3x6.2mm*Pitch1.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 device) (part R)
(description Resistor)
(footprints
(fp R_*)
(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 TMS9929_RGB_Adapter-rescue) (part TL071-RESCUE-TMS9929_RGB_Adapter)
(fields
(field (name Reference) U)
(field (name Value) TL071-RESCUE-TMS9929_RGB_Adapter))
(pins
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V-) (type passive))
(pin (num 6) (name ~) (type output))
(pin (num 7) (name V+) (type passive)))))
(libraries
(library (logical linear)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\linear.lib"))
(library (logical lm1881)
(uri Y:\work\git\ti99-rgb\lm1881.lib))
(library (logical TMS9929_RGB_Adapter-cache)
(uri Y:\work\git\ti99-rgb\TMS9929_RGB_Adapter-cache.lib))
(library (logical conn)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\conn.lib"))
(library (logical cmos4000)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\cmos4000.lib"))
(library (logical TMS9929_RGB_Adapter-rescue)
(uri Y:\work\git\ti99-rgb\TMS9929_RGB_Adapter-rescue.lib))
(library (logical device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\device.lib")))
(nets
(net (code 1) (name "Net-(R1-Pad2)")
(node (ref R1) (pin 2))
(node (ref U1) (pin 5))
(node (ref R3) (pin 2)))
(net (code 2) (name "Net-(R5-Pad2)")
(node (ref R5) (pin 2))
(node (ref R7) (pin 1))
(node (ref U1) (pin 6)))
(net (code 3) (name "Net-(R10-Pad1)")
(node (ref R10) (pin 1))
(node (ref U2) (pin 5))
(node (ref R8) (pin 1)))
(net (code 4) (name "Net-(R16-Pad1)")
(node (ref R16) (pin 1))
(node (ref R18) (pin 1))
(node (ref U3) (pin 5)))
(net (code 5) (name "Net-(P2-Pad8)")
(node (ref R30) (pin 1))
(node (ref P2) (pin 8)))
(net (code 6) (name "Net-(L1-Pad1)")
(node (ref L1) (pin 1))
(node (ref P1) (pin 2)))
(net (code 7) (name "Net-(P10-Pad1)")
(node (ref P2) (pin 7))
(node (ref P10) (pin 1)))
(net (code 8) (name "Net-(R20-Pad2)")
(node (ref R22) (pin 2))
(node (ref R20) (pin 2))
(node (ref U3) (pin 6)))
(net (code 9) (name /R)
(node (ref P4) (pin 1))
(node (ref R5) (pin 1))
(node (ref U1) (pin 7)))
(net (code 10) (name /G)
(node (ref P3) (pin 1))
(node (ref U2) (pin 7))
(node (ref R13_2) (pin 1))
(node (ref R13) (pin 1)))
(net (code 11) (name /Y)
(node (ref P3) (pin 3))
(node (ref R1) (pin 1))
(node (ref U1) (pin 1))
(node (ref R4) (pin 1))
(node (ref R8) (pin 2))
(node (ref R16) (pin 2)))
(net (code 12) (name "Net-(P2-Pad2)")
(node (ref P2) (pin 2))
(node (ref R24) (pin 2))
(node (ref R25) (pin 2)))
(net (code 13) (name "Net-(C3-Pad2)")
(node (ref C3) (pin 2))
(node (ref JUOUT1) (pin 2))
(node (ref P2) (pin 5)))
(net (code 14) (name "Net-(C2-Pad2)")
(node (ref JVOUT1) (pin 2))
(node (ref P2) (pin 4))
(node (ref C2) (pin 2)))
(net (code 15) (name "Net-(C3-Pad1)")
(node (ref R17) (pin 1))
(node (ref C3) (pin 1)))
(net (code 16) (name "Net-(C2-Pad1)")
(node (ref R9) (pin 1))
(node (ref C2) (pin 1)))
(net (code 17) (name "Net-(C1-Pad1)")
(node (ref C1) (pin 1))
(node (ref R2) (pin 1)))
(net (code 18) (name "Net-(C7-Pad1)")
(node (ref U5) (pin 6))
(node (ref C7) (pin 1))
(node (ref R23) (pin 2)))
(net (code 19) (name "Net-(U4-Pad5)")
(node (ref U5) (pin 5))
(node (ref U4) (pin 5))
(node (ref U4) (pin 6)))
(net (code 20) (name "Net-(R26-Pad2)")
(node (ref U4) (pin 12))
(node (ref R26) (pin 2))
(node (ref U4) (pin 2)))
(net (code 21) (name "Net-(C6-Pad2)")
(node (ref C6) (pin 2))
(node (ref U5) (pin 2)))
(net (code 22) (name GND)
(node (ref JVIN1) (pin 1))
(node (ref R25) (pin 1))
(node (ref P2) (pin 6))
(node (ref U4) (pin 7))
(node (ref JYIN1) (pin 1))
(node (ref JUIN1) (pin 1))
(node (ref U3) (pin 4))
(node (ref U1) (pin 4))
(node (ref P2) (pin 1))
(node (ref P1) (pin 1))
(node (ref P1) (pin 6))
(node (ref U4) (pin 1))
(node (ref U5) (pin 4))
(node (ref C7) (pin 2))
(node (ref R23) (pin 1))
(node (ref U6) (pin 4))
(node (ref C14) (pin 1))
(node (ref JUOUT1) (pin 1))
(node (ref C13) (pin 1))
(node (ref U2) (pin 4))
(node (ref C12) (pin 1))
(node (ref JVOUT1) (pin 1))
(node (ref C8) (pin 2))
(node (ref C9) (pin 1))
(node (ref JDC1) (pin 3))
(node (ref C15) (pin 1))
(node (ref C11) (pin 1))
(node (ref JYOUT1) (pin 1))
(node (ref C10) (pin 1))
(node (ref JDC1) (pin 2)))
(net (code 23) (name VCC)
(node (ref U4) (pin 14))
(node (ref JDC1) (pin 1))
(node (ref U5) (pin 8))
(node (ref C13) (pin 2))
(node (ref U1) (pin 8))
(node (ref C12) (pin 2))
(node (ref C11) (pin 2))
(node (ref C10) (pin 2))
(node (ref C9) (pin 2))
(node (ref C8) (pin 1))
(node (ref L1) (pin 2))
(node (ref R26) (pin 1))
(node (ref U2) (pin 8))
(node (ref R30) (pin 2))
(node (ref U3) (pin 8))
(node (ref C15) (pin 2))
(node (ref U6) (pin 7)))
(net (code 24) (name "Net-(C1-Pad2)")
(node (ref P2) (pin 3))
(node (ref JYOUT1) (pin 2))
(node (ref C1) (pin 2)))
(net (code 25) (name "Net-(R19-Pad2)")
(node (ref R19) (pin 2))
(node (ref R21) (pin 2))
(node (ref U3) (pin 2))
(node (ref R21_2) (pin 2)))
(net (code 26) (name "Net-(R11-Pad2)")
(node (ref R14) (pin 2))
(node (ref R11) (pin 2))
(node (ref R14_2) (pin 2))
(node (ref U2) (pin 2)))
(net (code 27) (name "Net-(R4-Pad2)")
(node (ref R4) (pin 2))
(node (ref R6) (pin 2))
(node (ref U1) (pin 2))
(node (ref R6_2) (pin 2)))
(net (code 28) (name /~CSYNC)
(node (ref U5) (pin 1))
(node (ref R24) (pin 1))
(node (ref U4) (pin 13)))
(net (code 29) (name /V)
(node (ref JVIN1) (pin 2))
(node (ref U4) (pin 4))
(node (ref P1) (pin 5)))
(net (code 30) (name /YIN)
(node (ref JYIN1) (pin 2))
(node (ref P1) (pin 3))
(node (ref RYIN1) (pin 1))
(node (ref C6) (pin 1))
(node (ref JYINSHORT1) (pin 1)))
(net (code 31) (name "Net-(JUSHORT1-Pad1)")
(node (ref U4) (pin 9))
(node (ref RUIN1) (pin 1))
(node (ref JUSHORT1) (pin 1)))
(net (code 32) (name "Net-(JVSHORT1-Pad1)")
(node (ref U4) (pin 3))
(node (ref JVSHORT1) (pin 1))
(node (ref RVIN1) (pin 1)))
(net (code 33) (name "Net-(JVSHORT1-Pad2)")
(node (ref R28) (pin 2))
(node (ref JVSHORT1) (pin 2))
(node (ref RVIN1) (pin 2))
(node (ref U2) (pin 3)))
(net (code 34) (name "Net-(JUSHORT1-Pad2)")
(node (ref RUIN1) (pin 2))
(node (ref U3) (pin 3))
(node (ref JUSHORT1) (pin 2))
(node (ref R29) (pin 2)))
(net (code 35) (name "Net-(JYINSHORT1-Pad2)")
(node (ref JYINSHORT1) (pin 2))
(node (ref RYIN1) (pin 2))
(node (ref U1) (pin 3))
(node (ref RYIN2) (pin 2)))
(net (code 36) (name "Net-(U5-Pad3)")
(node (ref U5) (pin 3)))
(net (code 37) (name "Net-(P3-Pad2)")
(node (ref R2) (pin 2))
(node (ref P3) (pin 2)))
(net (code 38) (name "Net-(P4-Pad2)")
(node (ref P4) (pin 2))
(node (ref R9) (pin 2)))
(net (code 39) (name "Net-(P5-Pad2)")
(node (ref P5) (pin 2))
(node (ref R17) (pin 2)))
(net (code 40) (name "Net-(U5-Pad7)")
(node (ref U5) (pin 7)))
(net (code 41) (name /U)
(node (ref U4) (pin 11))
(node (ref P1) (pin 4))
(node (ref U4) (pin 8))
(node (ref JUIN1) (pin 2)))
(net (code 42) (name "Net-(R12-Pad1)")
(node (ref R15_2) (pin 1))
(node (ref R12_2) (pin 1))
(node (ref R13_2) (pin 2))
(node (ref U2) (pin 6))
(node (ref R12) (pin 1))
(node (ref R15) (pin 1))
(node (ref R13) (pin 2)))
(net (code 43) (name /B)
(node (ref U3) (pin 7))
(node (ref P5) (pin 1))
(node (ref R20) (pin 1)))
(net (code 44) (name /B-Y)
(node (ref R15_2) (pin 2))
(node (ref R15) (pin 2))
(node (ref R19) (pin 1))
(node (ref U3) (pin 1))
(node (ref P5) (pin 3))
(node (ref R18) (pin 2)))
(net (code 45) (name /R-Y)
(node (ref R3) (pin 1))
(node (ref R12_2) (pin 2))
(node (ref R12) (pin 2))
(node (ref P4) (pin 3))
(node (ref U2) (pin 1))
(node (ref R11) (pin 1)))
(net (code 46) (name /Vref)
(node (ref U6) (pin 6))
(node (ref U6) (pin 2))
(node (ref R14_2) (pin 1))
(node (ref R14) (pin 1))
(node (ref RYIN2) (pin 1))
(node (ref R22) (pin 1))
(node (ref R21) (pin 1))
(node (ref R7) (pin 2))
(node (ref R10) (pin 2))
(node (ref R29) (pin 1))
(node (ref R6) (pin 1))
(node (ref R28) (pin 1))
(node (ref R21_2) (pin 1))