-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSD2IECplug.sch
More file actions
executable file
·1281 lines (1281 loc) · 28.4 KB
/
SD2IECplug.sch
File metadata and controls
executable file
·1281 lines (1281 loc) · 28.4 KB
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 A4 11693 8268
encoding utf-8
Sheet 1 1
Title "SD2IEC Pluggable"
Date "2021-01-09"
Rev "2.2"
Comp "www.hackup.net"
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L SD2IECplug:ATMEGA644-20AU-atmel U1
U 1 1 5A0DA765
P 2400 4400
F 0 "U1" H 1600 6300 50 0000 C CNN
F 1 "ATMEGA644-20AU" H 3050 2500 50 0000 C CNN
F 2 "Housings_QFP:TQFP-44_10x10mm_Pitch0.8mm" H 2400 4400 50 0001 C CIN
F 3 "" H 2400 4400 50 0001 C CNN
1 2400 4400
1 0 0 -1
$EndComp
$Comp
L Regulator_Linear:LM1117-3.3 U2
U 1 1 5A0DA894
P 9850 2400
F 0 "U2" H 9700 2525 50 0000 C CNN
F 1 "AMS1117-3.3" H 9850 2525 50 0000 L CNN
F 2 "TO_SOT_Packages_SMD:SOT-223-3_TabPin2" H 9850 2400 50 0001 C CNN
F 3 "" H 9850 2400 50 0001 C CNN
1 9850 2400
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR01
U 1 1 5A0DA8E9
P 9850 2750
F 0 "#PWR01" H 9850 2500 50 0001 C CNN
F 1 "GND" H 9850 2600 50 0000 C CNN
F 2 "" H 9850 2750 50 0001 C CNN
F 3 "" H 9850 2750 50 0001 C CNN
1 9850 2750
1 0 0 -1
$EndComp
$Comp
L Diode:1N4148 D3
U 1 1 5A0DAF15
P 9300 2400
F 0 "D3" H 9300 2500 50 0000 C CNN
F 1 "1N5817" H 9300 2300 50 0000 C CNN
F 2 "Diodes_THT:D_DO-41_SOD81_P7.62mm_Horizontal" H 9300 2225 50 0001 C CNN
F 3 "" H 9300 2400 50 0001 C CNN
1 9300 2400
-1 0 0 1
$EndComp
$Comp
L power:+5V #PWR02
U 1 1 5A0DB065
P 9150 2250
F 0 "#PWR02" H 9150 2100 50 0001 C CNN
F 1 "+5V" H 9150 2390 50 0000 C CNN
F 2 "" H 9150 2250 50 0001 C CNN
F 3 "" H 9150 2250 50 0001 C CNN
1 9150 2250
1 0 0 -1
$EndComp
$Comp
L Device:C C6
U 1 1 5A0DB3FB
P 10450 2550
F 0 "C6" H 10475 2650 50 0000 L CNN
F 1 "100n" H 10475 2450 50 0000 L CNN
F 2 "Capacitors_SMD:C_0805_HandSoldering" H 10488 2400 50 0001 C CNN
F 3 "" H 10450 2550 50 0001 C CNN
1 10450 2550
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR03
U 1 1 5A0DB6BB
P 2400 6500
F 0 "#PWR03" H 2400 6250 50 0001 C CNN
F 1 "GND" H 2400 6350 50 0000 C CNN
F 2 "" H 2400 6500 50 0001 C CNN
F 3 "" H 2400 6500 50 0001 C CNN
1 2400 6500
1 0 0 -1
$EndComp
$Comp
L Connector:DIN-6 J4
U 1 1 5A0DB981
P 10200 1200
F 0 "J4" H 10325 1425 50 0000 C CNN
F 1 "IEC" H 10350 950 50 0000 L CNN
F 2 "DIN-Connectors:DIN-6-Variable" H 10200 1200 50 0001 C CNN
F 3 "" H 10200 1200 50 0001 C CNN
1 10200 1200
-1 0 0 1
$EndComp
$Comp
L power:GND #PWR04
U 1 1 5A0DBA98
P 10500 1300
F 0 "#PWR04" H 10500 1050 50 0001 C CNN
F 1 "GND" H 10500 1150 50 0000 C CNN
F 2 "" H 10500 1300 50 0001 C CNN
F 3 "" H 10500 1300 50 0001 C CNN
1 10500 1300
1 0 0 -1
$EndComp
Text GLabel 9900 1100 0 39 BiDi ~ 0
IEC_DATA
Text GLabel 9900 1300 0 39 BiDi ~ 0
IEC_CLK
Text GLabel 10500 1100 2 39 BiDi ~ 0
IEC_SQR
Text GLabel 10200 1500 3 39 BiDi ~ 0
IEC_ATN
$Comp
L Device:Crystal Y1
U 1 1 5A0DC8F8
P 1300 3300
F 0 "Y1" H 1300 3450 50 0000 C CNN
F 1 "8MHz" H 1300 3150 50 0000 C CNN
F 2 "Crystals:Crystal_HC49-4H_Vertical" H 1300 3300 50 0001 C CNN
F 3 "" H 1300 3300 50 0001 C CNN
1 1300 3300
0 -1 -1 0
$EndComp
$Comp
L Device:C C1
U 1 1 5A0DCA05
P 1000 3100
F 0 "C1" H 1025 3200 50 0000 L CNN
F 1 "56p" H 1025 3000 50 0000 L CNN
F 2 "Capacitors_SMD:C_0805_HandSoldering" H 1038 2950 50 0001 C CNN
F 3 "" H 1000 3100 50 0001 C CNN
1 1000 3100
0 -1 -1 0
$EndComp
$Comp
L Device:C C2
U 1 1 5A0DCA58
P 1000 3500
F 0 "C2" H 1025 3600 50 0000 L CNN
F 1 "56p" H 1025 3400 50 0000 L CNN
F 2 "Capacitors_SMD:C_0805_HandSoldering" H 1038 3350 50 0001 C CNN
F 3 "" H 1000 3500 50 0001 C CNN
1 1000 3500
0 -1 -1 0
$EndComp
$Comp
L power:GND #PWR05
U 1 1 5A0DCC77
P 850 3600
F 0 "#PWR05" H 850 3350 50 0001 C CNN
F 1 "GND" H 850 3450 50 0000 C CNN
F 2 "" H 850 3600 50 0001 C CNN
F 3 "" H 850 3600 50 0001 C CNN
1 850 3600
1 0 0 -1
$EndComp
$Comp
L SD2IECplug:IRLML2803 Q4
U 1 1 5A0DEECE
P 6700 1800
F 0 "Q4" H 6900 1875 50 0000 L CNN
F 1 "BSS138" H 6450 1950 50 0000 L CNN
F 2 "TO_SOT_Packages_SMD:SOT-23_Handsoldering" H 6900 1725 50 0001 L CIN
F 3 "" H 6700 1800 50 0001 L CNN
1 6700 1800
1 0 0 -1
$EndComp
$Comp
L Device:R R12
U 1 1 5A0DEFAB
P 6800 2150
F 0 "R12" V 6880 2150 50 0000 C CNN
F 1 "18" V 6800 2150 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 6730 2150 50 0001 C CNN
F 3 "" H 6800 2150 50 0001 C CNN
1 6800 2150
1 0 0 -1
$EndComp
$Comp
L Device:R R14
U 1 1 5A0DF086
P 7050 2150
F 0 "R14" V 7130 2150 50 0000 C CNN
F 1 "22k" V 7050 2150 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 6980 2150 50 0001 C CNN
F 3 "" H 7050 2150 50 0001 C CNN
1 7050 2150
1 0 0 -1
$EndComp
$Comp
L Device:R R13
U 1 1 5A0DF0C9
P 7050 1600
F 0 "R13" V 7130 1600 50 0000 C CNN
F 1 "10k" V 7050 1600 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 6980 1600 50 0001 C CNN
F 3 "" H 7050 1600 50 0001 C CNN
1 7050 1600
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR06
U 1 1 5A0DF207
P 6800 2300
F 0 "#PWR06" H 6800 2050 50 0001 C CNN
F 1 "GND" H 6800 2150 50 0000 C CNN
F 2 "" H 6800 2300 50 0001 C CNN
F 3 "" H 6800 2300 50 0001 C CNN
1 6800 2300
1 0 0 -1
$EndComp
Text GLabel 6800 1350 1 39 BiDi ~ 0
IEC_SQR
$Comp
L SD2IECplug:IRLML2803 Q3
U 1 1 5A0DF9C2
P 5800 1800
F 0 "Q3" H 6000 1875 50 0000 L CNN
F 1 "BSS138" H 5550 1950 50 0000 L CNN
F 2 "TO_SOT_Packages_SMD:SOT-23_Handsoldering" H 6000 1725 50 0001 L CIN
F 3 "" H 5800 1800 50 0001 L CNN
1 5800 1800
1 0 0 -1
$EndComp
$Comp
L Device:R R9
U 1 1 5A0DF9C8
P 5900 2150
F 0 "R9" V 5980 2150 50 0000 C CNN
F 1 "18" V 5900 2150 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 5830 2150 50 0001 C CNN
F 3 "" H 5900 2150 50 0001 C CNN
1 5900 2150
1 0 0 -1
$EndComp
$Comp
L Device:R R11
U 1 1 5A0DF9CE
P 6150 2150
F 0 "R11" V 6230 2150 50 0000 C CNN
F 1 "22k" V 6150 2150 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 6080 2150 50 0001 C CNN
F 3 "" H 6150 2150 50 0001 C CNN
1 6150 2150
1 0 0 -1
$EndComp
$Comp
L Device:R R10
U 1 1 5A0DF9D4
P 6150 1600
F 0 "R10" V 6230 1600 50 0000 C CNN
F 1 "10k" V 6150 1600 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 6080 1600 50 0001 C CNN
F 3 "" H 6150 1600 50 0001 C CNN
1 6150 1600
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR07
U 1 1 5A0DF9DE
P 5900 2300
F 0 "#PWR07" H 5900 2050 50 0001 C CNN
F 1 "GND" H 5900 2150 50 0000 C CNN
F 2 "" H 5900 2300 50 0001 C CNN
F 3 "" H 5900 2300 50 0001 C CNN
1 5900 2300
1 0 0 -1
$EndComp
Text GLabel 5900 1350 1 39 BiDi ~ 0
IEC_CLK
$Comp
L SD2IECplug:IRLML2803 Q2
U 1 1 5A0DFB3A
P 4900 1800
F 0 "Q2" H 5100 1875 50 0000 L CNN
F 1 "BSS138" H 4650 1950 50 0000 L CNN
F 2 "TO_SOT_Packages_SMD:SOT-23_Handsoldering" H 5100 1725 50 0001 L CIN
F 3 "" H 4900 1800 50 0001 L CNN
1 4900 1800
1 0 0 -1
$EndComp
$Comp
L Device:R R6
U 1 1 5A0DFB40
P 5000 2150
F 0 "R6" V 5080 2150 50 0000 C CNN
F 1 "18" V 5000 2150 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 4930 2150 50 0001 C CNN
F 3 "" H 5000 2150 50 0001 C CNN
1 5000 2150
1 0 0 -1
$EndComp
$Comp
L Device:R R8
U 1 1 5A0DFB46
P 5250 2150
F 0 "R8" V 5330 2150 50 0000 C CNN
F 1 "22k" V 5250 2150 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 5180 2150 50 0001 C CNN
F 3 "" H 5250 2150 50 0001 C CNN
1 5250 2150
1 0 0 -1
$EndComp
$Comp
L Device:R R7
U 1 1 5A0DFB4C
P 5250 1600
F 0 "R7" V 5330 1600 50 0000 C CNN
F 1 "10k" V 5250 1600 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 5180 1600 50 0001 C CNN
F 3 "" H 5250 1600 50 0001 C CNN
1 5250 1600
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR08
U 1 1 5A0DFB56
P 5000 2300
F 0 "#PWR08" H 5000 2050 50 0001 C CNN
F 1 "GND" H 5000 2150 50 0000 C CNN
F 2 "" H 5000 2300 50 0001 C CNN
F 3 "" H 5000 2300 50 0001 C CNN
1 5000 2300
1 0 0 -1
$EndComp
Text GLabel 5000 1350 1 39 BiDi ~ 0
IEC_DATA
$Comp
L SD2IECplug:IRLML2803 Q1
U 1 1 5A0DFC52
P 4000 1800
F 0 "Q1" H 4200 1875 50 0000 L CNN
F 1 "BSS138" H 3750 1950 50 0000 L CNN
F 2 "TO_SOT_Packages_SMD:SOT-23_Handsoldering" H 4200 1725 50 0001 L CIN
F 3 "" H 4000 1800 50 0001 L CNN
1 4000 1800
1 0 0 -1
$EndComp
$Comp
L Device:R R2
U 1 1 5A0DFC58
P 4100 2150
F 0 "R2" V 4180 2150 50 0000 C CNN
F 1 "18" V 4100 2150 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 4030 2150 50 0001 C CNN
F 3 "" H 4100 2150 50 0001 C CNN
1 4100 2150
1 0 0 -1
$EndComp
$Comp
L Device:R R4
U 1 1 5A0DFC5E
P 4350 2150
F 0 "R4" V 4430 2150 50 0000 C CNN
F 1 "22k" V 4350 2150 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 4280 2150 50 0001 C CNN
F 3 "" H 4350 2150 50 0001 C CNN
1 4350 2150
1 0 0 -1
$EndComp
$Comp
L Device:R R3
U 1 1 5A0DFC64
P 4350 1600
F 0 "R3" V 4430 1600 50 0000 C CNN
F 1 "10k" V 4350 1600 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 4280 1600 50 0001 C CNN
F 3 "" H 4350 1600 50 0001 C CNN
1 4350 1600
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR09
U 1 1 5A0DFC6E
P 4100 2300
F 0 "#PWR09" H 4100 2050 50 0001 C CNN
F 1 "GND" H 4100 2150 50 0000 C CNN
F 2 "" H 4100 2300 50 0001 C CNN
F 3 "" H 4100 2300 50 0001 C CNN
1 4100 2300
1 0 0 -1
$EndComp
Text GLabel 4100 1350 1 39 BiDi ~ 0
IEC_ATN
Text GLabel 3400 4100 2 39 Output ~ 0
MOSI
Text GLabel 3400 4200 2 39 Input ~ 0
MISO
Text GLabel 3400 4300 2 39 Output ~ 0
SCK
$Comp
L Connector_Generic:Conn_02x03_Odd_Even J1
U 1 1 5A0E128D
P 1600 1300
F 0 "J1" H 1650 1500 50 0000 C CNN
F 1 "ISP" H 1650 1100 50 0000 C CNN
F 2 "Pin_Headers:Pin_Header_Straight_2x03_Pitch2.54mm" H 1600 1300 50 0001 C CNN
F 3 "" H 1600 1300 50 0001 C CNN
1 1600 1300
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR010
U 1 1 5A0E13EA
P 1900 1400
F 0 "#PWR010" H 1900 1150 50 0001 C CNN
F 1 "GND" H 1900 1250 50 0000 C CNN
F 2 "" H 1900 1400 50 0001 C CNN
F 3 "" H 1900 1400 50 0001 C CNN
1 1900 1400
1 0 0 -1
$EndComp
$Comp
L power:+3V3 #PWR011
U 1 1 5A0E16F3
P 10450 2250
F 0 "#PWR011" H 10450 2100 50 0001 C CNN
F 1 "+3V3" H 10450 2390 50 0000 C CNN
F 2 "" H 10450 2250 50 0001 C CNN
F 3 "" H 10450 2250 50 0001 C CNN
1 10450 2250
1 0 0 -1
$EndComp
$Comp
L power:+3V3 #PWR012
U 1 1 5A0E1909
P 2500 2350
F 0 "#PWR012" H 2500 2200 50 0001 C CNN
F 1 "+3V3" H 2500 2490 50 0000 C CNN
F 2 "" H 2500 2350 50 0001 C CNN
F 3 "" H 2500 2350 50 0001 C CNN
1 2500 2350
1 0 0 -1
$EndComp
$Comp
L power:+3V3 #PWR013
U 1 1 5A0E1AE8
P 1900 1200
F 0 "#PWR013" H 1900 1050 50 0001 C CNN
F 1 "+3V3" H 1900 1340 50 0000 C CNN
F 2 "" H 1900 1200 50 0001 C CNN
F 3 "" H 1900 1200 50 0001 C CNN
1 1900 1200
1 0 0 -1
$EndComp
Text GLabel 1400 1200 0 39 BiDi ~ 0
MISO
Text GLabel 1400 1300 0 39 BiDi ~ 0
SCK
Text GLabel 1900 1300 2 39 BiDi ~ 0
MOSI
Text GLabel 8875 4450 0 39 Output ~ 0
MISO
Text GLabel 8875 3850 0 39 Input ~ 0
MOSI
Text GLabel 8875 3700 0 39 Input ~ 0
SCK
$Comp
L power:GND #PWR015
U 1 1 5A0E3F99
P 9400 4850
F 0 "#PWR015" H 9400 4600 50 0001 C CNN
F 1 "GND" H 9400 4700 50 0000 C CNN
F 2 "" H 9400 4850 50 0001 C CNN
F 3 "" H 9400 4850 50 0001 C CNN
1 9400 4850
1 0 0 -1
$EndComp
$Comp
L Device:CP C4
U 1 1 5A0E450A
P 9500 2550
F 0 "C4" H 9525 2650 50 0000 L CNN
F 1 "10µ" H 9525 2450 50 0000 L CNN
F 2 "Capacitors_Tantalum_SMD:CP_Tantalum_Case-S_EIA-3216-12_Hand" H 9538 2400 50 0001 C CNN
F 3 "" H 9500 2550 50 0001 C CNN
1 9500 2550
1 0 0 -1
$EndComp
$Comp
L Device:CP C5
U 1 1 5A0E45C6
P 10200 2550
F 0 "C5" H 10225 2650 50 0000 L CNN
F 1 "10µ" H 10225 2450 50 0000 L CNN
F 2 "Capacitors_Tantalum_SMD:CP_Tantalum_Case-S_EIA-3216-12_Hand" H 10238 2400 50 0001 C CNN
F 3 "" H 10200 2550 50 0001 C CNN
1 10200 2550
1 0 0 -1
$EndComp
$Comp
L power:+3V3 #PWR016
U 1 1 5A0E48F3
P 9400 3100
F 0 "#PWR016" H 9400 2950 50 0001 C CNN
F 1 "+3V3" H 9400 3240 50 0000 C CNN
F 2 "" H 9400 3100 50 0001 C CNN
F 3 "" H 9400 3100 50 0001 C CNN
1 9400 3100
1 0 0 -1
$EndComp
$Comp
L Device:CP C3
U 1 1 5A0E4A68
P 8450 3750
F 0 "C3" H 8475 3850 50 0000 L CNN
F 1 "10µ" H 8475 3650 50 0000 L CNN
F 2 "Capacitors_Tantalum_SMD:CP_Tantalum_Case-S_EIA-3216-12_Hand" H 8488 3600 50 0001 C CNN
F 3 "" H 8450 3750 50 0001 C CNN
1 8450 3750
1 0 0 -1
$EndComp
$Comp
L Device:R R1
U 1 1 5A0E56B2
P 3800 4500
F 0 "R1" V 3880 4500 50 0000 C CNN
F 1 "330" V 3800 4500 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 3730 4500 50 0001 C CNN
F 3 "" H 3800 4500 50 0001 C CNN
1 3800 4500
0 1 1 0
$EndComp
$Comp
L Device:R R5
U 1 1 5A0E57F0
P 4500 4600
F 0 "R5" V 4580 4600 50 0000 C CNN
F 1 "330" V 4500 4600 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 4430 4600 50 0001 C CNN
F 3 "" H 4500 4600 50 0001 C CNN
1 4500 4600
0 1 1 0
$EndComp
$Comp
L Device:LED D2
U 1 1 5A0E5986
P 4200 4500
F 0 "D2" H 4200 4600 50 0000 C CNN
F 1 "green" H 4350 4550 50 0000 C CNN
F 2 "LEDs:LED_0805_HandSoldering" H 4200 4500 50 0001 C CNN
F 3 "" H 4200 4500 50 0001 C CNN
1 4200 4500
-1 0 0 1
$EndComp
$Comp
L Device:LED D1
U 1 1 5A0E5A3A
P 4950 4600
F 0 "D1" H 4950 4700 50 0000 C CNN
F 1 "red" H 5100 4650 50 0000 C CNN
F 2 "LEDs:LED_0805_HandSoldering" H 4950 4600 50 0001 C CNN
F 3 "" H 4950 4600 50 0001 C CNN
1 4950 4600
-1 0 0 1
$EndComp
$Comp
L Device:R R15
U 1 1 5A0E7D80
P 9400 3250
F 0 "R15" V 9480 3250 50 0000 C CNN
F 1 "2.2R" V 9400 3250 50 0000 C CNN
F 2 "Resistors_SMD:R_0805_HandSoldering" V 9330 3250 50 0001 C CNN
F 3 "" H 9400 3250 50 0001 C CNN
1 9400 3250
-1 0 0 1
$EndComp
$Comp
L hackup-commodore:C64-CassettePort J5
U 1 1 5A140900
P 2400 7700
F 0 "J5" H 2400 7700 60 0000 C CNN
F 1 "C64-CassettePort" H 2450 7900 60 0000 C CNN
F 2 "hackup:C64-Cassette-Port-Female" H 2400 7600 60 0001 C CNN
F 3 "" H 2400 7700 60 0001 C CNN
1 2400 7700
1 0 0 -1
$EndComp
Text GLabel 1900 6800 0 39 Input ~ 0
Cas-GND
Text GLabel 1900 6900 0 39 Input ~ 0
Cas-5V
Text GLabel 1900 7000 0 39 Input ~ 0
Cas-Motor
Text GLabel 1900 7100 0 39 Input ~ 0
Cas-Read
Text GLabel 1900 7200 0 39 Input ~ 0
Cas-Write
Text GLabel 1900 7300 0 39 Input ~ 0
Cas-Sense
Text GLabel 2900 6800 2 39 Input ~ 0
Cas-GND
Text GLabel 2900 6900 2 39 Input ~ 0
Cas-5V
Text GLabel 2900 7000 2 39 Input ~ 0
Cas-Motor
Text GLabel 2900 7100 2 39 Input ~ 0
Cas-Read
Text GLabel 2900 7200 2 39 Input ~ 0
Cas-Write
Text GLabel 2900 7300 2 39 Input ~ 0
Cas-Sense
$Comp
L hackup-commodore:C64-CassettePort J6
U 1 1 5A1416C4
P 4300 7700
F 0 "J6" H 4300 7700 60 0000 C CNN
F 1 "C64-CassettePort" H 4350 7900 60 0000 C CNN
F 2 "hackup:C64-Cassette-Port-Male" H 4300 7600 60 0001 C CNN
F 3 "" H 4300 7700 60 0001 C CNN
1 4300 7700
1 0 0 -1
$EndComp
Text GLabel 3800 6800 0 39 Input ~ 0
Cas-GND
Text GLabel 3800 6900 0 39 Input ~ 0
Cas-5V
Text GLabel 3800 7000 0 39 Input ~ 0
Cas-Motor
Text GLabel 3800 7100 0 39 Input ~ 0
Cas-Read
Text GLabel 3800 7200 0 39 Input ~ 0
Cas-Write
Text GLabel 3800 7300 0 39 Input ~ 0
Cas-Sense
Text GLabel 4800 6800 2 39 Input ~ 0
Cas-GND
Text GLabel 4800 6900 2 39 Input ~ 0
Cas-5V
Text GLabel 4800 7000 2 39 Input ~ 0
Cas-Motor
Text GLabel 4800 7100 2 39 Input ~ 0
Cas-Read
Text GLabel 4800 7200 2 39 Input ~ 0
Cas-Write
Text GLabel 4800 7300 2 39 Input ~ 0
Cas-Sense
Text GLabel 5750 6800 0 39 Input ~ 0
Cas-5V
Text GLabel 5750 7000 0 39 Input ~ 0
Cas-GND
$Comp
L power:GND #PWR018
U 1 1 5A142E16
P 5850 7000
F 0 "#PWR018" H 5850 6750 50 0001 C CNN
F 1 "GND" H 5850 6850 50 0000 C CNN
F 2 "" H 5850 7000 50 0001 C CNN
F 3 "" H 5850 7000 50 0001 C CNN
1 5850 7000
1 0 0 -1
$EndComp
$Comp
L power:+5V #PWR019
U 1 1 5A142F0E
P 5850 6800
F 0 "#PWR019" H 5850 6650 50 0001 C CNN
F 1 "+5V" H 5850 6940 50 0000 C CNN
F 2 "" H 5850 6800 50 0001 C CNN
F 3 "" H 5850 6800 50 0001 C CNN
1 5850 6800
1 0 0 -1
$EndComp
Wire Wire Line
9450 2400 9500 2400
Connection ~ 9500 2400
Connection ~ 9850 2700
Wire Wire Line
9850 2750 9850 2700
Wire Wire Line
9150 2250 9150 2400
Connection ~ 10200 2700
Connection ~ 10200 2400
Wire Wire Line
10450 2400 10450 2250
Wire Wire Line
10150 2400 10200 2400
Wire Wire Line
2100 6400 2100 6450
Wire Wire Line
2100 6450 2200 6450
Wire Wire Line
2400 6400 2400 6450
Wire Wire Line
2300 6400 2300 6450
Connection ~ 2300 6450
Wire Wire Line
2200 6400 2200 6450
Connection ~ 2200 6450
Wire Wire Line
2100 2400 2100 2350
Wire Wire Line
2100 2350 2200 2350
Wire Wire Line
2500 2350 2500 2400
Wire Wire Line
2300 2400 2300 2350
Connection ~ 2300 2350
Wire Wire Line
2200 2400 2200 2350
Connection ~ 2200 2350
Wire Wire Line
850 3100 850 3500
Connection ~ 850 3500
Wire Wire Line
1150 3100 1300 3100
Wire Wire Line
1150 3500 1300 3500
Wire Wire Line
1300 3450 1300 3500
Connection ~ 1300 3500
Wire Wire Line
1300 3150 1300 3100
Connection ~ 1300 3100
Wire Wire Line
6800 1350 6800 1450
Wire Wire Line
6800 1450 7050 1450
Wire Wire Line
7050 1750 7050 1900
Wire Wire Line
7050 2300 6800 2300
Wire Wire Line
7050 1900 7200 1900
Wire Wire Line
7200 1900 7200 3000
Connection ~ 7050 1900
Wire Wire Line
6500 1800 6500 3400
Connection ~ 6800 1450
Wire Wire Line
5900 1350 5900 1450
Wire Wire Line
5900 1450 6150 1450
Wire Wire Line
6150 1750 6150 1900
Wire Wire Line
6150 2300 5900 2300
Wire Wire Line
6150 1900 6300 1900
Wire Wire Line
6300 1900 6300 2900
Connection ~ 6150 1900
Wire Wire Line
5600 1800 5600 3300
Connection ~ 5900 1450
Wire Wire Line
5000 1350 5000 1450
Wire Wire Line
5000 1450 5250 1450
Wire Wire Line
5250 1750 5250 1900
Wire Wire Line
5250 2300 5000 2300
Wire Wire Line
5250 1900 5400 1900
Wire Wire Line
5400 1900 5400 2800
Connection ~ 5250 1900
Wire Wire Line
4700 1800 4700 3200
Connection ~ 5000 1450
Wire Wire Line
4100 1350 4100 1450
Wire Wire Line
4100 1450 4350 1450
Wire Wire Line
4350 1750 4350 1900
Wire Wire Line
4350 2300 4100 2300
Wire Wire Line
4350 1900 4500 1900
Wire Wire Line
4500 1900 4500 2700
Connection ~ 4350 1900
Wire Wire Line
3800 1800 3800 3100
Connection ~ 4100 1450
Wire Wire Line
3800 3100 3400 3100
Wire Wire Line
5400 2800 3400 2800
Wire Wire Line
4700 3200 3400 3200
Wire Wire Line
6300 2900 3400 2900
Wire Wire Line
5600 3300 3400 3300
Wire Wire Line
7200 3000 3400 3000
Wire Wire Line
6500 3400 3400 3400
Wire Wire Line
1400 2700 1400 1400
Wire Wire Line
4350 4500 5400 4500
Wire Wire Line
5100 4600 5400 4600
Wire Wire Line
5750 6800 5850 6800
Wire Wire Line
5750 7000 5850 7000
Connection ~ 2400 6450
$Comp
L power:GND #PWR025
U 1 1 5A187F94
P 6850 5200
F 0 "#PWR025" H 6850 4950 50 0001 C CNN
F 1 "GND" H 6850 5050 50 0000 C CNN
F 2 "" H 6850 5200 50 0001 C CNN
F 3 "" H 6850 5200 50 0001 C CNN
1 6850 5200
1 0 0 -1
$EndComp
Wire Wire Line
9500 2400 9550 2400
Wire Wire Line
9850 2700 10200 2700
Wire Wire Line
10200 2700 10450 2700
Wire Wire Line
10200 2400 10450 2400
Wire Wire Line
2300 6450 2400 6450
Wire Wire Line
2200 6450 2300 6450
Wire Wire Line
2300 2350 2500 2350
Wire Wire Line
2200 2350 2300 2350
Wire Wire Line
850 3500 850 3600
Wire Wire Line
1300 3500 1400 3500
Wire Wire Line
1300 3100 1400 3100
Wire Wire Line
7050 1900 7050 2000
Wire Wire Line
6800 1450 6800 1600
Wire Wire Line
6150 1900 6150 2000
Wire Wire Line
5900 1450 5900 1600
Wire Wire Line
5250 1900 5250 2000
Wire Wire Line
5000 1450 5000 1600
Wire Wire Line
4350 1900 4350 2000
Wire Wire Line
4100 1450 4100 1600
Wire Wire Line
2400 6450 2400 6500
Wire Wire Line
9500 2700 9850 2700
Wire Wire Line
9050 2500 9050 2400
Wire Wire Line
9050 2400 9150 2400
Connection ~ 9150 2400
Wire Wire Line
9050 2600 9050 2700
Wire Wire Line
9050 2700 9500 2700
Connection ~ 9500 2700
Connection ~ 10450 2400
Wire Wire Line
6950 5050 6850 5050
Wire Wire Line
6850 5050 6850 5200
Wire Wire Line
6950 4850 6850 4850
Wire Wire Line
6850 4850 6850 5050
Connection ~ 6850 5050
Wire Wire Line
6950 4650 6850 4650
Wire Wire Line
6850 4650 6850 4850
Connection ~ 6850 4850
Wire Wire Line
6950 4350 6850 4350
Wire Wire Line
6850 4350 6850 4650
Connection ~ 6850 4650
Wire Wire Line
6950 4950 6600 4950
Wire Wire Line
6600 4950 6600 6100
Wire Wire Line
6600 6100 3400 6100
Wire Wire Line
6950 5150 6700 5150
Wire Wire Line
6700 5150 6700 5900
Wire Wire Line
6700 5900 3400 5900
$Comp
L power:GND #PWR0101
U 1 1 5B9F59FB
P 5400 4600
F 0 "#PWR0101" H 5400 4350 50 0001 C CNN
F 1 "GND" H 5400 4450 50 0000 C CNN
F 2 "" H 5400 4600 50 0001 C CNN
F 3 "" H 5400 4600 50 0001 C CNN
1 5400 4600
1 0 0 -1
$EndComp
Wire Wire Line
5400 4500 5400 4600
Connection ~ 5400 4600
Wire Wire Line
4650 4600 4750 4600
Wire Wire Line
3950 4500 4000 4500
Wire Wire Line
4000 4500 4000 4300
Wire Wire Line
4000 4300 5700 4300
Wire Wire Line
5700 4300 5700 4750
Wire Wire Line
5700 4750 6950 4750
Connection ~ 4000 4500
Wire Wire Line
4000 4500 4050 4500
Wire Wire Line
4750 4600 4750 4400
Wire Wire Line
4750 4400 5550 4400
Wire Wire Line
5550 4400 5550 4550
Wire Wire Line
5550 4550 6950 4550
Connection ~ 4750 4600
Wire Wire Line
4750 4600 4800 4600
Wire Wire Line
5850 4800 5850 4250
Wire Wire Line
5850 4250 6950 4250
Wire Wire Line
3400 4800 5850 4800
Wire Wire Line
3400 4700 4250 4700
Wire Wire Line
4250 4700 4250 4850
Wire Wire Line
4250 4850 5950 4850
Wire Wire Line
5950 4850 5950 4450
Wire Wire Line
5950 4450 6950 4450
$Comp
L power:GND #PWR0102
U 1 1 5BA1BA83
P 5000 5400
F 0 "#PWR0102" H 5000 5150 50 0001 C CNN
F 1 "GND" H 5000 5250 50 0000 C CNN
F 2 "" H 5000 5400 50 0001 C CNN
F 3 "" H 5000 5400 50 0001 C CNN
1 5000 5400
1 0 0 -1
$EndComp
Wire Wire Line
5100 4950 5000 4950
Wire Wire Line
5000 4950 5000 5400
Wire Wire Line
3400 4900 3850 4900
Wire Wire Line
3850 4900 3850 5050
Wire Wire Line
3850 5050 5100 5050
Wire Wire Line
3400 5000 3750 5000
Wire Wire Line
3750 5000 3750 5150
Wire Wire Line
3750 5150 5100 5150
Wire Wire Line
3400 5100 3650 5100
Wire Wire Line
3650 5100 3650 5250
Wire Wire Line
3650 5250 5100 5250
Wire Wire Line
3400 5200 3550 5200
Wire Wire Line