-
Notifications
You must be signed in to change notification settings - Fork 3
/
ReSeed.net
1514 lines (1514 loc) · 56 KB
/
ReSeed.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/ReSeed/ReSeed.sch)
(date "Sat 06 Apr 2024 12:12:21 CEST")
(tool "Eeschema 5.1.12")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title ReSeed)
(company SukkoPera/Kinmami)
(rev 2git)
(date 2023-02-09)
(source ReSeed.sch)
(comment (number 1) (value "Replica of Christian Schäffner (Solder)'s SID Card for the Commodore 16/+4"))
(comment (number 2) (value http://solder-synergy.de/plus4/hardware/index.html))
(comment (number 3) (value "Licensed under CC BY-NC-SA 4.0"))
(comment (number 4) (value "Thanks to all people on the Plus/4 World Forum!")))))
(components
(comp (ref U1)
(value MOS_8580)
(footprint Package_DIP:DIP-28_W15.24mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name MouserPN) ":)")
(field (name Value) MOS_8580))
(libsource (lib MOS_8580) (part MOS_8580) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6207B5C4))
(comp (ref U2)
(value CD74HCT4520E)
(footprint Package_DIP:DIP-16_W7.62mm_Socket_LongPads)
(datasheet http://www.intersil.com/content/dam/Intersil/documents/cd45/cd4518bms-20bms.pdf)
(fields
(field (name MouserPN) 595-CD74HCT4520E)
(field (name Notes) "Use old CD4520B if possible")
(field (name Value) CD74HCT4520E))
(libsource (lib 4xxx) (part 4520) (description "Dual Binary Up-Counter"))
(sheetpath (names /) (tstamps /))
(tstamp 6207DEAD))
(comp (ref U5)
(value TL497ACN)
(footprint Package_DIP:DIP-14_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/ds/symlink/tl497a.pdf)
(fields
(field (name MouserPN) 595-TL497ACNE4)
(field (name Value) TL497ACN))
(libsource (lib Regulator_Switching) (part TL497A) (description "500mA step up/step down switching regulator"))
(sheetpath (names /) (tstamps /))
(tstamp 62081408))
(comp (ref R8)
(value "3.3 1%/0.5W")
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 603-MFR50SFTE52-3R3)
(field (name Value) "3.3 1%/0.5W"))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 62099265))
(comp (ref C15)
(value 100p)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28C0G1H101JNT6)
(field (name Value) 100p))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6209EC07))
(comp (ref L1)
(value 100u)
(footprint Inductor_THT:L_Radial_D8.7mm_P5.00mm_Fastron_07HCP)
(datasheet ~)
(fields
(field (name MouserPN) 652-RLB0914-101KL)
(field (name Value) 100u))
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 620A22EF))
(comp (ref R9)
(value "12.7k 1%")
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 603-MFR-25FRF52-12K7)
(field (name Notes) "If U6 is not mounted use (IMPORTANT!) 11k for 6581 or (IMPORTANT!) 7.87k for 8580 (Tolerance = 1% in any case)")
(field (name Value) "12.7k 1%"))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 620A6D4F))
(comp (ref R10)
(value "1.2k 1%")
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 603-MF0207FTE52-1K2)
(field (name Value) "1.2k 1%"))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 620A853F))
(comp (ref C16)
(value 1000u/25V)
(footprint Capacitor_THT:CP_Radial_D10.0mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 710-860020475018)
(field (name Value) 1000u/25V))
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 620B0D59))
(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 Value) 100n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 620CAFA3))
(comp (ref C1)
(value 22n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H223KNT0)
(field (name Notes) "For 6581 use 470pF")
(field (name Value) 22n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 620D2341))
(comp (ref C2)
(value 22n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H223KNT0)
(field (name Notes) "For 6581 use 470pF")
(field (name Value) 22n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 620D3E15))
(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 Value) 100n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 620E8B15))
(comp (ref C13)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0)
(field (name Value) 100n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 621B6317))
(comp (ref R2)
(value 100)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 660-MF1/4LCT52R101G)
(field (name Value) 100))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6224D360))
(comp (ref R1)
(value 100)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 660-MF1/4LCT52R101G)
(field (name Value) 100))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6224C319))
(comp (ref C3)
(value 2.2n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28C0G1H222JNT6)
(field (name Notes) "For 6581 use 1.8nF")
(field (name Value) 2.2n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 622A92D6))
(comp (ref CN4)
(value DB9_MALE)
(footprint ReSeed:DB_9M)
(datasheet " ~")
(fields
(field (name Value) DB9_MALE))
(libsource (lib Connector) (part DB9_Male_MountingHoles) (description "9-pin male D-SUB connector, Mounting Hole"))
(sheetpath (names /) (tstamps /))
(tstamp 62082825))
(comp (ref CN1)
(value EDGE_CONNECTOR)
(footprint ReSeed:C16_Cart_Conn)
(datasheet DOCUMENTATION)
(fields
(field (name MouserPN) ---)
(field (name Value) EDGE_CONNECTOR))
(libsource (lib C16-Exp-Port) (part C16-Exp-Port) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 62403A40))
(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 Value) 100n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 629247BC))
(comp (ref R4)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 603-MFR-25FTF52-10K)
(field (name Value) 10k))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 63010374))
(comp (ref C5)
(value 1n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28C0G1H102JNT6)
(field (name Value) 1n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 630231DC))
(comp (ref Q1)
(value BC549C)
(footprint Package_TO_SOT_THT:TO-92_HandSolder)
(datasheet https://www.onsemi.com/pub/Collateral/BC550-D.pdf)
(fields
(field (name MouserPN) 512-BC549CTA)
(field (name Notes) "Either mount this or Q101, BC547 and BC548 would work but BC549 is low-noise")
(field (name Value) BC549C))
(libsource (lib Transistor_BJT) (part BC549) (description "0.1A Ic, 30V Vce, Small Signal NPN Transistor, TO-92"))
(sheetpath (names /) (tstamps /))
(tstamp 6305E4B6))
(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 Value) 470p))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 63071B14))
(comp (ref R5)
(value 1k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 603-MFR-25FBF52-1K)
(field (name Notes) "For 8580 do not mount R3")
(field (name Value) 1k))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 630725DE))
(comp (ref RV1)
(value 10k)
(footprint ReSeed:Pot_Bourns_3306P)
(datasheet ~)
(fields
(field (name MouserPN) 652-3306P-1-103)
(field (name Value) 10k))
(libsource (lib Device) (part R_POT) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 6310F5D4))
(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 Value) 100n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 633EF69E))
(comp (ref R7)
(value 100k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 603-MFR-25FBF52-100K)
(field (name Value) 100k))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 633EFCCD))
(comp (ref CN3)
(value AUDIO_IN)
(footprint ReSeed:AudioJack_SJ1-3525N)
(datasheet ~)
(fields
(field (name MouserPN) 490-SJ1-3525N)
(field (name Value) AUDIO_IN))
(libsource (lib Connector) (part AudioJack3_SwitchTR) (description "Audio Jack, 3 Poles (Stereo / TRS), Switched TR Poles (Normalling)"))
(sheetpath (names /) (tstamps /))
(tstamp 6393D5DC))
(comp (ref C19)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0)
(field (name Value) 100n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 63F74F81))
(comp (ref C18)
(value 100u/16V)
(footprint Capacitor_THT:CP_Radial_D6.3mm_P2.50mm)
(datasheet ~)
(fields
(field (name MouserPN) 710-860020573008)
(field (name Value) 100u/16V))
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 63F75867))
(comp (ref V0)
(value LOGO)
(footprint ReSeed:Logo)
(fields
(field (name MouserPN) ---)
(field (name Value) LOGO))
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 64138BAD))
(comp (ref V1)
(value LICENSE)
(footprint ReSeed:cc_by_nc_sa)
(fields
(field (name MouserPN) ---)
(field (name Value) LICENSE))
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 64138E7F))
(comp (ref CN2)
(value AUDIO_OUT)
(footprint ReSeed:AudioJack_SJ1-3525N)
(datasheet ~)
(fields
(field (name MouserPN) 490-SJ1-3525N)
(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 637FDCD2))
(comp (ref R3)
(value 1k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 603-MFR-25FBF52-1K)
(field (name Notes) "For 8580 do not mount R3")
(field (name Value) 1k))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 64257402))
(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 Value) 100n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 642BE109))
(comp (ref RV2)
(value 1M)
(footprint ReSeed:Pot_Bourns_3306P)
(datasheet ~)
(fields
(field (name MouserPN) 652-3306P-1-105)
(field (name Notes) "For 6581 do not mount")
(field (name Value) 1M))
(libsource (lib Device) (part R_POT) (description Potentiometer))
(sheetpath (names /) (tstamps /))
(tstamp 64350FB5))
(comp (ref R6)
(value 180k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 603-MF0207FTE52-180K)
(field (name Notes) "For 6581 do not mount")
(field (name Value) 180k))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6340C3F1))
(comp (ref SW1)
(value SW_DIGIFIX)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(fields
(field (name Notes) "For 6581 do not mount")
(field (name Value) SW_DIGIFIX))
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 6436DD9D))
(comp (ref C17)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0)
(field (name Value) 100n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6215D5D2))
(comp (ref C8)
(value 10u)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 710-860010472002)
(field (name Value) 10u))
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6310CD9B))
(comp (ref JP1)
(value JMP_GND_LIFT)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(fields
(field (name MouserPN) ---)
(field (name Value) JMP_GND_LIFT))
(libsource (lib Device) (part Jumper_NC_Small) (description "Jumper, normally closed, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 623495F8))
(comp (ref R11)
(value 100)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 660-MF1/4LCT52R101G)
(field (name Notes) "If using old CD4520 as U2 replace R11 with 0R")
(field (name Value) 100))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6310D8E4))
(comp (ref C20)
(value 470p)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28C0G1H471JNT6)
(field (name Notes) "If using old CD4520 as U2 do not mount C20")
(field (name Value) 470p))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 631442E0))
(comp (ref RN1)
(value 100)
(footprint Resistor_THT:R_Array_SIP10)
(datasheet http://www.vishay.com/docs/31509/csc.pdf)
(fields
(field (name MouserPN) 652-4610X-2LF-100)
(field (name Value) 100))
(libsource (lib Device) (part R_Pack05_SIP_Split) (description "5 resistor network, parallel topology, SIP package, split"))
(sheetpath (names /) (tstamps /))
(tstamp 63A2AA82))
(comp (ref RN2)
(value 4.7k)
(footprint Resistor_THT:R_Array_SIP6)
(datasheet http://www.vishay.com/docs/31509/csc.pdf)
(fields
(field (name MouserPN) 652-4606X-1LF-4.7K)
(field (name Notes) "Any value between 3.3-10K should be fine")
(field (name Value) 4.7k))
(libsource (lib Device) (part R_Network05) (description "5 resistor network, star topology, bussed resistors, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 638C9A62))
(comp (ref C12)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0)
(field (name Value) 100n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 62DC238F))
(comp (ref U4)
(value GAL16V8)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(fields
(field (name MouserPN) 556-AF16V8B15PU)
(field (name Value) GAL16V8))
(libsource (lib Logic_Programmable) (part GAL16V8) (description "Programmable Logic Array, DIP-20/SOIC-20/PLCC-20"))
(sheetpath (names /) (tstamps /))
(tstamp 620806D2))
(comp (ref U105)
(value STEPUP_MT3608)
(footprint ReSeed:ChineseUpstepperMT3608Style)
(datasheet DOCUMENTATION)
(fields
(field (name Notes) "If willing to use this, check wiki (Actually check it ANYWAY!)")
(field (name Value) STEPUP_MT3608))
(libsource (lib STEPUP_MT3608) (part STEPUP_MT3608) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 64104D7E))
(comp (ref JP2)
(value JMP_CNT_RST)
(footprint Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(fields
(field (name MouserPN) ---)
(field (name Value) JMP_CNT_RST))
(libsource (lib Jumper) (part Jumper_3_Open) (description "Jumper, 3-pole, both open"))
(sheetpath (names /) (tstamps /))
(tstamp 6370352A))
(comp (ref FB2)
(value 28C0236-0EW-10)
(footprint Inductor_THT:L_Radial_D6.0mm_P4.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 875-28C0236-0EW-10)
(field (name Value) 28C0236-0EW-10))
(libsource (lib Device) (part Ferrite_Bead) (description "Ferrite bead"))
(sheetpath (names /) (tstamps /))
(tstamp 6397475C))
(comp (ref FB1)
(value 28C0236-0EW-10)
(footprint Inductor_THT:L_Radial_D6.0mm_P4.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 875-28C0236-0EW-10)
(field (name Value) 28C0236-0EW-10))
(libsource (lib Device) (part Ferrite_Bead) (description "Ferrite bead"))
(sheetpath (names /) (tstamps /))
(tstamp 63A20D16))
(comp (ref U6)
(value LM7809)
(footprint ReSeed:TO-220-3_Vertical_Round)
(datasheet http://www.st.com/content/ccc/resource/technical/document/datasheet/41/4f/b3/b0/12/d4/47/88/CD00000444.pdf/files/CD00000444.pdf/jcr:content/translations/en.CD00000444.pdf)
(fields
(field (name MouserPN) 926-LM2940T-90/NOPB)
(field (name Notes) "For 6581 use LM7812, if not mounted short JP3 and (IMPORTANT!) see notes about R9 (IMPORTANT!)")
(field (name Value) LM7809))
(libsource (lib Regulator_Linear) (part L7809) (description "Positive 1.5A 35V Linear Regulator, Fixed Output 9V, TO-220/TO-263/TO-252"))
(sheetpath (names /) (tstamps /))
(tstamp 63BFD06D))
(comp (ref C21)
(value 10u)
(footprint Capacitor_THT:CP_Radial_D5.0mm_P2.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 710-860010472002)
(field (name Value) 10u))
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 63CD5C2D))
(comp (ref JP3)
(value JMP_REG_BYPASS)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(fields
(field (name MouserPN) ---)
(field (name Value) JMP_REG_BYPASS))
(libsource (lib Device) (part Jumper_NC_Small) (description "Jumper, normally closed, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 64133E86))
(comp (ref Q101)
(value 2SC1815)
(footprint Package_TO_SOT_THT:TO-92_HandSolder)
(datasheet https://media.digikey.com/pdf/Data%20Sheets/Toshiba%20PDFs/2SC1815.pdf)
(fields
(field (name MouserPN) 610-2SC1815-GR)
(field (name Notes) "Either mount this or Q1")
(field (name Value) 2SC1815))
(libsource (lib Transistor_BJT) (part 2SC1815) (description "0.15A Ic, 50V Vce, Low Noise Audio NPN Transistor, TO-92"))
(sheetpath (names /) (tstamps /))
(tstamp 63BEC2B2))
(comp (ref U3)
(value 74HCT245)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS245)
(fields
(field (name MouserPN) 595-SN74HCT245N)
(field (name Value) 74HCT245))
(libsource (lib 74xx) (part 74LS245) (description "Octal BUS Transceivers, 3-State outputs"))
(sheetpath (names /) (tstamps /))
(tstamp 62081D66))
(comp (ref RN3)
(value 10k)
(footprint Resistor_THT:R_Array_SIP4)
(datasheet http://www.vishay.com/docs/31509/csc.pdf)
(fields
(field (name MouserPN) 652-4604X-1LF-10K)
(field (name Value) 4.7k))
(libsource (lib Device) (part R_Network03) (description "3 resistor network, star topology, bussed resistors, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 63D44EA1))
(comp (ref C4)
(value 2.2n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28C0G1H222JNT6)
(field (name Notes) "For 6581 use 1.8nF")
(field (name Value) 2.2n))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 622AA502)))
(libparts
(libpart (lib 4xxx) (part 4520)
(description "Dual Binary Up-Counter")
(docs http://www.intersil.com/content/dam/Intersil/documents/cd45/cd4518bms-20bms.pdf)
(footprints
(fp DIP?16*))
(fields
(field (name Reference) U)
(field (name Value) 4520))
(pins
(pin (num 1) (name CK) (type input))
(pin (num 2) (name Enable) (type input))
(pin (num 3) (name Q1) (type output))
(pin (num 4) (name Q2) (type output))
(pin (num 5) (name Q3) (type output))
(pin (num 6) (name Q4) (type output))
(pin (num 7) (name Reset) (type input))
(pin (num 8) (name VSS) (type power_in))
(pin (num 9) (name CK) (type input))
(pin (num 10) (name Enable) (type input))
(pin (num 11) (name Q1) (type output))
(pin (num 12) (name Q2) (type output))
(pin (num 13) (name Q3) (type output))
(pin (num 14) (name Q4) (type output))
(pin (num 15) (name Reset) (type input))
(pin (num 16) (name VDD) (type power_in))))
(libpart (lib 74xx) (part 74LS245)
(aliases
(alias 74HC245))
(description "Octal BUS Transceivers, 3-State outputs")
(docs http://www.ti.com/lit/gpn/sn74LS245)
(footprints
(fp DIP?20*))
(fields
(field (name Reference) U)
(field (name Value) 74LS245))
(pins
(pin (num 1) (name A->B) (type input))
(pin (num 2) (name A0) (type 3state))
(pin (num 3) (name A1) (type 3state))
(pin (num 4) (name A2) (type 3state))
(pin (num 5) (name A3) (type 3state))
(pin (num 6) (name A4) (type 3state))
(pin (num 7) (name A5) (type 3state))
(pin (num 8) (name A6) (type 3state))
(pin (num 9) (name A7) (type 3state))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name B7) (type 3state))
(pin (num 12) (name B6) (type 3state))
(pin (num 13) (name B5) (type 3state))
(pin (num 14) (name B4) (type 3state))
(pin (num 15) (name B3) (type 3state))
(pin (num 16) (name B2) (type 3state))
(pin (num 17) (name B1) (type 3state))
(pin (num 18) (name B0) (type 3state))
(pin (num 19) (name CE) (type input))
(pin (num 20) (name VCC) (type power_in))))
(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 passive))
(pin (num 2) (name VCC) (type passive))
(pin (num 3) (name VCC) (type passive))
(pin (num 4) (name /IRQ) (type passive))
(pin (num 5) (name R/W) (type passive))
(pin (num 6) (name C1HI) (type passive))
(pin (num 7) (name C2LOW) (type passive))
(pin (num 8) (name C2HI) (type passive))
(pin (num 9) (name /CS1) (type passive))
(pin (num 10) (name /CS0) (type passive))
(pin (num 11) (name /CAS) (type passive))
(pin (num 12) (name MUX) (type passive))
(pin (num 13) (name BA) (type passive))
(pin (num 14) (name D7) (type passive))
(pin (num 15) (name D6) (type passive))
(pin (num 16) (name D5) (type passive))
(pin (num 17) (name D4) (type passive))
(pin (num 18) (name D3) (type passive))
(pin (num 19) (name D2) (type passive))
(pin (num 20) (name D1) (type passive))
(pin (num 21) (name D0) (type passive))
(pin (num 22) (name AEC) (type passive))
(pin (num 23) (name EXT_AUDIO) (type passive))
(pin (num 24) (name PHI2) (type passive))
(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 passive))
(pin (num BB) (name NC) (type NotConnected))
(pin (num C) (name /BRESET) (type passive))
(pin (num CC) (name GND) (type passive))
(pin (num D) (name /RAS) (type passive))
(pin (num E) (name PHI0) (type passive))
(pin (num F) (name A15) (type passive))
(pin (num H) (name A14) (type passive))
(pin (num J) (name A13) (type passive))
(pin (num K) (name A12) (type passive))
(pin (num L) (name A11) (type passive))
(pin (num M) (name A10) (type passive))
(pin (num N) (name A9) (type passive))
(pin (num P) (name A8) (type passive))
(pin (num R) (name A7) (type passive))
(pin (num S) (name A6) (type passive))
(pin (num T) (name A5) (type passive))
(pin (num U) (name A4) (type passive))
(pin (num V) (name A3) (type passive))
(pin (num W) (name A2) (type passive))
(pin (num X) (name A1) (type passive))
(pin (num Y) (name A0) (type passive))
(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 Conn_01x03_Male)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_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))))
(libpart (lib Connector) (part DB9_Male_MountingHoles)
(description "9-pin male D-SUB connector, Mounting Hole")
(docs " ~")
(footprints
(fp DSUB*Male*))
(fields
(field (name Reference) J)
(field (name Value) DB9_Male_MountingHoles))
(pins
(pin (num 0) (name PAD) (type passive))
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))
(pin (num 5) (name 5) (type passive))
(pin (num 6) (name 6) (type passive))
(pin (num 7) (name 7) (type passive))
(pin (num 8) (name 8) (type passive))
(pin (num 9) (name 9) (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 Ferrite_Bead)
(description "Ferrite bead")
(docs ~)
(footprints
(fp Inductor_*)
(fp L_*)
(fp *Ferrite*))
(fields
(field (name Reference) FB)
(field (name Value) Ferrite_Bead))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Jumper_NC_Small)
(description "Jumper, normally closed, small symbol")
(docs ~)
(footprints
(fp SolderJumper*Bridged*)
(fp Jumper*)
(fp TestPoint*2Pads*)
(fp TestPoint*Bridge*))
(fields
(field (name Reference) JP)
(field (name Value) Jumper_NC_Small))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (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 Device) (part R_Network03)
(description "3 resistor network, star topology, bussed resistors, small symbol")
(docs http://www.vishay.com/docs/31509/csc.pdf)
(footprints
(fp R?Array?SIP*))
(fields
(field (name Reference) RN)
(field (name Value) R_Network03)
(field (name Footprint) Resistor_THT:R_Array_SIP4))
(pins
(pin (num 1) (name common) (type passive))
(pin (num 2) (name R1) (type passive))
(pin (num 3) (name R2) (type passive))
(pin (num 4) (name R3) (type passive))))
(libpart (lib Device) (part R_Network05)
(description "5 resistor network, star topology, bussed resistors, small symbol")
(docs http://www.vishay.com/docs/31509/csc.pdf)
(footprints
(fp R?Array?SIP*))
(fields
(field (name Reference) RN)
(field (name Value) R_Network05)
(field (name Footprint) Resistor_THT:R_Array_SIP6))
(pins
(pin (num 1) (name common) (type passive))
(pin (num 2) (name R1) (type passive))
(pin (num 3) (name R2) (type passive))
(pin (num 4) (name R3) (type passive))
(pin (num 5) (name R4) (type passive))
(pin (num 6) (name R5) (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 Device) (part R_Pack05_SIP_Split)
(description "5 resistor network, parallel topology, SIP package, split")
(docs http://www.vishay.com/docs/31509/csc.pdf)
(footprints
(fp R?Array?SIP*))
(fields
(field (name Reference) RN)
(field (name Value) R_Pack05_SIP_Split)
(field (name Footprint) Resistor_THT:R_Array_SIP10))
(pins
(pin (num 1) (name R1.1) (type passive))
(pin (num 2) (name R1.2) (type passive))
(pin (num 3) (name R2.1) (type passive))
(pin (num 4) (name R2.2) (type passive))
(pin (num 5) (name R3.1) (type passive))
(pin (num 6) (name R3.2) (type passive))
(pin (num 7) (name R4.1) (type passive))
(pin (num 8) (name R4.2) (type passive))
(pin (num 9) (name R5.1) (type passive))
(pin (num 10) (name R5.2) (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 GAL16V8)
(description "Programmable Logic Array, DIP-20/SOIC-20/PLCC-20")
(footprints
(fp DIP*)
(fp PDIP*)
(fp SOIC*)
(fp SO*)
(fp PLCC*))
(fields
(field (name Reference) U)
(field (name Value) GAL16V8))
(pins
(pin (num 1) (name I1/CLK) (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 GND) (type power_in))
(pin (num 11) (name I10/~OE~) (type input))
(pin (num 12) (name IO8) (type 3state))
(pin (num 13) (name IO7) (type 3state))
(pin (num 14) (name IO6) (type 3state))
(pin (num 15) (name IO5) (type 3state))
(pin (num 16) (name IO4) (type 3state))
(pin (num 17) (name I03) (type 3state))
(pin (num 18) (name IO2) (type 3state))
(pin (num 19) (name IO1) (type 3state))
(pin (num 20) (name VCC) (type power_in))))
(libpart (lib MOS_8580) (part MOS_8580)
(fields
(field (name Reference) U)
(field (name Value) MOS_8580)
(field (name Footprint) MODULE)
(field (name Datasheet) DOCUMENTATION))
(pins
(pin (num 1) (name CAP_1A) (type passive))
(pin (num 2) (name CAP_1B) (type passive))
(pin (num 3) (name CAP_2A) (type passive))
(pin (num 4) (name CAP_2B) (type passive))
(pin (num 5) (name ~RESET) (type input))
(pin (num 6) (name PHI2) (type input))
(pin (num 7) (name R/~W) (type input))
(pin (num 8) (name ~CS) (type input))
(pin (num 9) (name A0) (type input))
(pin (num 10) (name A1) (type input))
(pin (num 11) (name A2) (type input))
(pin (num 12) (name A3) (type input))
(pin (num 13) (name A4) (type input))
(pin (num 14) (name GND) (type power_in))
(pin (num 15) (name D0) (type 3state))
(pin (num 16) (name D1) (type 3state))
(pin (num 17) (name D2) (type 3state))
(pin (num 18) (name D3) (type 3state))
(pin (num 19) (name D4) (type 3state))
(pin (num 20) (name D5) (type 3state))
(pin (num 21) (name D6) (type 3state))
(pin (num 22) (name D7) (type 3state))
(pin (num 23) (name POTY) (type input))
(pin (num 24) (name POTX) (type input))
(pin (num 25) (name VCC) (type power_in))
(pin (num 26) (name AUDIO_IN) (type input))
(pin (num 27) (name AUDIO_OUT) (type output))
(pin (num 28) (name VDD) (type power_in))))
(libpart (lib Regulator_Linear) (part L7805)
(aliases
(alias L7806)
(alias L7808)
(alias L7885)