-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
audio.sch
3540 lines (3540 loc) · 88.8 KB
/
audio.sch
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
EESchema Schematic File Version 4
EELAYER 30 0
EELAYER END
$Descr A3 16535 11693
encoding utf-8
Sheet 5 14
Title "Rämixx500"
Date "2021-05-22"
Rev "1"
Comp "SukkoPera"
Comment1 "PAULA PREFERS THE TRADITIONAL MODES"
Comment2 ""
Comment3 ""
Comment4 "Licensed under CC BY-NC-SA 4.0"
$EndDescr
$Comp
L PAULA:PAULA U3
U 1 1 5D2DD129
P 3125 5655
F 0 "U3" H 3125 7170 50 0000 C CNN
F 1 "PAULA" H 3125 7079 50 0000 C CNN
F 2 "Package_DIP:DIP-48_W15.24mm_Socket_LongPads" H 3125 5655 50 0001 C CNN
F 3 "DOCUMENTATION" H 3125 5655 50 0001 C CNN
F 4 "CUSTOM" H 3125 5655 50 0001 C CNN "Section"
F 5 "Y" H 3125 5655 50 0001 C CNN "Required"
1 3125 5655
1 0 0 -1
$EndComp
Wire Wire Line
2375 4405 2055 4405
Wire Wire Line
2375 4505 2055 4505
Wire Wire Line
2375 4605 2055 4605
Wire Wire Line
2375 4805 2055 4805
Wire Wire Line
2375 4905 2055 4905
Wire Wire Line
2375 5005 2055 5005
Wire Wire Line
2375 5105 2055 5105
Wire Wire Line
2375 5205 2055 5205
Wire Wire Line
2375 5305 2055 5305
Wire Wire Line
2375 5405 2055 5405
Wire Wire Line
2375 5505 2055 5505
Wire Wire Line
2375 5605 2055 5605
Wire Wire Line
2375 5705 2055 5705
Wire Wire Line
2375 5805 2055 5805
Wire Wire Line
2375 5905 2055 5905
Wire Wire Line
2375 6005 2055 6005
Wire Wire Line
2375 6105 2055 6105
Wire Wire Line
2375 6205 2055 6205
Wire Wire Line
2375 6305 2055 6305
Wire Wire Line
2375 6455 2055 6455
Wire Wire Line
2375 6555 2055 6555
Wire Wire Line
2375 6655 2055 6655
Wire Wire Line
2375 6755 2055 6755
Wire Wire Line
2375 6855 2055 6855
Wire Wire Line
2375 6955 2055 6955
Wire Wire Line
2375 7055 2055 7055
Wire Wire Line
2375 7155 2055 7155
Entry Wire Line
1955 4305 2055 4405
Entry Wire Line
1955 4405 2055 4505
Entry Wire Line
1955 4505 2055 4605
Entry Wire Line
1955 4705 2055 4805
Entry Wire Line
1955 4805 2055 4905
Entry Wire Line
1955 4905 2055 5005
Entry Wire Line
1955 5005 2055 5105
Entry Wire Line
1955 5105 2055 5205
Entry Wire Line
1955 5205 2055 5305
Entry Wire Line
1955 5305 2055 5405
Entry Wire Line
1955 5405 2055 5505
Entry Wire Line
1955 5505 2055 5605
Entry Wire Line
1955 5605 2055 5705
Entry Wire Line
1955 5705 2055 5805
Entry Wire Line
1955 5805 2055 5905
Entry Wire Line
1955 5905 2055 6005
Entry Wire Line
1955 6005 2055 6105
Entry Wire Line
1955 6105 2055 6205
Entry Wire Line
1955 6205 2055 6305
Entry Wire Line
1955 6355 2055 6455
Entry Wire Line
1955 6455 2055 6555
Entry Wire Line
1955 6555 2055 6655
Entry Wire Line
1955 6655 2055 6755
Entry Wire Line
1955 6755 2055 6855
Entry Wire Line
1955 6855 2055 6955
Entry Wire Line
1955 6955 2055 7055
Entry Wire Line
1955 7055 2055 7155
Wire Bus Line
1955 4305 1525 4305
Text GLabel 1525 4305 0 50 Output ~ 0
~IPL[0..2]
Wire Bus Line
1955 4705 1525 4705
Text GLabel 1525 4705 0 50 BiDi ~ 0
DRD[0..15]
Wire Bus Line
1955 6355 1525 6355
Text GLabel 1525 6355 0 50 Input ~ 0
RGA[1..8]
Wire Wire Line
1525 7305 2375 7305
Wire Wire Line
1525 7505 2375 7505
Wire Wire Line
1525 7905 2375 7905
Wire Wire Line
1525 7705 2375 7705
Text GLabel 1525 7305 0 50 Output ~ 0
DMAL
Text GLabel 1525 7505 0 50 Input ~ 0
CCK
Text GLabel 1525 7705 0 50 Input ~ 0
CCKQ
Text GLabel 1525 7905 0 50 Input ~ 0
~RST
Wire Wire Line
3875 5405 4270 5405
Wire Wire Line
3875 5555 4270 5555
Wire Wire Line
3875 5705 4270 5705
Text GLabel 4270 5405 2 50 Input ~ 0
~INT6
Text GLabel 4270 5555 2 50 Input ~ 0
~INT3
Text GLabel 4270 5705 2 50 Input ~ 0
~INT2
Wire Wire Line
3875 6305 4270 6305
Text GLabel 4270 6155 2 50 Input ~ 0
~RXD
Text GLabel 4270 6305 2 50 Output ~ 0
~TXD
Wire Wire Line
3875 6705 4040 6705
Wire Wire Line
3875 6855 4270 6855
Wire Wire Line
3875 7005 4270 7005
Text GLabel 4270 6705 2 50 Input ~ 0
~DKRD
Text GLabel 4270 6855 2 50 Output ~ 0
~DKWD
Text GLabel 4270 7005 2 50 Output ~ 0
DKWE
Wire Wire Line
3875 7905 4030 7905
$Comp
L power:GND #PWR0130
U 1 1 5D2F1476
P 4330 8285
F 0 "#PWR0130" H 4330 8035 50 0001 C CNN
F 1 "GND" H 4335 8112 50 0000 C CNN
F 2 "" H 4330 8285 50 0001 C CNN
F 3 "" H 4330 8285 50 0001 C CNN
1 4330 8285
1 0 0 -1
$EndComp
$Comp
L power:GNDA #PWR0131
U 1 1 5D2F1C2A
P 4030 8000
F 0 "#PWR0131" H 4030 7750 50 0001 C CNN
F 1 "GNDA" H 4035 7827 50 0000 C CNN
F 2 "" H 4030 8000 50 0001 C CNN
F 3 "" H 4030 8000 50 0001 C CNN
1 4030 8000
1 0 0 -1
$EndComp
Wire Wire Line
4030 8000 4030 7905
Connection ~ 4030 7905
$Comp
L Device:Ferrite_Bead_Small FB802
U 1 1 5D2F2A18
P 4330 8070
F 0 "FB802" H 4430 8070 50 0000 L CNN
F 1 "Ferrite_Bead_Small" H 4430 8025 50 0001 L CNN
F 2 "Raemixx500:Ferrite_Axial_L9.0mm_D3.2mm_P12.70mm" V 4260 8070 50 0001 C CNN
F 3 "~" H 4330 8070 50 0001 C CNN
F 4 "FERRITE" H 4330 8070 50 0001 C CNN "EMI_FILTER_TYPE"
F 5 "Y" H 4330 8070 50 0001 C CNN "Required"
1 4330 8070
1 0 0 -1
$EndComp
Wire Wire Line
4330 7905 4330 7970
Wire Wire Line
4030 7905 4330 7905
Wire Wire Line
4330 8285 4330 8170
Text Notes 3875 8275 2 50 ~ 0
Note: Ground interconnection\nnear audio jacks.
$Comp
L db9_male_mountingholes:DB9_Male_MountingHoles CN1
U 1 1 5D2FF5E8
P 8775 2300
F 0 "CN1" H 8775 1608 50 0000 C CNN
F 1 "LEFT_JOY" H 8775 1699 50 0000 C CNN
F 2 "Raemixx500:DB_9M" H 8775 2300 50 0001 C CNN
F 3 " ~" H 8775 2300 50 0001 C CNN
F 4 "JOYSTICK" H 8775 2300 50 0001 C CNN "Section"
1 8775 2300
-1 0 0 1
$EndComp
Wire Wire Line
8475 2200 7755 2200
$Comp
L Device:C_Small C411
U 1 1 5D30478C
P 7985 3000
F 0 "C411" V 7885 2900 50 0000 L CNN
F 1 "1000p" V 8035 2720 50 0000 L CNN
F 2 "Raemixx500:C_Axial_L9.0mm_D3.2mm_P12.70mm" H 7985 3000 50 0001 C CNN
F 3 "~" H 7985 3000 50 0001 C CNN
F 4 "0.083" H 7985 3000 50 0001 C CNN "Cost"
F 5 "AVX" H 7985 3000 50 0001 C CNN "MFG Name"
F 6 "SA101C102KAR" H 7985 3000 50 0001 C CNN "MFG Part Num"
1 7985 3000
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C413
U 1 1 5D3068BD
P 8210 3000
F 0 "C413" V 8110 2900 50 0000 L CNN
F 1 "1000p" V 8255 2720 50 0000 L CNN
F 2 "Raemixx500:C_Axial_L9.0mm_D3.2mm_P12.70mm" H 8210 3000 50 0001 C CNN
F 3 "~" H 8210 3000 50 0001 C CNN
F 4 "0.083" H 8210 3000 50 0001 C CNN "Cost"
F 5 "AVX" H 8210 3000 50 0001 C CNN "MFG Name"
F 6 "SA101C102KAR" H 8210 3000 50 0001 C CNN "MFG Part Num"
1 8210 3000
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C412
U 1 1 5D306919
P 8435 3000
F 0 "C412" V 8335 2900 50 0000 L CNN
F 1 "1000p" V 8490 2720 50 0000 L CNN
F 2 "Raemixx500:C_Axial_L9.0mm_D3.2mm_P12.70mm" H 8435 3000 50 0001 C CNN
F 3 "~" H 8435 3000 50 0001 C CNN
F 4 "0.083" H 8435 3000 50 0001 C CNN "Cost"
F 5 "AVX" H 8435 3000 50 0001 C CNN "MFG Name"
F 6 "SA101C102KAR" H 8435 3000 50 0001 C CNN "MFG Part Num"
1 8435 3000
1 0 0 -1
$EndComp
Text Notes 15930 890 2 50 ~ 0
Audio Power\nSupply (+AV/-AV)
Wire Notes Line
14350 535 15955 535
Wire Notes Line
15955 535 15955 1345
Wire Notes Line
15955 1345 14350 1345
Wire Notes Line
14350 1345 14350 535
$Comp
L power:GNDA #PWR0132
U 1 1 5D31919F
P 15135 925
F 0 "#PWR0132" H 15135 675 50 0001 C CNN
F 1 "GNDA" H 15135 735 50 0000 C CNN
F 2 "" H 15135 925 50 0001 C CNN
F 3 "" H 15135 925 50 0001 C CNN
1 15135 925
1 0 0 -1
$EndComp
$Comp
L Device:EMI_Filter_LCL E416
U 1 1 5D321710
P 7090 2700
F 0 "E416" H 7090 2895 50 0000 C CNN
F 1 "470p" H 6910 2655 50 0000 C CNN
F 2 "Raemixx500:EMI_Filter_Long" V 7090 2700 50 0001 C CNN
F 3 "http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb" V 7090 2700 50 0001 C CNN
F 4 "W/FERRITE" H 7090 2700 50 0001 C CNN "EMI_FILTER_TYPE"
F 5 "0.233" H 7090 2700 50 0001 C CNN "Cost"
F 6 "MURATA" H 7090 2700 50 0001 C CNN "MFG Name"
F 7 "DSS1NB32A471Q91A" H 7090 2700 50 0001 C CNN "MFG Part Num"
1 7090 2700
1 0 0 -1
$EndComp
Wire Wire Line
7390 2600 8210 2600
Wire Wire Line
7390 2000 7985 2000
Wire Wire Line
9075 2700 9075 2995
Wire Wire Line
9075 2995 8625 2995
Wire Wire Line
8625 2995 8625 2800
Wire Wire Line
8625 2800 8435 2800
Wire Wire Line
8435 2900 8435 2800
Connection ~ 8435 2800
Wire Wire Line
8435 2800 7880 2800
Wire Wire Line
8210 2900 8210 2600
Connection ~ 8210 2600
Wire Wire Line
8210 2600 8475 2600
Wire Wire Line
7985 2900 7985 2000
Connection ~ 7985 2000
Wire Wire Line
7985 2000 8475 2000
$Comp
L Device:EMI_Filter_LCL E417
U 1 1 5D32E41F
P 7580 2900
F 0 "E417" H 7580 3095 50 0000 C CNN
F 1 "470p" H 7405 2855 50 0000 C CNN
F 2 "Raemixx500:EMI_Filter_Long" V 7580 2900 50 0001 C CNN
F 3 "http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb" V 7580 2900 50 0001 C CNN
F 4 "W/FERRITE" H 7580 2900 50 0001 C CNN "EMI_FILTER_TYPE"
F 5 "0.233" H 7580 2900 50 0001 C CNN "Cost"
F 6 "MURATA" H 7580 2900 50 0001 C CNN "MFG Name"
F 7 "DSS1NB32A471Q91A" H 7580 2900 50 0001 C CNN "MFG Part Num"
1 7580 2900
1 0 0 -1
$EndComp
Wire Wire Line
7090 2200 7090 2400
Wire Wire Line
7090 2800 7090 3000
Wire Wire Line
7090 3000 7580 3000
Wire Wire Line
7090 3000 6625 3000
Wire Wire Line
6625 3000 6625 2400
Wire Wire Line
6625 2400 7090 2400
Connection ~ 7090 3000
Connection ~ 7090 2400
Wire Wire Line
7090 2400 7455 2400
$Comp
L Device:R R401
U 1 1 5D349E96
P 6625 1660
F 0 "R401" V 6530 1560 50 0000 L CNN
F 1 "4.7" V 6625 1595 50 0000 L CNN
F 2 "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal" V 6555 1660 50 0001 C CNN
F 3 "~" H 6625 1660 50 0001 C CNN
1 6625 1660
1 0 0 -1
$EndComp
Wire Wire Line
6625 1810 6625 2200
$Comp
L power:VCC #PWR0134
U 1 1 5D351B3B
P 6625 1420
F 0 "#PWR0134" H 6625 1270 50 0001 C CNN
F 1 "VCC" H 6642 1593 50 0000 C CNN
F 2 "" H 6625 1420 50 0001 C CNN
F 3 "" H 6625 1420 50 0001 C CNN
1 6625 1420
1 0 0 -1
$EndComp
Wire Wire Line
6625 1420 6625 1510
Text Notes 6915 1690 2 50 ~ 0
1/2W
Text GLabel 5305 2000 0 50 Output ~ 0
~FIRE0
$Comp
L Jumper_3_Bridged23:Jumper_3_Bridged23 JP8
U 1 1 5D355FA7
P 5645 2440
F 0 "JP8" V 5645 2507 50 0000 L CNN
F 1 "Jumper_3_Bridged23" V 5690 2507 50 0001 L CNN
F 2 "Raemixx500:Jumper3-Bridged23" H 5645 2440 50 0001 C CNN
F 3 "~" H 5645 2440 50 0001 C CNN
F 4 "SKIP" H 5645 2440 50 0001 C CNN "MFG Name"
F 5 "SKIP" H 5645 2440 50 0001 C CNN "MFG Part Num"
F 6 "JMP" H 5645 2440 50 0001 C CNN "Section"
1 5645 2440
0 1 1 0
$EndComp
Wire Wire Line
5305 2000 5645 2000
Connection ~ 7455 2400
Wire Wire Line
7455 2400 8475 2400
Wire Wire Line
7090 3000 7090 3395
Wire Wire Line
7090 3395 7985 3395
Wire Wire Line
7985 3395 7985 3100
Wire Wire Line
8210 3100 8210 3395
Wire Wire Line
8210 3395 7985 3395
Connection ~ 7985 3395
Wire Wire Line
8210 3395 8435 3395
Wire Wire Line
8435 3395 8435 3100
Connection ~ 8210 3395
Wire Wire Line
8775 2900 8775 3395
Wire Wire Line
8775 3395 8435 3395
Connection ~ 8435 3395
$Comp
L db9_male_mountingholes:DB9_Male_MountingHoles CN2
U 1 1 5D36BC00
P 8775 4530
F 0 "CN2" H 8775 3838 50 0000 C CNN
F 1 "RIGHT_JOY" H 8775 3929 50 0000 C CNN
F 2 "Raemixx500:DB_9M" H 8775 4530 50 0001 C CNN
F 3 " ~" H 8775 4530 50 0001 C CNN
F 4 "JOYSTICK" H 8775 4530 50 0001 C CNN "Section"
1 8775 4530
-1 0 0 1
$EndComp
Wire Wire Line
8475 4430 7755 4430
$Comp
L Device:C_Small C421
U 1 1 5D36BC07
P 7985 5230
F 0 "C421" V 7885 5130 50 0000 L CNN
F 1 "1000p" V 8035 4950 50 0000 L CNN
F 2 "Raemixx500:C_Axial_L9.0mm_D3.2mm_P12.70mm" H 7985 5230 50 0001 C CNN
F 3 "~" H 7985 5230 50 0001 C CNN
F 4 "0.083" H 7985 5230 50 0001 C CNN "Cost"
F 5 "AVX" H 7985 5230 50 0001 C CNN "MFG Name"
F 6 "SA101C102KAR" H 7985 5230 50 0001 C CNN "MFG Part Num"
1 7985 5230
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C423
U 1 1 5D36BC0D
P 8210 5230
F 0 "C423" V 8110 5130 50 0000 L CNN
F 1 "1000p" V 8255 4950 50 0000 L CNN
F 2 "Raemixx500:C_Axial_L9.0mm_D3.2mm_P12.70mm" H 8210 5230 50 0001 C CNN
F 3 "~" H 8210 5230 50 0001 C CNN
F 4 "0.083" H 8210 5230 50 0001 C CNN "Cost"
F 5 "AVX" H 8210 5230 50 0001 C CNN "MFG Name"
F 6 "SA101C102KAR" H 8210 5230 50 0001 C CNN "MFG Part Num"
1 8210 5230
1 0 0 -1
$EndComp
$Comp
L Device:C_Small C422
U 1 1 5D36BC13
P 8435 5230
F 0 "C422" V 8335 5130 50 0000 L CNN
F 1 "1000p" V 8490 4950 50 0000 L CNN
F 2 "Raemixx500:C_Axial_L9.0mm_D3.2mm_P12.70mm" H 8435 5230 50 0001 C CNN
F 3 "~" H 8435 5230 50 0001 C CNN
F 4 "0.083" H 8435 5230 50 0001 C CNN "Cost"
F 5 "AVX" H 8435 5230 50 0001 C CNN "MFG Name"
F 6 "SA101C102KAR" H 8435 5230 50 0001 C CNN "MFG Part Num"
1 8435 5230
1 0 0 -1
$EndComp
$Comp
L Device:EMI_Filter_LCL E425
U 1 1 5D36BC19
P 7090 4330
F 0 "E425" H 7090 4525 50 0000 C CNN
F 1 "470p" H 6910 4285 50 0000 C CNN
F 2 "Raemixx500:EMI_Filter_Long" V 7090 4330 50 0001 C CNN
F 3 "http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb" V 7090 4330 50 0001 C CNN
F 4 "W/FERRITE" H 7090 4330 50 0001 C CNN "EMI_FILTER_TYPE"
F 5 "0.233" H 7090 4330 50 0001 C CNN "Cost"
F 6 "MURATA" H 7090 4330 50 0001 C CNN "MFG Name"
F 7 "DSS1NB32A471Q91A" H 7090 4330 50 0001 C CNN "MFG Part Num"
1 7090 4330
1 0 0 -1
$EndComp
Wire Wire Line
7390 4830 8210 4830
Wire Wire Line
7390 4230 7985 4230
Wire Wire Line
9075 4930 9075 5225
Wire Wire Line
9075 5225 8625 5225
Wire Wire Line
8625 5225 8625 5030
Wire Wire Line
8625 5030 8435 5030
Wire Wire Line
8435 5130 8435 5030
Connection ~ 8435 5030
Wire Wire Line
8435 5030 7880 5030
Wire Wire Line
8210 5130 8210 4830
Connection ~ 8210 4830
Wire Wire Line
8210 4830 8475 4830
Wire Wire Line
7985 5130 7985 4230
Connection ~ 7985 4230
Wire Wire Line
7985 4230 8475 4230
$Comp
L Device:EMI_Filter_LCL E427
U 1 1 5D36BC3A
P 7580 5130
F 0 "E427" H 7580 5325 50 0000 C CNN
F 1 "470p" H 7400 5085 50 0000 C CNN
F 2 "Raemixx500:EMI_Filter_Long" V 7580 5130 50 0001 C CNN
F 3 "http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb" V 7580 5130 50 0001 C CNN
F 4 "W/FERRITE" H 7580 5130 50 0001 C CNN "EMI_FILTER_TYPE"
F 5 "0.233" H 7580 5130 50 0001 C CNN "Cost"
F 6 "MURATA" H 7580 5130 50 0001 C CNN "MFG Name"
F 7 "DSS1NB32A471Q91A" H 7580 5130 50 0001 C CNN "MFG Part Num"
1 7580 5130
1 0 0 -1
$EndComp
Wire Wire Line
7090 4430 7090 4630
Wire Wire Line
7090 5030 7090 5230
Wire Wire Line
7090 5230 7580 5230
Wire Wire Line
7090 5230 6625 5230
Wire Wire Line
6625 5230 6625 4630
Wire Wire Line
6625 4630 7090 4630
Connection ~ 7090 5230
Connection ~ 7090 4630
Wire Wire Line
7090 4630 7455 4630
$Comp
L Device:R R408
U 1 1 5D36BC4A
P 6625 3890
F 0 "R408" V 6530 3790 50 0000 L CNN
F 1 "4.7" V 6625 3825 50 0000 L CNN
F 2 "Resistor_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal" V 6555 3890 50 0001 C CNN
F 3 "~" H 6625 3890 50 0001 C CNN
1 6625 3890
1 0 0 -1
$EndComp
Wire Wire Line
6625 4040 6625 4430
$Comp
L power:VCC #PWR0135
U 1 1 5D36BC51
P 6625 3650
F 0 "#PWR0135" H 6625 3500 50 0001 C CNN
F 1 "VCC" H 6642 3823 50 0000 C CNN
F 2 "" H 6625 3650 50 0001 C CNN
F 3 "" H 6625 3650 50 0001 C CNN
1 6625 3650
1 0 0 -1
$EndComp
Wire Wire Line
6625 3650 6625 3740
Text Notes 6915 3920 2 50 ~ 0
1/2W
Text GLabel 5305 2920 0 50 Output ~ 0
~FIRE1
Connection ~ 7455 4630
Wire Wire Line
7455 4630 8475 4630
Wire Wire Line
7090 5230 7090 5625
Wire Wire Line
7090 5625 7985 5625
Wire Wire Line
7985 5625 7985 5330
Wire Wire Line
8210 5330 8210 5625
Wire Wire Line
8210 5625 7985 5625
Connection ~ 7985 5625
Wire Wire Line
8210 5625 8435 5625
Wire Wire Line
8435 5625 8435 5330
Connection ~ 8210 5625
Wire Wire Line
8775 5130 8775 5625
Wire Wire Line
8775 5625 8435 5625
Connection ~ 8435 5625
Wire Wire Line
5645 2190 5645 2000
Connection ~ 5645 2000
Wire Wire Line
5645 2000 6790 2000
Text GLabel 5305 2440 0 50 Output ~ 0
~LPEN
Wire Wire Line
5305 2440 5495 2440
Wire Wire Line
5645 4230 5645 2920
Wire Wire Line
5645 4230 6790 4230
Wire Wire Line
5305 2920 5645 2920
Connection ~ 5645 2920
Wire Wire Line
5645 2920 5645 2690
Wire Wire Line
5995 2600 5995 4405
Wire Wire Line
5995 2600 6790 2600
Wire Wire Line
3875 4555 5195 4555
Wire Wire Line
6225 4555 6225 2800
Text Label 6225 2600 0 50 ~ 0
pot0y
Text Label 6225 2800 0 50 ~ 0
pot0x
Wire Wire Line
6225 4830 6225 4805
Wire Wire Line
6225 4805 5420 4805
Wire Wire Line
6225 4830 6790 4830
Wire Wire Line
5995 5030 5995 4955
Wire Wire Line
5995 4955 5645 4955
$Comp
L Device:EMI_Filter_LCL E411
U 1 1 5D3C0092
P 9645 1685
F 0 "E411" H 9645 1880 50 0000 C CNN
F 1 "6800p" H 9460 1635 50 0000 C CNN
F 2 "Raemixx500:EMI_Filter_Long" V 9645 1685 50 0001 C CNN
F 3 "http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb" V 9645 1685 50 0001 C CNN
F 4 "W/FERRITE" H 9645 1685 50 0001 C CNN "EMI_FILTER_TYPE"
F 5 "JOYSTICK" H 9645 1685 50 0001 C CNN "Section"
F 6 "0.233" H 9645 1685 50 0001 C CNN "Cost"
F 7 "MURATA" H 9645 1685 50 0001 C CNN "MFG Name"
F 8 "DSS1NB32A682Q91A" H 9645 1685 50 0001 C CNN "MFG Part Num"
1 9645 1685
-1 0 0 -1
$EndComp
$Comp
L Device:EMI_Filter_LCL E412
U 1 1 5D3C0098
P 9645 2115
F 0 "E412" H 9645 2305 50 0000 C CNN
F 1 "6800p" H 9455 2065 50 0000 C CNN
F 2 "Raemixx500:EMI_Filter_Long" V 9645 2115 50 0001 C CNN
F 3 "http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb" V 9645 2115 50 0001 C CNN
F 4 "W/FERRITE" H 9645 2115 50 0001 C CNN "EMI_FILTER_TYPE"
F 5 "JOYSTICK" H 9645 2115 50 0001 C CNN "Section"
F 6 "0.233" H 9645 2115 50 0001 C CNN "Cost"
F 7 "MURATA" H 9645 2115 50 0001 C CNN "MFG Name"
F 8 "DSS1NB32A682Q91A" H 9645 2115 50 0001 C CNN "MFG Part Num"
1 9645 2115
-1 0 0 -1
$EndComp
$Comp
L Device:EMI_Filter_LCL E413
U 1 1 5D3C009E
P 9645 2515
F 0 "E413" H 9645 2710 50 0000 C CNN
F 1 "6800p" H 9475 2455 50 0000 C CNN
F 2 "Raemixx500:EMI_Filter_Long" V 9645 2515 50 0001 C CNN
F 3 "http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb" V 9645 2515 50 0001 C CNN
F 4 "W/FERRITE" H 9645 2515 50 0001 C CNN "EMI_FILTER_TYPE"
F 5 "JOYSTICK" H 9645 2515 50 0001 C CNN "Section"
F 6 "0.233" H 9645 2515 50 0001 C CNN "Cost"
F 7 "MURATA" H 9645 2515 50 0001 C CNN "MFG Name"
F 8 "DSS1NB32A682Q91A" H 9645 2515 50 0001 C CNN "MFG Part Num"
1 9645 2515
-1 0 0 -1
$EndComp
Wire Wire Line
9075 2100 9215 2100
Wire Wire Line
9215 2100 9215 2015
Wire Wire Line
9215 2015 9345 2015
Wire Wire Line
9075 2300 9215 2300
Wire Wire Line
9215 2300 9215 2415
Wire Wire Line
9215 2415 9345 2415
Wire Wire Line
9075 2500 9215 2500
Wire Wire Line
9215 2500 9215 2835
Wire Wire Line
9215 2835 9345 2835
Wire Wire Line
9075 1900 9215 1900
Wire Wire Line
9215 1900 9215 1585
Wire Wire Line
9215 1585 9345 1585
$Comp
L 74ls157:74LS157 U15
U 1 1 5D4839EA
P 12455 3375
F 0 "U15" H 12455 4242 50 0000 C CNN
F 1 "74LS157" H 12455 4151 50 0000 C CNN
F 2 "Package_DIP:DIP-16_W7.62mm_Socket_LongPads" H 12455 3375 50 0001 C CNN
F 3 "http://www.ti.com/lit/gpn/sn74LS157" H 12455 3375 50 0001 C CNN
F 4 "JOYSTICK" H 12455 3375 50 0001 C CNN "Section"
F 5 "0.236" H 12455 3375 50 0001 C CNN "Cost"
F 6 "TI" H 12455 3375 50 0001 C CNN "MFG Name"
F 7 "SN74HCT157NE4" H 12455 3375 50 0001 C CNN "MFG Part Num"
1 12455 3375
1 0 0 -1
$EndComp
Wire Wire Line
9945 2835 10345 2835
Wire Wire Line
10345 2835 10345 3175
Wire Wire Line
10345 3175 11320 3175
Wire Wire Line
9945 2415 10530 2415
Wire Wire Line
10530 2415 10530 2875
Wire Wire Line
10530 2875 11420 2875
Wire Wire Line
9945 2015 10435 2015
Wire Wire Line
10435 2015 10435 3075
Wire Wire Line
9945 1585 10625 1585
Wire Wire Line
10625 1585 10625 2775
Wire Wire Line
10625 2775 11520 2775
Text Label 6225 5030 0 50 ~ 0
pot1x
Text Label 6225 4830 0 50 ~ 0
pot1y
$Comp
L Device:EMI_Filter_LCL E421
U 1 1 5D4B014E
P 9645 3915
F 0 "E421" H 9645 4110 50 0000 C CNN
F 1 "6800p" H 9460 3865 50 0000 C CNN
F 2 "Raemixx500:EMI_Filter_Long" V 9645 3915 50 0001 C CNN
F 3 "http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb" V 9645 3915 50 0001 C CNN
F 4 "W/FERRITE" H 9645 3915 50 0001 C CNN "EMI_FILTER_TYPE"
F 5 "JOYSTICK" H 9645 3915 50 0001 C CNN "Section"
F 6 "0.233" H 9645 3915 50 0001 C CNN "Cost"
F 7 "MURATA" H 9645 3915 50 0001 C CNN "MFG Name"
F 8 "DSS1NB32A682Q91A" H 9645 3915 50 0001 C CNN "MFG Part Num"
1 9645 3915
-1 0 0 -1
$EndComp
$Comp
L Device:EMI_Filter_LCL E422
U 1 1 5D4B0154
P 9645 4345
F 0 "E422" H 9645 4535 50 0000 C CNN
F 1 "6800p" H 9455 4295 50 0000 C CNN
F 2 "Raemixx500:EMI_Filter_Long" V 9645 4345 50 0001 C CNN
F 3 "http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb" V 9645 4345 50 0001 C CNN
F 4 "W/FERRITE" H 9645 4345 50 0001 C CNN "EMI_FILTER_TYPE"
F 5 "JOYSTICK" H 9645 4345 50 0001 C CNN "Section"
F 6 "0.233" H 9645 4345 50 0001 C CNN "Cost"
F 7 "MURATA" H 9645 4345 50 0001 C CNN "MFG Name"
F 8 "DSS1NB32A682Q91A" H 9645 4345 50 0001 C CNN "MFG Part Num"
1 9645 4345
-1 0 0 -1
$EndComp
$Comp
L Device:EMI_Filter_LCL E424
U 1 1 5D4B0160
P 9645 5165
F 0 "E424" H 9645 5360 50 0000 C CNN
F 1 "6800p" H 9455 5115 50 0000 C CNN
F 2 "Raemixx500:EMI_Filter_Long" V 9645 5165 50 0001 C CNN
F 3 "http://www.murata.com/~/media/webrenewal/support/library/catalog/products/emc/emifil/c31e.ashx?la=en-gb" V 9645 5165 50 0001 C CNN
F 4 "W/FERRITE" H 9645 5165 50 0001 C CNN "EMI_FILTER_TYPE"
F 5 "JOYSTICK" H 9645 5165 50 0001 C CNN "Section"
F 6 "0.233" H 9645 5165 50 0001 C CNN "Cost"
F 7 "MURATA" H 9645 5165 50 0001 C CNN "MFG Name"
F 8 "DSS1NB32A682Q91A" H 9645 5165 50 0001 C CNN "MFG Part Num"
1 9645 5165
-1 0 0 -1
$EndComp
Wire Wire Line
9075 4330 9215 4330
Wire Wire Line
9215 4330 9215 4245
Wire Wire Line
9215 4245 9345 4245
Wire Wire Line
9075 4530 9215 4530
Wire Wire Line
9215 4530 9215 4645
Wire Wire Line
9215 4645 9345 4645
Wire Wire Line
9075 4730 9215 4730
Wire Wire Line
9215 4730 9215 5065
Wire Wire Line
9215 5065 9345 5065
Wire Wire Line
9075 4130 9215 4130
Wire Wire Line
9215 4130 9215 3815
Wire Wire Line
9215 3815 9345 3815
Wire Wire Line
9945 3815 10345 3815
Wire Wire Line
10345 3815 10345 3375
Wire Wire Line
10345 3375 11220 3375
Wire Wire Line
9945 4245 10530 4245
Wire Wire Line
10530 4245 10530 3675
Wire Wire Line
9945 5065 10625 5065
Wire Wire Line
10625 5065 10625 3775
Wire Wire Line
10625 3775 10920 3775
$Comp
L power:GND #PWR0136
U 1 1 5D4DDF15
P 11840 4170
F 0 "#PWR0136" H 11840 3920 50 0001 C CNN
F 1 "GND" H 11845 3997 50 0000 C CNN
F 2 "" H 11840 4170 50 0001 C CNN
F 3 "" H 11840 4170 50 0001 C CNN
1 11840 4170
1 0 0 -1
$EndComp
Wire Wire Line
11840 4170 11840 4075
Wire Wire Line
11840 4075 11955 4075
Text GLabel 11175 3975 0 50 Input ~ 0
~CCKQ_A
Wire Wire Line
11175 3975 11955 3975
Wire Wire Line
9645 4015 9645 4070
Wire Wire Line
9645 4070 10125 4070
Wire Wire Line
10125 4070 10125 4495
Wire Wire Line
9645 4445 9645 4495
Wire Wire Line
9645 4495 10125 4495
Connection ~ 10125 4495
Wire Wire Line
10125 4495 10125 4905
Wire Wire Line
9645 4845 9645 4905
Wire Wire Line
9645 4905 10125 4905
Connection ~ 10125 4905
Wire Wire Line
10125 4905 10125 5315
Wire Wire Line
9645 5265 9645 5315
Wire Wire Line
9645 5315 10125 5315
Connection ~ 10125 5315
Wire Wire Line
10125 5315 10125 5405
$Comp
L power:GND #PWR0137
U 1 1 5D519624
P 10125 5405
F 0 "#PWR0137" H 10125 5155 50 0001 C CNN
F 1 "GND" H 10130 5232 50 0000 C CNN
F 2 "" H 10125 5405 50 0001 C CNN
F 3 "" H 10125 5405 50 0001 C CNN
1 10125 5405
1 0 0 -1
$EndComp
Wire Wire Line
9645 3035 9645 3085
Wire Wire Line
9645 3085 10125 3085
Connection ~ 10125 3085
Wire Wire Line
10125 3085 10125 3175
$Comp
L power:GND #PWR0138
U 1 1 5D51A303
P 10125 3175
F 0 "#PWR0138" H 10125 2925 50 0001 C CNN
F 1 "GND" H 10130 3002 50 0000 C CNN
F 2 "" H 10125 3175 50 0001 C CNN
F 3 "" H 10125 3175 50 0001 C CNN
1 10125 3175
1 0 0 -1
$EndComp
Wire Wire Line
9645 1785 9645 1840
Wire Wire Line
9645 1840 10125 1840
Wire Wire Line
10125 1840 10125 2260
Wire Wire Line
9645 2615 9645 2665
Wire Wire Line
9645 2665 10125 2665
Connection ~ 10125 2665
Wire Wire Line
10125 2665 10125 3085
Wire Wire Line
9645 2215 9645 2260
Wire Wire Line
9645 2260 10125 2260
Connection ~ 10125 2260
Wire Wire Line
10125 2260 10125 2665
$Comp
L power:GND #PWR0139
U 1 1 5D554476
P 7985 3515
F 0 "#PWR0139" H 7985 3265 50 0001 C CNN
F 1 "GND" H 7990 3342 50 0000 C CNN
F 2 "" H 7985 3515 50 0001 C CNN
F 3 "" H 7985 3515 50 0001 C CNN
1 7985 3515
1 0 0 -1
$EndComp
Wire Wire Line
7985 3515 7985 3395
$Comp
L power:GND #PWR0140
U 1 1 5D55E567
P 7985 5745
F 0 "#PWR0140" H 7985 5495 50 0001 C CNN
F 1 "GND" H 7990 5572 50 0000 C CNN