-
Notifications
You must be signed in to change notification settings - Fork 0
/
SoundX.net
1296 lines (1296 loc) · 45.8 KB
/
SoundX.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/sukko/Documents/kicad/SoundX/SoundX.sch)
(date "Sat 23 Dec 2023 11:56:42 CET")
(tool "Eeschema 5.1.12")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title SoundX)
(company SukkoPera)
(rev 1git)
(date 2023-08-19)
(source SoundX.sch)
(comment (number 1) (value "Inspired by the C64 Sound Expander"))
(comment (number 2) (value ""))
(comment (number 3) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 4) (value "")))))
(components
(comp (ref CN1)
(value EDGE_CONN)
(footprint SoundX:C16_Cart_Conn)
(datasheet DOCUMENTATION)
(fields
(field (name MouserPN) -)
(field (name Notes) COMMON))
(libsource (lib C16-Exp-Port) (part C16-Exp-Port) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 656D203A))
(comp (ref U1)
(value GAL20V8)
(footprint Package_DIP:DIP-24_W7.62mm_Socket_LongPads)
(fields
(field (name MouserPN) 556-AF22LV10CQZ-30PU)
(field (name Notes) COMMON))
(libsource (lib Logic_Programmable) (part PAL20L8) (description "Programmable Logic Array, DIP-24"))
(sheetpath (names /) (tstamps /))
(tstamp 657CC05B))
(comp (ref CN2)
(value RAW_AUDIO_OUT)
(footprint SoundX:AudioJack_SJ1-3525N)
(datasheet ~)
(fields
(field (name MouserPN) 490-SJ1-3525N)
(field (name Notes) OPL)
(field (name Value) AUDIO_OUT))
(libsource (lib Connector) (part AudioJack3_SwitchTR) (description "Audio Jack, 3 Poles (Stereo / TRS), Switched TR Poles (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 65838344))
(comp (ref V1)
(value LOGO)
(footprint SoundX:logo)
(fields
(field (name MouserPN) -)
(field (name Notes) -))
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6585022A))
(comp (ref V0)
(value CC-BY-NC-SA)
(footprint SoundX:cc_by_nc_sa)
(fields
(field (name MouserPN) -)
(field (name Notes) -))
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 65850231))
(comp (ref C9)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0)
(field (name Notes) OPL))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6587E7B1))
(comp (ref C8)
(value 100u)
(footprint Capacitor_THT:CP_Radial_D6.3mm_P2.50mm)
(datasheet ~)
(fields
(field (name MouserPN) 710-860020573008)
(field (name Notes) COMMON))
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6587E7BB))
(comp (ref C7)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0)
(field (name Notes) OPL))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 65916A66))
(comp (ref C4)
(value 10n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name Notes) OPL))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 65916A6C))
(comp (ref FB3)
(value FERRITE)
(footprint Inductor_THT:L_Radial_D6.0mm_P4.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 875-28C0236-0EW-10)
(field (name Notes) OPL))
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 65916A82))
(comp (ref R7)
(value 47)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) OPL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 65916A89))
(comp (ref FB2)
(value FERRITE)
(footprint Inductor_THT:L_Radial_D6.0mm_P4.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 875-28C0236-0EW-10)
(field (name Notes) OPL))
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 65916A90))
(comp (ref JP1)
(value JMP_OSC_PIN1)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(fields
(field (name MouserPN) -)
(field (name Notes) OPL))
(libsource (lib Jumper) (part Jumper_2_Open) (description "Jumper, 2-pole, open"))
(sheetpath (names /) (tstamps /))
(tstamp 65916A98))
(comp (ref Y1)
(value "3.579545 MHz")
(footprint SoundX:Oscillator_DIP-8+14)
(datasheet http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf)
(fields
(field (name MouserPN) 774-MXO45-3C-16.0)
(field (name Notes) OPL))
(libsource (lib Oscillator) (part CXO_DIP14) (description "Crystal Clock Oscillator, DIP14-style metal package"))
(sheetpath (names /) (tstamps /))
(tstamp 65916A60))
(comp (ref C3)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0)
(field (name Notes) OPL))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6587E7D7))
(comp (ref U3)
(value YM3526)
(footprint Package_DIP:DIP-24_W15.24mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) OPL))
(libsource (lib YM3526) (part YM3526) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 68E06BFC))
(comp (ref U6)
(value YM3014)
(footprint Package_DIP:DIP-8_W7.62mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) OPL))
(libsource (lib YM3014) (part YM3014) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 68E1869B))
(comp (ref U7)
(value LM324)
(footprint Package_DIP:DIP-14_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/ds/symlink/lm2902-n.pdf)
(fields
(field (name MouserPN) 595-LM324N)
(field (name Notes) OPL))
(libsource (lib Amplifier_Operational) (part LM324) (description "Low-Power, Quad-Operational Amplifiers, DIP-14/SOIC-14/SSOP-14"))
(sheetpath (names /) (tstamps /))
(tstamp 68E1A2BB))
(comp (ref C5)
(value 10u)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 710-860010472002)
(field (name Notes) OPL))
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 690C08BD))
(comp (ref C1)
(value 10u)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 710-860010472002)
(field (name Notes) OPL))
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 69292563))
(comp (ref R3)
(value 33k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) OPL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 693006B1))
(comp (ref R4)
(value 33k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) OPL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 69316664))
(comp (ref C6)
(value 470p)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28C0G1H471JNT6)
(field (name Notes) OPL))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 693B6977))
(comp (ref C2)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0)
(field (name Notes) COMMON))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6587E7FA))
(comp (ref JP2)
(value JMP_STEREO)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(fields
(field (name MouserPN) -)
(field (name Notes) OPL))
(libsource (lib Device) (part Jumper_NO_Small) (description "Jumper, normally open, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 64EA3584))
(comp (ref C10)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0)
(field (name Notes) OPL))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 64FB24DE))
(comp (ref C11)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0)
(field (name Notes) MIDI))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6505B49D))
(comp (ref U2)
(value MOS_6551_ACIA)
(footprint Package_DIP:DIP-28_W15.24mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) MIDI))
(libsource (lib W65C51S) (part W65C51S) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6505B4D5))
(comp (ref CN4)
(value CONN_MIDI_OUT)
(footprint SoundX:DIN5)
(datasheet http://www.mouser.com/ds/2/18/40_c091_abd_e-75918.pdf)
(fields
(field (name Notes) MIDI))
(libsource (lib Connector) (part DIN-5_180degree) (description "5-pin DIN connector (5-pin DIN-5 stereo)"))
(sheetpath (names /) (tstamps /))
(tstamp 65181AFA))
(comp (ref R12)
(value 220)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) MIDI))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 65181B10))
(comp (ref R11)
(value 220)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) MIDI))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 65181B17))
(comp (ref JP3)
(value JMP_POM_GND)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(fields
(field (name MouserPN) -)
(field (name Notes) MIDI))
(libsource (lib Device) (part Jumper_NO_Small) (description "Jumper, normally open, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 65181B20))
(comp (ref JP4)
(value JMP_POM_VCC)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(fields
(field (name MouserPN) -)
(field (name Notes) MIDI))
(libsource (lib Device) (part Jumper_NO_Small) (description "Jumper, normally open, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 65181B2B))
(comp (ref R8)
(value 220)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) MIDI))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 65181B3F))
(comp (ref U4)
(value 6N138)
(footprint Package_DIP:DIP-8_W7.62mm_Socket_LongPads)
(datasheet http://www.onsemi.com/pub/Collateral/HCPL2731-D.pdf)
(fields
(field (name MouserPN) 859-6N138)
(field (name Notes) MIDI))
(libsource (lib Isolator) (part 6N138) (description "Low Input Current high Gain Split Darlington Optocouplers, -0.5V to 7V VDD, DIP-8"))
(sheetpath (names /) (tstamps /))
(tstamp 65181B48))
(comp (ref D1)
(value 1n4148)
(footprint Diode_THT:D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp)
(datasheet ~)
(fields
(field (name Notes) MIDI))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65181B4E))
(comp (ref R9)
(value 4.7k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) MIDI))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 65181B67))
(comp (ref CN3)
(value CONN_MIDI_IN)
(footprint SoundX:DIN5)
(datasheet http://www.mouser.com/ds/2/18/40_c091_abd_e-75918.pdf)
(fields
(field (name Notes) MIDI))
(libsource (lib Connector) (part DIN-5_180degree) (description "5-pin DIN connector (5-pin DIN-5 stereo)"))
(sheetpath (names /) (tstamps /))
(tstamp 65181B74))
(comp (ref R10)
(value 220)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) MIDI))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 65181B80))
(comp (ref Y2)
(value 3M)
(footprint Crystal:Crystal_HC49-U_Vertical)
(datasheet ~)
(fields
(field (name MouserPN) 520-HCA300-SX)
(field (name Notes) MIDI))
(libsource (lib Device) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /) (tstamps /))
(tstamp 6505B4B6))
(comp (ref R16)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) OPL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 69269DC1))
(comp (ref C13)
(value 220p)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name Notes) OPL))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 65814F5E))
(comp (ref C12)
(value 22p)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name Notes) MIDI))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 65897051))
(comp (ref R1)
(value 1M)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) MIDI))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 658F263D))
(comp (ref FB1)
(value FERRITE)
(footprint Inductor_THT:L_Radial_D6.0mm_P4.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 875-28C0236-0EW-10)
(field (name Notes) COMMON))
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 65964389))
(comp (ref C14)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0)
(field (name Notes) OPL))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 65A039C1))
(comp (ref C15)
(value 10u)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 710-860010472002)
(field (name Notes) OPL))
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 65AC9FB0))
(comp (ref R5)
(value 15k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) OPL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6919D14D))
(comp (ref JP5)
(value JMP_FILTER_BYPASS)
(footprint Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(fields
(field (name MouserPN) -)
(field (name Notes) OPL))
(libsource (lib Jumper) (part Jumper_3_Open) (description "Jumper, 3-pole, both open"))
(sheetpath (names /) (tstamps /))
(tstamp 65B030FE))
(comp (ref R15)
(value 4.7k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) OPL))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 64FE6F37))
(comp (ref RV1)
(value 47k)
(footprint SoundX:Pot_Bourns_3306P)
(datasheet ~)
(fields
(field (name MouserPN) 652-3306P-1-473)
(field (name Notes) OPL))
(libsource (lib Device) (part R_POT) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 650E791F)))
(libparts
(libpart (lib Amplifier_Operational) (part LM2902)
(aliases
(alias LM324)
(alias TLC274)
(alias TLC279)
(alias TL074)
(alias LM324A)
(alias MCP6004)
(alias TL084)
(alias TL064)
(alias LMV324)
(alias LMC6484)
(alias MCP604)
(alias MC33079)
(alias MC33174)
(alias MC33179)
(alias OPA1604)
(alias OPA1679)
(alias OPA4134)
(alias OPA4340UA)
(alias OPA4376)
(alias MCP6L94)
(alias TSV914)
(alias ADA4807-4)
(alias TSV994))
(description "Low-Power, Quad-Operational Amplifiers, DIP-14/SOIC-14/SSOP-14")
(docs http://www.ti.com/lit/ds/symlink/lm2902-n.pdf)
(footprints
(fp SOIC*3.9x8.7mm*P1.27mm*)
(fp DIP*W7.62mm*)
(fp TSSOP*4.4x5mm*P0.65mm*)
(fp SSOP*5.3x6.2mm*P0.65mm*)
(fp MSOP*3x3mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) LM2902))
(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 ~) (type output))
(pin (num 9) (name -) (type input))
(pin (num 10) (name +) (type input))
(pin (num 11) (name V-) (type power_in))
(pin (num 12) (name +) (type input))
(pin (num 13) (name -) (type input))
(pin (num 14) (name ~) (type output))))
(libpart (lib C16-Exp-Port) (part C16-Exp-Port)
(fields
(field (name Reference) J)
(field (name Value) C16-Exp-Port)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name GND) (type power_out))
(pin (num 2) (name VCC) (type power_out))
(pin (num 3) (name VCC) (type passive))
(pin (num 4) (name /IRQ) (type input))
(pin (num 5) (name R/W) (type output))
(pin (num 6) (name C1HI) (type output))
(pin (num 7) (name C2LOW) (type output))
(pin (num 8) (name C2HI) (type output))
(pin (num 9) (name /CS1) (type output))
(pin (num 10) (name /CS0) (type output))
(pin (num 11) (name /CAS) (type output))
(pin (num 12) (name MUX) (type output))
(pin (num 13) (name BA) (type output))
(pin (num 14) (name D7) (type 3state))
(pin (num 15) (name D6) (type 3state))
(pin (num 16) (name D5) (type 3state))
(pin (num 17) (name D4) (type 3state))
(pin (num 18) (name D3) (type 3state))
(pin (num 19) (name D2) (type 3state))
(pin (num 20) (name D1) (type 3state))
(pin (num 21) (name D0) (type 3state))
(pin (num 22) (name AEC) (type output))
(pin (num 23) (name EXT_AUDIO) (type input))
(pin (num 24) (name PHI2) (type output))
(pin (num 25) (name GND) (type passive))
(pin (num A) (name GND) (type passive))
(pin (num AA) (name NC) (type NotConnected))
(pin (num B) (name C1LOW) (type output))
(pin (num BB) (name NC) (type NotConnected))
(pin (num C) (name /BRESET) (type openCol))
(pin (num CC) (name GND) (type passive))
(pin (num D) (name /RAS) (type output))
(pin (num E) (name PHI0) (type output))
(pin (num F) (name A15) (type 3state))
(pin (num H) (name A14) (type 3state))
(pin (num J) (name A13) (type 3state))
(pin (num K) (name A12) (type 3state))
(pin (num L) (name A11) (type 3state))
(pin (num M) (name A10) (type 3state))
(pin (num N) (name A9) (type 3state))
(pin (num P) (name A8) (type 3state))
(pin (num R) (name A7) (type 3state))
(pin (num S) (name A6) (type 3state))
(pin (num T) (name A5) (type 3state))
(pin (num U) (name A4) (type 3state))
(pin (num V) (name A3) (type 3state))
(pin (num W) (name A2) (type 3state))
(pin (num X) (name A1) (type 3state))
(pin (num Y) (name A0) (type 3state))
(pin (num Z) (name NC) (type NotConnected))))
(libpart (lib Connector) (part AudioJack3_SwitchTR)
(description "Audio Jack, 3 Poles (Stereo / TRS), Switched TR Poles (Normalling)")
(docs ~)
(footprints
(fp Jack*))
(fields
(field (name Reference) J)
(field (name Value) AudioJack3_SwitchTR))
(pins
(pin (num R) (name ~) (type passive))
(pin (num RN) (name ~) (type passive))
(pin (num S) (name ~) (type passive))
(pin (num T) (name ~) (type passive))
(pin (num TN) (name ~) (type passive))))
(libpart (lib Connector) (part DIN-5_180degree)
(description "5-pin DIN connector (5-pin DIN-5 stereo)")
(docs http://www.mouser.com/ds/2/18/40_c091_abd_e-75918.pdf)
(footprints
(fp DIN*))
(fields
(field (name Reference) J)
(field (name Value) DIN-5_180degree))
(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))))
(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 CP1)
(description "Polarized capacitor, US symbol")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP1))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Crystal)
(description "Two pin crystal")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part D)
(description Diode)
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part Ferrite_Bead_Small)
(description "Ferrite bead, small symbol")
(docs ~)
(footprints
(fp Inductor_*)
(fp L_*)
(fp *Ferrite*))
(fields
(field (name Reference) FB)
(field (name Value) Ferrite_Bead_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Jumper_NO_Small)
(description "Jumper, normally open, small symbol")
(docs ~)
(footprints
(fp SolderJumper*Open*)
(fp Jumper*)
(fp TestPoint*2Pads*)
(fp TestPoint*Bridge*))
(fields
(field (name Reference) JP)
(field (name Value) Jumper_NO_Small))
(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 Device) (part R_POT)
(description Potentiometer)
(docs ~)
(footprints
(fp Potentiometer*))
(fields
(field (name Reference) RV)
(field (name Value) R_POT))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib Isolator) (part 6N138)
(aliases
(alias 6N139))
(description "Low Input Current high Gain Split Darlington Optocouplers, -0.5V to 7V VDD, DIP-8")
(docs http://www.onsemi.com/pub/Collateral/HCPL2731-D.pdf)
(footprints
(fp DIP*W7.62mm*)
(fp SMDIP*W9.53mm*))
(fields
(field (name Reference) U)
(field (name Value) 6N138))
(pins
(pin (num 1) (name NC) (type NotConnected))
(pin (num 2) (name C1) (type passive))
(pin (num 3) (name C2) (type passive))
(pin (num 4) (name NC) (type NotConnected))
(pin (num 5) (name GND) (type passive))
(pin (num 6) (name VO2) (type passive))
(pin (num 7) (name VO1) (type passive))
(pin (num 8) (name VCC) (type passive))))
(libpart (lib Jumper) (part Jumper_2_Open)
(description "Jumper, 2-pole, open")
(docs ~)
(footprints
(fp Jumper*)
(fp TestPoint*2Pads*)
(fp TestPoint*Bridge*))
(fields
(field (name Reference) JP)
(field (name Value) Jumper_2_Open))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive))))
(libpart (lib Jumper) (part Jumper_3_Open)
(description "Jumper, 3-pole, both open")
(docs ~)
(footprints
(fp Jumper*)
(fp TestPoint*3Pads*)
(fp TestPoint*Bridge*))
(fields
(field (name Reference) JP)
(field (name Value) Jumper_3_Open))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name C) (type input))
(pin (num 3) (name B) (type passive))))
(libpart (lib Logic_Programmable) (part PAL20L8)
(description "Programmable Logic Array, DIP-24")
(footprints
(fp DIP*)
(fp PDIP*))
(fields
(field (name Reference) U)
(field (name Value) PAL20L8))
(pins
(pin (num 1) (name I1) (type input))
(pin (num 2) (name I2) (type input))
(pin (num 3) (name I3) (type input))
(pin (num 4) (name I4) (type input))
(pin (num 5) (name I5) (type input))
(pin (num 6) (name I6) (type input))
(pin (num 7) (name I7) (type input))
(pin (num 8) (name I8) (type input))
(pin (num 9) (name I9) (type input))
(pin (num 10) (name I10) (type input))
(pin (num 11) (name I11) (type input))
(pin (num 12) (name GND) (type power_in))
(pin (num 13) (name I13) (type input))
(pin (num 14) (name I14) (type input))
(pin (num 15) (name IO15) (type 3state))
(pin (num 16) (name IO16) (type 3state))
(pin (num 17) (name IO17) (type 3state))
(pin (num 18) (name IO18) (type 3state))
(pin (num 19) (name IO19) (type 3state))
(pin (num 20) (name I020) (type 3state))
(pin (num 21) (name IO21) (type 3state))
(pin (num 22) (name IO22) (type 3state))
(pin (num 23) (name I23) (type input))
(pin (num 24) (name VCC) (type power_in))))
(libpart (lib Oscillator) (part CXO_DIP14)
(aliases
(alias TFT680)
(alias GTXO-14T))
(description "Crystal Clock Oscillator, DIP14-style metal package")
(docs http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf)
(footprints
(fp Oscillator*DIP*14*))
(fields
(field (name Reference) X)
(field (name Value) CXO_DIP14)
(field (name Footprint) Oscillator:Oscillator_DIP-14))
(pins
(pin (num 1) (name EN) (type input))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name OUT) (type output))
(pin (num 14) (name Vcc) (type power_in))))
(libpart (lib W65C51S) (part W65C51S)
(fields
(field (name Reference) U)
(field (name Value) W65C51S)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name CS0) (type input))
(pin (num 3) (name ~CS1) (type input))
(pin (num 4) (name ~RESET) (type input))
(pin (num 5) (name RXC) (type BiDi))
(pin (num 6) (name XTLI) (type passive))
(pin (num 7) (name XTLO) (type passive))
(pin (num 8) (name ~RTS) (type output))
(pin (num 9) (name ~CTS) (type input))
(pin (num 10) (name TXD) (type output))
(pin (num 11) (name ~DTR) (type output))
(pin (num 12) (name RXD) (type input))
(pin (num 13) (name RS0) (type input))
(pin (num 14) (name RS1) (type input))
(pin (num 15) (name VCC) (type power_in))
(pin (num 16) (name ~DCD) (type input))
(pin (num 17) (name ~DSR) (type input))
(pin (num 18) (name D0) (type 3state))
(pin (num 19) (name D1) (type 3state))
(pin (num 20) (name D2) (type 3state))
(pin (num 21) (name D3) (type 3state))
(pin (num 22) (name D4) (type 3state))
(pin (num 23) (name D5) (type 3state))
(pin (num 24) (name D6) (type 3state))
(pin (num 25) (name D7) (type 3state))
(pin (num 26) (name ~IRQ) (type openCol))
(pin (num 27) (name PHI2) (type input))
(pin (num 28) (name R_~W) (type input))))
(libpart (lib YM3014) (part YM3014)
(fields
(field (name Reference) U)
(field (name Value) YM3014)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name VDD) (type power_in))
(pin (num 2) (name ANALOG_OUT) (type output))
(pin (num 3) (name LOAD) (type input))
(pin (num 4) (name SERIAL_IN) (type input))
(pin (num 5) (name CLOCK) (type input))
(pin (num 6) (name GND) (type power_in))
(pin (num 7) (name RB) (type output))
(pin (num 8) (name MP) (type input))))
(libpart (lib YM3526) (part YM3526)
(fields
(field (name Reference) U)
(field (name Value) YM3526)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name VDD) (type power_in))
(pin (num 2) (name ~IRQ) (type openCol))
(pin (num 3) (name ~RESET) (type input))
(pin (num 4) (name A0) (type input))
(pin (num 5) (name ~WR) (type input))
(pin (num 6) (name ~RD) (type input))
(pin (num 7) (name ~CS) (type input))
(pin (num 8) (name NC) (type NotConnected))
(pin (num 9) (name NC) (type NotConnected))
(pin (num 10) (name D0) (type 3state))
(pin (num 11) (name D1) (type 3state))
(pin (num 12) (name GND) (type power_in))
(pin (num 13) (name D2) (type 3state))
(pin (num 14) (name D3) (type 3state))
(pin (num 15) (name D4) (type 3state))
(pin (num 16) (name D5) (type 3state))
(pin (num 17) (name D6) (type 3state))
(pin (num 18) (name D7) (type 3state))
(pin (num 19) (name NC) (type NotConnected))
(pin (num 20) (name CLOCK_OUT) (type output))
(pin (num 21) (name AUDIO_OUT) (type output))
(pin (num 22) (name NC) (type NotConnected))
(pin (num 23) (name SYNC_OUT) (type output))
(pin (num 24) (name CLOCK) (type input))))
(libpart (lib void) (part Void)
(fields
(field (name Reference) V)
(field (name Value) Void))))
(libraries
(library (logical Amplifier_Operational)
(uri /usr/share/kicad/library/Amplifier_Operational.lib))
(library (logical C16-Exp-Port)
(uri /home/sukko/Documents/kicad/SoundX/libs/C16-Exp-Port.lib))
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical Isolator)
(uri /usr/share/kicad/library/Isolator.lib))
(library (logical Jumper)
(uri /usr/share/kicad/library/Jumper.lib))
(library (logical Logic_Programmable)
(uri /usr/share/kicad/library/Logic_Programmable.lib))
(library (logical Oscillator)
(uri /usr/share/kicad/library/Oscillator.lib))
(library (logical W65C51S)
(uri /home/sukko/Documents/kicad/SoundX/libs/W65C51S.lib))
(library (logical YM3014)
(uri /home/sukko/Documents/kicad/SoundX/libs/YM3014.lib))
(library (logical YM3526)
(uri /home/sukko/Documents/kicad/SoundX/libs/YM3526.lib))
(library (logical void)
(uri /home/sukko/Documents/kicad/SoundX/libs/void.lib)))
(nets
(net (code 1) (name +5V)
(node (ref FB1) (pin 2))
(node (ref U6) (pin 1))
(node (ref C3) (pin 1))
(node (ref U3) (pin 1))
(node (ref U1) (pin 24))
(node (ref C15) (pin 1))
(node (ref FB2) (pin 2))
(node (ref C10) (pin 1))
(node (ref C2) (pin 1))
(node (ref C8) (pin 1))
(node (ref C9) (pin 1))
(node (ref R10) (pin 2))
(node (ref U7) (pin 4))
(node (ref U4) (pin 8))
(node (ref R12) (pin 2))
(node (ref JP4) (pin 1))
(node (ref C11) (pin 1))
(node (ref U2) (pin 15))
(node (ref U2) (pin 2)))
(net (code 2) (name GND)
(node (ref R15) (pin 1))
(node (ref C4) (pin 2))
(node (ref U2) (pin 1))
(node (ref U1) (pin 12))
(node (ref C15) (pin 2))
(node (ref CN4) (pin 2))
(node (ref C14) (pin 2))
(node (ref Y1) (pin 7))
(node (ref C12) (pin 2))
(node (ref R16) (pin 1))
(node (ref C8) (pin 2))
(node (ref C9) (pin 2))
(node (ref C13) (pin 2))
(node (ref R9) (pin 1))
(node (ref CN2) (pin S))
(node (ref U2) (pin 16))
(node (ref U2) (pin 9))
(node (ref U3) (pin 12))
(node (ref C3) (pin 2))
(node (ref U4) (pin 5))
(node (ref C5) (pin 2))
(node (ref U7) (pin 11))
(node (ref C7) (pin 2))
(node (ref U2) (pin 17))
(node (ref JP3) (pin 1))
(node (ref C11) (pin 2))
(node (ref U6) (pin 6))
(node (ref CN1) (pin CC))
(node (ref CN1) (pin 1))
(node (ref C10) (pin 2))
(node (ref JP1) (pin 2))
(node (ref CN1) (pin 25))
(node (ref CN1) (pin A))