forked from SukkoPera/ReSeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReSeed.net
1138 lines (1138 loc) · 41.6 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 "Mon 24 Oct 2022 10:35:44 CEST")
(tool "Eeschema 5.1.12")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title ReSeed)
(company SukkoPera/Kinmami)
(rev 1git)
(date 2022-10-24)
(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 "")))))
(components
(comp (ref U1)
(value MOS_8580)
(footprint Package_DIP:DIP-28_W15.24mm_Socket_LongPads)
(datasheet DOCUMENTATION)
(fields
(field (name MouserPN) ":)"))
(libsource (lib MOS_8580) (part MOS_8580) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6207B5C4))
(comp (ref U2)
(value CD4520BE)
(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))
(libsource (lib 4xxx) (part 4520) (description "Dual Binary Up-Counter"))
(sheetpath (names /) (tstamps /))
(tstamp 6207DEAD))
(comp (ref U4)
(value GAL16V8)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(fields
(field (name MouserPN) " 556-AF16V8B15PU"))
(libsource (lib Logic_Programmable) (part GAL16V8) (description "Programmable Logic Array, DIP-20/SOIC-20/PLCC-20"))
(sheetpath (names /) (tstamps /))
(tstamp 620806D2))
(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 "))
(libsource (lib Regulator_Switching) (part TL497A) (description "500mA step up/step down switching regulator"))
(sheetpath (names /) (tstamps /))
(tstamp 62081408))
(comp (ref U3)
(value 74LS245)
(footprint Package_DIP:DIP-20_W7.62mm_Socket_LongPads)
(datasheet http://www.ti.com/lit/gpn/sn74LS245)
(fields
(field (name MouserPN) " 595-SN74HCT245N"))
(libsource (lib 74xx) (part 74LS245) (description "Octal BUS Transceivers, 3-State outputs"))
(sheetpath (names /) (tstamps /))
(tstamp 62081D66))
(comp (ref R8)
(value "1 1%/0.5W")
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 603-MF0207FRE52-1R))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 62099265))
(comp (ref C15)
(value 47p)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28C0G1H470JNT0))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6209EC07))
(comp (ref L1)
(value 330u)
(footprint Inductor_THT:L_Radial_D8.7mm_P5.00mm_Fastron_07HCP)
(datasheet ~)
(fields
(field (name MouserPN) " 652-RLB0914-331KL"))
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 620A22EF))
(comp (ref R9)
(value "7.87k 1%")
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(fields
(field (name MouserPN) 71-CMF557K8700FHEK))
(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))
(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))
(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))
(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))
(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))
(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))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 620E8B15))
(comp (ref RN1)
(value 3.3k)
(footprint Resistor_THT:R_Array_SIP9)
(datasheet http://www.vishay.com/docs/31509/csc.pdf)
(fields
(field (name MouserPN) 652-4609X-1LF-4.7K))
(libsource (lib Device) (part R_Network08) (description "8 resistor network, star topology, bussed resistors, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 62173765))
(comp (ref C13)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0))
(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 ~)
(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 ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6224C319))
(comp (ref C3)
(value 3.9n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28C0G1H392JNT6))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 622A92D6))
(comp (ref C4)
(value 3.9n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28C0G1H392JNT6))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 622AA502))
(comp (ref CN4)
(value DB9_MALE)
(footprint ReSeed:DB_9M)
(datasheet " ~")
(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) ---))
(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))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 629247BC))
(comp (ref C12)
(value 100n)
(footprint Capacitor_THT:C_Disc_D7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(fields
(field (name MouserPN) 810-FG28X7R1H104KNT0))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 62DC238F))
(comp (ref R4)
(value 10k)
(footprint Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(datasheet ~)
(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))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 630231DC))
(comp (ref Q1)
(value BC547C)
(footprint Package_TO_SOT_THT:TO-92_HandSolder)
(datasheet https://www.onsemi.com/pub/Collateral/BC550-D.pdf)
(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 ~)
(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 ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 630725DE))
(comp (ref RV1)
(value 10k)
(footprint ReSeed:Pot_Bourns_3306P)
(datasheet ~)
(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))
(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 ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 633EFCCD))
(comp (ref CN3)
(value AUDIO_IN)
(footprint ReSeed:AudioJack_SJ1-3525N)
(datasheet ~)
(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))
(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))
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 63F75867))
(comp (ref V0)
(value LOGO)
(footprint ReSeed:Logo)
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 64138BAD))
(comp (ref V1)
(value LICENSE)
(footprint ReSeed:cc_by_nc_sa)
(libsource (lib void) (part Void) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 64138E7F))
(comp (ref CN2)
(value AUDIO_OUT)
(footprint ReSeed:AudioJack_SJ1-3525N)
(datasheet ~)
(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 ~)
(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 ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 642BE109))
(comp (ref RV2)
(value 1M)
(footprint ReSeed:Pot_Bourns_3306P)
(datasheet ~)
(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 ~)
(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 ~)
(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))
(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))
(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 ~)
(libsource (lib Device) (part Jumper_NC_Small) (description "Jumper, normally closed, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 623495F8)))
(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 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_Network08)
(description "8 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_Network08)
(field (name Footprint) Resistor_THT:R_Array_SIP9))
(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))
(pin (num 7) (name R6) (type passive))
(pin (num 8) (name R7) (type passive))
(pin (num 9) (name R8) (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 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_Switching) (part TL497)
(aliases
(alias TL497A))
(description "500mA step up/step down/inverting switching voltage regulator, SIP-14/SOIC-14(W)")
(docs http://www.ti.com/lit/ds/symlink/tl497a.pdf)
(footprints
(fp DIP*W7.62mm*)
(fp SOIC*7.5x9.0mm*P1.27mm*)
(fp SOIC*3.9x8.7mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) TL497))
(pins
(pin (num 1) (name Comp) (type input))
(pin (num 2) (name Inhbt) (type input))
(pin (num 3) (name Freq) (type input))
(pin (num 4) (name Substrate) (type input))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name Cath.) (type passive))
(pin (num 7) (name Anode) (type passive))
(pin (num 8) (name EMITOUT) (type openEm))
(pin (num 9) (name NC) (type NotConnected))
(pin (num 10) (name COLOUT) (type openCol))
(pin (num 11) (name BASE) (type passive))
(pin (num 12) (name BaseDrv) (type passive))
(pin (num 13) (name Curr_Lim) (type input))
(pin (num 14) (name VCC) (type power_in))))
(libpart (lib Transistor_BJT) (part BC547)
(aliases
(alias BC546)
(alias BC548)
(alias BC549)
(alias BC550)
(alias BC337)
(alias BC338))
(description "0.1A Ic, 45V Vce, Small Signal NPN Transistor, TO-92")
(docs https://www.onsemi.com/pub/Collateral/BC550-D.pdf)
(footprints
(fp TO?92*))
(fields
(field (name Reference) Q)
(field (name Value) BC547)
(field (name Footprint) Package_TO_SOT_THT:TO-92_Inline))
(pins
(pin (num 1) (name C) (type passive))
(pin (num 2) (name B) (type input))
(pin (num 3) (name E) (type passive))))
(libpart (lib void) (part Void)
(fields
(field (name Reference) V)
(field (name Value) Void))))
(libraries
(library (logical 4xxx)
(uri /usr/share/kicad/library/4xxx.lib))
(library (logical 74xx)
(uri /usr/share/kicad/library/74xx.lib))
(library (logical C16-Exp-Port)
(uri /home/sukko/Documents/kicad/ReSeed/lib/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 Logic_Programmable)
(uri /usr/share/kicad/library/Logic_Programmable.lib))
(library (logical MOS_8580)
(uri /home/sukko/Documents/kicad/ReSeed/lib/MOS_8580.lib))
(library (logical Regulator_Switching)
(uri /usr/share/kicad/library/Regulator_Switching.lib))
(library (logical Transistor_BJT)
(uri /usr/share/kicad/library/Transistor_BJT.lib))
(library (logical void)
(uri /home/sukko/Documents/kicad/ReSeed/lib/void.lib)))
(nets
(net (code 1) (name /ext_audio)
(node (ref CN1) (pin 23))
(node (ref CN2) (pin TN)))
(net (code 2) (name /phi2)
(node (ref CN1) (pin 24))
(node (ref U4) (pin 17)))
(net (code 3) (name GND)
(node (ref C5) (pin 2))
(node (ref C12) (pin 2))
(node (ref C15) (pin 2))
(node (ref RV1) (pin 3))
(node (ref R5) (pin 1))
(node (ref CN3) (pin S))
(node (ref R7) (pin 1))
(node (ref C18) (pin 2))
(node (ref C19) (pin 2))
(node (ref R3) (pin 1))
(node (ref CN2) (pin S))
(node (ref R6) (pin 1))
(node (ref C7) (pin 1))
(node (ref JP1) (pin 1))
(node (ref C17) (pin 2))
(node (ref CN4) (pin 8))
(node (ref CN4) (pin 0))
(node (ref C4) (pin 2))
(node (ref C3) (pin 2))
(node (ref U3) (pin 10))
(node (ref U5) (pin 8))
(node (ref U5) (pin 5))
(node (ref U5) (pin 4))
(node (ref U5) (pin 2))
(node (ref C13) (pin 2))
(node (ref C11) (pin 2))
(node (ref CN1) (pin 1))
(node (ref C16) (pin 2))
(node (ref U1) (pin 14))
(node (ref U4) (pin 10))
(node (ref U2) (pin 8))
(node (ref U2) (pin 7))
(node (ref U2) (pin 1))
(node (ref R10) (pin 1))
(node (ref C10) (pin 2))
(node (ref CN1) (pin 25))
(node (ref C14) (pin 2))
(node (ref CN1) (pin A))
(node (ref CN1) (pin CC)))
(net (code 4) (name "Net-(U2-Pad13)")
(node (ref U2) (pin 13)))
(net (code 5) (name "Net-(U2-Pad14)")
(node (ref U2) (pin 14)))
(net (code 6) (name "Net-(U2-Pad4)")
(node (ref U2) (pin 4)))
(net (code 7) (name "Net-(U2-Pad5)")
(node (ref U2) (pin 5)))
(net (code 8) (name "Net-(U2-Pad6)")
(node (ref U2) (pin 6)))
(net (code 9) (name "Net-(C1-Pad1)")
(node (ref C1) (pin 1))
(node (ref U1) (pin 1)))
(net (code 10) (name /~reset)
(node (ref CN1) (pin C))
(node (ref U1) (pin 5)))
(net (code 11) (name /r_~w)
(node (ref U3) (pin 1))
(node (ref CN1) (pin 5))
(node (ref U1) (pin 7)))
(net (code 12) (name "Net-(U2-Pad12)")
(node (ref U2) (pin 12)))
(net (code 13) (name /half_mux)
(node (ref U2) (pin 3))
(node (ref U1) (pin 6)))
(net (code 14) (name +5V)
(node (ref U1) (pin 25))
(node (ref U4) (pin 20))
(node (ref C19) (pin 1))
(node (ref U2) (pin 16))
(node (ref U2) (pin 15))
(node (ref C12) (pin 1))
(node (ref U2) (pin 10))
(node (ref U2) (pin 9))
(node (ref U3) (pin 20))
(node (ref C14) (pin 1))
(node (ref C11) (pin 1))
(node (ref R8) (pin 1))
(node (ref C13) (pin 1))
(node (ref RN1) (pin 1))
(node (ref U5) (pin 14))
(node (ref C18) (pin 1))
(node (ref CN1) (pin 3))
(node (ref CN4) (pin 7))
(node (ref CN1) (pin 2)))
(net (code 15) (name /mux)
(node (ref CN1) (pin 12))
(node (ref U2) (pin 2)))
(net (code 16) (name "Net-(U2-Pad11)")
(node (ref U2) (pin 11)))
(net (code 17) (name "Net-(CN1-Pad22)")
(node (ref CN1) (pin 22)))
(net (code 18) (name "Net-(CN1-Pad13)")
(node (ref CN1) (pin 13)))
(net (code 19) (name "Net-(CN1-PadAA)")
(node (ref CN1) (pin AA)))
(net (code 20) (name "Net-(CN1-PadBB)")
(node (ref CN1) (pin BB)))
(net (code 21) (name /a7)
(node (ref U4) (pin 7))
(node (ref CN1) (pin R)))
(net (code 22) (name "Net-(CN1-PadB)")
(node (ref CN1) (pin B)))
(net (code 23) (name "Net-(CN1-PadD)")
(node (ref CN1) (pin D)))
(net (code 24) (name "Net-(CN1-PadE)")
(node (ref CN1) (pin E)))
(net (code 25) (name /a15)
(node (ref U4) (pin 1))
(node (ref CN1) (pin F)))
(net (code 26) (name /a14)
(node (ref CN1) (pin H))
(node (ref U4) (pin 19)))
(net (code 27) (name /a13)
(node (ref CN1) (pin J))
(node (ref U4) (pin 2)))
(net (code 28) (name /a12)
(node (ref U4) (pin 18))
(node (ref CN1) (pin K)))
(net (code 29) (name /a11)
(node (ref U4) (pin 3))
(node (ref CN1) (pin L)))
(net (code 30) (name /a10)
(node (ref U4) (pin 4))
(node (ref CN1) (pin M)))
(net (code 31) (name /a9)
(node (ref U4) (pin 5))
(node (ref CN1) (pin N)))
(net (code 32) (name /a8)
(node (ref CN1) (pin P))
(node (ref U4) (pin 6)))
(net (code 33) (name "Net-(CN1-Pad6)")
(node (ref CN1) (pin 6)))
(net (code 34) (name /a6)
(node (ref CN1) (pin S))
(node (ref U4) (pin 8)))
(net (code 35) (name /a5)
(node (ref U4) (pin 9))
(node (ref CN1) (pin T)))
(net (code 36) (name /a4)
(node (ref CN1) (pin U))
(node (ref U4) (pin 11))
(node (ref U1) (pin 13)))
(net (code 37) (name /a3)
(node (ref U1) (pin 12))
(node (ref CN1) (pin V)))
(net (code 38) (name /a2)
(node (ref U1) (pin 11))
(node (ref CN1) (pin W)))
(net (code 39) (name /a1)
(node (ref U1) (pin 10))
(node (ref CN1) (pin X)))
(net (code 40) (name /a0)
(node (ref U1) (pin 9))
(node (ref CN1) (pin Y)))
(net (code 41) (name "Net-(CN1-PadZ)")
(node (ref CN1) (pin Z)))
(net (code 42) (name "Net-(CN1-Pad10)")
(node (ref CN1) (pin 10)))
(net (code 43) (name "Net-(CN1-Pad11)")
(node (ref CN1) (pin 11)))
(net (code 44) (name "Net-(CN1-Pad4)")
(node (ref CN1) (pin 4)))
(net (code 45) (name "Net-(CN1-Pad7)")
(node (ref CN1) (pin 7)))
(net (code 46) (name "Net-(CN1-Pad8)")
(node (ref CN1) (pin 8)))
(net (code 47) (name "Net-(CN1-Pad9)")
(node (ref CN1) (pin 9)))
(net (code 48) (name "Net-(CN2-PadRN)")
(node (ref CN2) (pin RN)))
(net (code 49) (name "Net-(CN2-PadR)")
(node (ref RV1) (pin 2))
(node (ref CN2) (pin R))
(node (ref CN2) (pin T)))
(net (code 50) (name "Net-(CN3-PadTN)")
(node (ref CN3) (pin TN))
(node (ref JP1) (pin 2)))
(net (code 51) (name +9V)
(node (ref C7) (pin 2))
(node (ref U1) (pin 28))
(node (ref U5) (pin 6))
(node (ref C17) (pin 1))
(node (ref R9) (pin 2))
(node (ref C16) (pin 1))
(node (ref C10) (pin 1))
(node (ref Q1) (pin 1)))
(net (code 52) (name "Net-(CN3-PadRN)")
(node (ref CN3) (pin RN)))
(net (code 53) (name "Net-(SW1-Pad1)")
(node (ref SW1) (pin 1)))
(net (code 54) (name "Net-(R6-Pad2)")
(node (ref RV2) (pin 2))
(node (ref R6) (pin 2)))
(net (code 55) (name "Net-(RV2-Pad3)")
(node (ref RV2) (pin 3)))
(net (code 56) (name "Net-(RV2-Pad1)")
(node (ref SW1) (pin 3))
(node (ref RV2) (pin 1)))
(net (code 57) (name /~port)
(node (ref U3) (pin 19))
(node (ref U4) (pin 14)))
(net (code 58) (name /~sid)
(node (ref U1) (pin 8))