-
Notifications
You must be signed in to change notification settings - Fork 1
/
FloppyEmulator.sch
1842 lines (1842 loc) · 40.5 KB
/
FloppyEmulator.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
LIBS:FloppyEmulator-cache
EELAYER 26 0
EELAYER END
$Descr A3 16535 11693
encoding utf-8
Sheet 1 1
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L FloppyEmulator-rescue:STM32F405RGTx-RESCUE-FloppyEmulator U1
U 1 1 5A44968C
P 8575 5200
F 0 "U1" H 8575 2925 50 0000 C CNN
F 1 "STM32F405RGTx" H 8575 2800 50 0000 C CNN
F 2 "Housings_QFP:LQFP-64_10x10mm_Pitch0.5mm" H 12775 7075 50 0000 R TNN
F 3 "" H 8575 5200 50 0001 C CNN
1 8575 5200
1 0 0 -1
$EndComp
Text GLabel 13100 4700 2 50 UnSpc ~ 0
USB_DM
Text GLabel 13100 4800 2 50 UnSpc ~ 0
USB_DP
Text GLabel 13850 4500 2 50 Output ~ 0
USART1_TX
Text GLabel 13850 4600 2 50 Input ~ 0
USART1_RX
Text Notes 14375 4600 0 60 ~ 0
Serial
Text Notes 13475 4800 0 60 ~ 0
USB
Text Notes 16550 5100 0 60 ~ 0
SWD
Text GLabel 13100 6500 2 50 Output ~ 0
SPI2_NSS
Text GLabel 13100 6600 2 50 Output ~ 0
SPI2_SCK
Text GLabel 13100 6700 2 50 Input ~ 0
SPI2_MISO
Text GLabel 13575 6800 2 50 Output ~ 0
SPI2_MOSI
Text GLabel 13100 5100 2 50 Output ~ 0
SPI3_NSS
Text GLabel 4000 6300 0 50 Output ~ 0
SPI3_SCK
Text GLabel 4000 6400 0 50 Input ~ 0
SPI3_MISO
Text GLabel 4000 6500 0 50 Output ~ 0
SPI3_MOSI
Text Notes 1650 2125 0 60 ~ 0
INPUT SIGNALS:\n\n- Drive Select 0\n- Drive Select 1\n- Motor Enable A\n- Motor Enable B\n- Dir\n- Side (INTERRUPT)\n- Step (INTERRUPT)\n- Write Gate (INTERRUPT)\n- Write Data (INTERRUPT)\n- Reserved ?
Text Notes 3300 1700 0 60 ~ 0
OUTPUT SIGNALS:\n\n- Index\n- Track 0\n- Write Protect\n- Read Data\n- Disk Change/Ready\n- Reserved ???
Text Notes 1175 3025 0 60 ~ 0
Amiga Drive ID readout:\n\n- turn Select off\n- turn Motor on and off\n- pulse Select and read ID bits on Ready line
Text Notes 4850 2500 0 60 ~ 0
2 ??? Disk Change Detect on Shugart Interface or Density Select on IBM PC\n4 ???\n6 ??? Can be Drive Select 3 on Amiga\n8 <-- Index\n10 --> Motor Enable A\n12 --> Drive Select B\n14 --> Drive Select A\n16 --> Motor Enable B\n18 --> Step\n20 --> Dir\n22 --> Write Data\n24 --> Write Enable\n26 <-- Track 00\n28 <-- Write Protect\n30 <-- Read Data\n32 --> Side / Head\n34 <-- Disk Change / Ready
$Comp
L device1:Crystal Q1
U 1 1 5A44A2C6
P 3300 4775
F 0 "Q1" V 3350 5350 50 0000 R CNN
F 1 "Crystal_GND24" V 3275 5750 50 0000 R CNN
F 2 "Crystals:Crystal_SMD_HC49-SD" H 3300 4775 50 0001 C CNN
F 3 "" H 3300 4775 50 0001 C CNN
1 3300 4775
0 -1 -1 0
$EndComp
Text GLabel 8525 8450 2 60 Input ~ 0
+5VDC
Text GLabel 7825 9200 2 60 Input ~ 0
GND
$Comp
L power1:GND #PWR01
U 1 1 5A44A7FF
P 7725 9350
F 0 "#PWR01" H 7725 9100 50 0001 C CNN
F 1 "GND" H 7730 9177 50 0001 C CNN
F 2 "" H 7725 9350 50 0001 C CNN
F 3 "" H 7725 9350 50 0001 C CNN
1 7725 9350
-1 0 0 -1
$EndComp
$Comp
L power1:GND #PWR02
U 1 1 5A44A98F
P 8475 7200
F 0 "#PWR02" H 8475 6950 50 0001 C CNN
F 1 "GND" H 8480 7027 50 0001 C CNN
F 2 "" H 8475 7200 50 0001 C CNN
F 3 "" H 8475 7200 50 0001 C CNN
1 8475 7200
1 0 0 -1
$EndComp
$Comp
L power1:GND #PWR03
U 1 1 5A44A9D8
P 8575 7200
F 0 "#PWR03" H 8575 6950 50 0001 C CNN
F 1 "GND" H 8580 7027 50 0001 C CNN
F 2 "" H 8575 7200 50 0001 C CNN
F 3 "" H 8575 7200 50 0001 C CNN
1 8575 7200
1 0 0 -1
$EndComp
$Comp
L power1:GND #PWR04
U 1 1 5A44A9E7
P 8675 7200
F 0 "#PWR04" H 8675 6950 50 0001 C CNN
F 1 "GND" H 8680 7027 50 0001 C CNN
F 2 "" H 8675 7200 50 0001 C CNN
F 3 "" H 8675 7200 50 0001 C CNN
1 8675 7200
1 0 0 -1
$EndComp
Text GLabel 8750 2825 2 60 Input ~ 0
+3V3
Text GLabel 13950 6100 2 50 Output ~ 0
SCL
Text GLabel 13950 6200 2 50 BiDi ~ 0
SDA
Text Notes 14075 6825 0 60 ~ 0
MFM Flow
Text Notes 3325 6450 0 60 ~ 0
LCD
Text Label 13650 5600 2 60 ~ 0
LCD_DC
Text Label 3825 5100 0 50 ~ 0
LCD_RESET
Text Label 13225 6300 2 50 ~ 0
BUTTON1
Text Label 13650 5400 2 60 ~ 0
BUTTON2
Text Label 3600 5800 0 60 ~ 0
BUTTON3
Text Label 13650 5500 2 60 ~ 0
BUTTON4
Text Label 2900 6600 0 60 ~ 0
INDEX
Text Label 13600 3800 2 60 ~ 0
TRACK0
Text Label 13600 3900 2 60 ~ 0
WPROT
Text Label 6675 10850 2 60 ~ 0
SIDE
Text Label 13600 3700 2 60 ~ 0
WRGATE
Text Notes 14450 2425 0 60 ~ 0
MOLEX 5027740891
$Comp
L FloppyEmulator-rescue:Conn_01x09-RESCUE-FloppyEmulator X2
U 1 1 5A44BF8F
P 1250 6375
F 0 "X2" H 1330 6462 50 0000 L CNN
F 1 "Conn_01x09" H 1330 6371 50 0000 L CNN
F 2 "components:QVGA_LCD_9pin" H 1330 6280 50 0000 L CNN
F 3 "" H 1250 6375 50 0001 C CNN
1 1250 6375
-1 0 0 -1
$EndComp
Text GLabel 1450 5975 2 60 Input ~ 0
+3V3
$Comp
L power1:GND #PWR05
U 1 1 5A44C183
P 1450 6075
F 0 "#PWR05" H 1450 5825 50 0001 C CNN
F 1 "GND" H 1455 5902 50 0001 C CNN
F 2 "" H 1450 6075 50 0001 C CNN
F 3 "" H 1450 6075 50 0001 C CNN
1 1450 6075
0 -1 1 0
$EndComp
Text GLabel 13100 4300 2 50 Output ~ 0
SPI1_MOSI
Text GLabel 13100 4200 2 50 Input ~ 0
SPI1_MISO
Text GLabel 13100 4100 2 50 Output ~ 0
SPI1_SCK
Text GLabel 13100 4000 2 50 Output ~ 0
SPI1_NSS
Text GLabel 2000 6175 2 50 Input ~ 0
SPI3_NSS
Text Label 1575 6275 0 50 ~ 0
LCD_RESET
Text Label 2000 6375 2 50 ~ 0
LCD_DC
Text GLabel 2000 6475 2 50 Input ~ 0
SPI3_MOSI
Text GLabel 2000 6575 2 50 Input ~ 0
SPI3_SCK
Text Label 1825 6675 2 50 ~ 0
BACKLIGHT
Text GLabel 2000 6775 2 50 Output ~ 0
SPI3_MISO
$Comp
L FloppyEmulator-rescue:Micro_SD_Card_Det-RESCUE-FloppyEmulator X1
U 1 1 5A44D19C
P 14925 1650
F 0 "X1" H 14875 2557 50 0000 C CNN
F 1 "Micro_SD_Card_Det" H 14875 2466 50 0000 C CNN
F 2 "components:MOLEX_5027740891" H 14875 2375 50 0000 C CNN
F 3 "" H 14925 1750 50 0001 C CNN
1 14925 1650
1 0 0 -1
$EndComp
$Comp
L power1:GND #PWR06
U 1 1 5A44D2BE
P 15725 2150
F 0 "#PWR06" H 15725 1900 50 0001 C CNN
F 1 "GND" H 15730 1977 50 0001 C CNN
F 2 "" H 15725 2150 50 0001 C CNN
F 3 "" H 15725 2150 50 0001 C CNN
1 15725 2150
1 0 0 -1
$EndComp
$Comp
L power1:GND #PWR07
U 1 1 5A44D487
P 14025 1750
F 0 "#PWR07" H 14025 1500 50 0001 C CNN
F 1 "GND" H 14030 1577 50 0001 C CNN
F 2 "" H 14025 1750 50 0001 C CNN
F 3 "" H 14025 1750 50 0001 C CNN
1 14025 1750
0 1 1 0
$EndComp
$Comp
L power1:GND #PWR08
U 1 1 5A44D4E0
P 14025 2150
F 0 "#PWR08" H 14025 1900 50 0001 C CNN
F 1 "GND" H 14030 1977 50 0001 C CNN
F 2 "" H 14025 2150 50 0001 C CNN
F 3 "" H 14025 2150 50 0001 C CNN
1 14025 2150
1 0 0 -1
$EndComp
$Comp
L FloppyEmulator-rescue:Conn_02x17_Odd_Even-RESCUE-FloppyEmulator X3
U 1 1 5A44DC43
P 2475 8300
F 0 "X3" H 2525 9407 50 0000 C CNN
F 1 "Conn_02x17_Odd_Even" H 2525 9316 50 0000 C CNN
F 2 "Pin_Headers:Pin_Header_Straight_2x17_Pitch2.54mm" H 2525 9225 50 0000 C CNN
F 3 "" H 2475 8300 50 0001 C CNN
1 2475 8300
1 0 0 -1
$EndComp
$Comp
L FloppyEmulator-rescue:Conn_01x04-RESCUE-FloppyEmulator X4
U 1 1 5A44E1DD
P 7275 9100
F 0 "X4" H 7355 9137 50 0000 L CNN
F 1 "TE 171826-4" H 7355 9046 50 0000 L CNN
F 2 "components:171826-4" H 7355 8955 50 0000 L CNN
F 3 "" H 7275 9100 50 0001 C CNN
1 7275 9100
-1 0 0 -1
$EndComp
Text Label 3600 5700 0 60 ~ 0
CARD_DETECT
Text Label 13875 2050 2 60 ~ 0
CARD_DETECT
Text GLabel 14025 1350 0 50 Input ~ 0
SPI1_NSS
Text GLabel 14025 1650 0 50 Input ~ 0
SPI1_SCK
Text GLabel 14025 1850 0 50 Output ~ 0
SPI1_MISO
Text GLabel 14025 1450 0 50 Input ~ 0
SPI1_MOSI
Text Notes 12450 1325 0 60 ~ 0
ESD?\nPull-ups?
$Comp
L power1:GND #PWR09
U 1 1 5A4508B2
P 3850 7775
F 0 "#PWR09" H 3850 7525 50 0001 C CNN
F 1 "GND" H 3855 7602 50 0001 C CNN
F 2 "" H 3850 7775 50 0001 C CNN
F 3 "" H 3850 7775 50 0001 C CNN
1 3850 7775
0 1 1 0
$EndComp
$Comp
L FloppyEmulator:SN74LVC2G07 U2
U 1 1 5A450F7F
P 4150 7775
F 0 "U2" H 4150 8122 60 0000 C CNN
F 1 "SN74LVC2G07" H 4150 8016 60 0000 C CNN
F 2 "TO_SOT_Packages_SMD:SOT-23-6" H 4150 8025 60 0001 C CNN
F 3 "" H 4150 8025 60 0001 C CNN
1 4150 7775
1 0 0 -1
$EndComp
Wire Wire Line
12875 4800 13100 4800
Wire Wire Line
12875 4700 13100 4700
Wire Wire Line
12875 4600 13850 4600
Wire Wire Line
12875 4500 13850 4500
Wire Wire Line
12875 4000 13100 4000
Wire Wire Line
12875 4100 13100 4100
Wire Wire Line
12875 4200 13100 4200
Wire Wire Line
12875 4300 13100 4300
Wire Wire Line
12875 6500 13100 6500
Wire Wire Line
12875 6600 13100 6600
Wire Wire Line
12875 6700 13100 6700
Wire Wire Line
12875 6800 13575 6800
Wire Wire Line
12875 5100 13100 5100
Wire Wire Line
4275 6300 4000 6300
Wire Wire Line
4275 6400 4000 6400
Wire Wire Line
4275 6500 4000 6500
Wire Wire Line
3300 4625 3300 4550
Wire Wire Line
3300 4550 3725 4550
Wire Wire Line
3725 4550 3725 4800
Wire Wire Line
3725 4800 4275 4800
Wire Wire Line
4275 4900 3725 4900
Wire Wire Line
3725 4900 3725 5025
Wire Wire Line
7725 9350 7725 9200
Wire Wire Line
7725 9200 7825 9200
Wire Wire Line
8375 3200 8375 3050
Wire Wire Line
8375 3050 8475 3050
Wire Wire Line
8775 3050 8775 3200
Wire Wire Line
8675 3200 8675 3050
Connection ~ 8675 3050
Wire Wire Line
8575 2825 8575 3050
Connection ~ 8575 3050
Wire Wire Line
8475 3200 8475 3050
Connection ~ 8475 3050
Wire Wire Line
8575 2825 8750 2825
Wire Wire Line
12875 6100 13400 6100
Wire Wire Line
12875 6200 13700 6200
Wire Wire Line
4275 5100 3825 5100
Wire Wire Line
12875 5600 13650 5600
Wire Wire Line
12875 5300 13650 5300
Wire Wire Line
12875 5400 13650 5400
Wire Wire Line
12875 5500 13650 5500
Wire Wire Line
4275 6600 2900 6600
Wire Wire Line
4275 6700 2900 6700
Wire Wire Line
4275 6800 2900 6800
Wire Wire Line
4275 5300 2900 5300
Wire Wire Line
4275 5400 2900 5400
Wire Wire Line
4275 5500 2900 5500
Wire Wire Line
4275 5600 2900 5600
Wire Wire Line
12875 3600 13600 3600
Wire Wire Line
12875 3700 13600 3700
Wire Wire Line
12875 3800 13600 3800
Wire Wire Line
12875 3900 13600 3900
Wire Wire Line
12875 4400 14550 4400
Wire Wire Line
1450 6175 2000 6175
Wire Wire Line
1450 6275 2000 6275
Wire Wire Line
1450 6375 2000 6375
Wire Wire Line
1450 6475 2000 6475
Wire Wire Line
1450 6575 2000 6575
Wire Wire Line
1450 6675 1850 6675
Wire Wire Line
1450 6775 2000 6775
Wire Wire Line
4275 5700 3600 5700
Wire Wire Line
14025 2050 13275 2050
$Comp
L power1:GND #PWR010
U 1 1 5A451245
P 3850 8350
F 0 "#PWR010" H 3850 8100 50 0001 C CNN
F 1 "GND" H 3855 8177 50 0001 C CNN
F 2 "" H 3850 8350 50 0001 C CNN
F 3 "" H 3850 8350 50 0001 C CNN
1 3850 8350
0 1 1 0
$EndComp
$Comp
L FloppyEmulator:SN74LVC2G07 U3
U 1 1 5A45124B
P 4150 8350
F 0 "U3" H 4150 8697 60 0000 C CNN
F 1 "SN74LVC2G07" H 4150 8591 60 0000 C CNN
F 2 "TO_SOT_Packages_SMD:SOT-23-6" H 4150 8600 60 0001 C CNN
F 3 "" H 4150 8600 60 0001 C CNN
1 4150 8350
1 0 0 -1
$EndComp
Wire Wire Line
2775 7900 3700 7900
Wire Wire Line
3700 7900 3700 7675
Wire Wire Line
3700 7675 3850 7675
Wire Wire Line
2775 8000 3775 8000
Wire Wire Line
3775 8000 3775 7875
Wire Wire Line
3775 7875 3850 7875
Wire Wire Line
2775 8100 3750 8100
Wire Wire Line
3750 8100 3750 8250
Wire Wire Line
3750 8250 3850 8250
Wire Wire Line
3850 8450 3675 8450
Wire Wire Line
3675 8450 3675 8200
Wire Wire Line
3675 8200 2775 8200
Text Label 4925 7675 2 60 ~ 0
SEL0
Text Label 4925 7875 2 60 ~ 0
SEL1
Text Label 4925 8250 2 60 ~ 0
SEL2
Text Label 4925 8450 2 60 ~ 0
SEL3
Wire Wire Line
4450 7675 4925 7675
Wire Wire Line
4450 7875 4925 7875
Wire Wire Line
4450 8250 4925 8250
Wire Wire Line
4450 8450 4925 8450
$Comp
L FloppyEmulator:SN74LVC2G07 U4
U 1 1 5A451CA5
P 4150 8925
F 0 "U4" H 4150 9272 60 0000 C CNN
F 1 "SN74LVC2G07" H 4150 9166 60 0000 C CNN
F 2 "TO_SOT_Packages_SMD:SOT-23-6" H 4150 9175 60 0001 C CNN
F 3 "" H 4150 9175 60 0001 C CNN
1 4150 8925
1 0 0 -1
$EndComp
Wire Wire Line
2775 8300 3575 8300
Wire Wire Line
3575 8300 3575 8825
Wire Wire Line
3575 8825 3850 8825
Wire Wire Line
3850 9025 3500 9025
Wire Wire Line
3500 9025 3500 8400
Wire Wire Line
3500 8400 2775 8400
Wire Wire Line
4450 8825 4900 8825
Wire Wire Line
4450 9025 4900 9025
Text Label 4900 8825 2 60 ~ 0
STEP
Text Label 4900 9025 2 60 ~ 0
DIR
$Comp
L FloppyEmulator:SN74LVC2G07 U5
U 1 1 5A4521D4
P 4150 9500
F 0 "U5" H 4150 9847 60 0000 C CNN
F 1 "SN74LVC2G07" H 4150 9741 60 0000 C CNN
F 2 "TO_SOT_Packages_SMD:SOT-23-6" H 4150 9750 60 0001 C CNN
F 3 "" H 4150 9750 60 0001 C CNN
1 4150 9500
1 0 0 -1
$EndComp
Wire Wire Line
3850 9400 3400 9400
Wire Wire Line
3400 9400 3400 8500
Wire Wire Line
3400 8500 2775 8500
Wire Wire Line
2775 8600 3300 8600
Wire Wire Line
3300 8600 3300 9600
Wire Wire Line
3300 9600 3850 9600
$Comp
L power1:GND #PWR011
U 1 1 5A452411
P 3850 8925
F 0 "#PWR011" H 3850 8675 50 0001 C CNN
F 1 "GND" H 3855 8752 50 0001 C CNN
F 2 "" H 3850 8925 50 0001 C CNN
F 3 "" H 3850 8925 50 0001 C CNN
1 3850 8925
0 1 1 0
$EndComp
$Comp
L power1:GND #PWR012
U 1 1 5A452430
P 3850 9500
F 0 "#PWR012" H 3850 9250 50 0001 C CNN
F 1 "GND" H 3855 9327 50 0001 C CNN
F 2 "" H 3850 9500 50 0001 C CNN
F 3 "" H 3850 9500 50 0001 C CNN
1 3850 9500
0 1 1 0
$EndComp
Wire Wire Line
4450 9400 4900 9400
Wire Wire Line
4450 9600 4900 9600
Text Label 4900 9600 2 60 ~ 0
WRGATE
Text Label 4900 9400 2 60 ~ 0
WRDATA
$Comp
L FloppyEmulator:SN74LVC2G07 U6
U 1 1 5A453572
P 4150 10075
F 0 "U6" H 4150 9738 60 0000 C CNN
F 1 "SN74LVC2G07" H 4150 9844 60 0000 C CNN
F 2 "TO_SOT_Packages_SMD:SOT-23-6" H 4150 10325 60 0001 C CNN
F 3 "" H 4150 10325 60 0001 C CNN
1 4150 10075
-1 0 0 1
$EndComp
$Comp
L FloppyEmulator:SN74LVC2G07 U7
U 1 1 5A4535E1
P 4150 10650
F 0 "U7" H 4150 10313 60 0000 C CNN
F 1 "SN74LVC2G07" H 4150 10419 60 0000 C CNN
F 2 "TO_SOT_Packages_SMD:SOT-23-6" H 4150 10900 60 0001 C CNN
F 3 "" H 4150 10900 60 0001 C CNN
1 4150 10650
-1 0 0 1
$EndComp
Wire Wire Line
2775 8700 3200 8700
Wire Wire Line
3200 8700 3200 9975
Wire Wire Line
3200 9975 3850 9975
Wire Wire Line
2775 8800 3100 8800
Wire Wire Line
3100 8800 3100 10175
Wire Wire Line
3100 10175 3850 10175
Wire Wire Line
2775 8900 3000 8900
Wire Wire Line
3000 8900 3000 10550
Wire Wire Line
3000 10550 3850 10550
Wire Wire Line
2775 9100 2900 9100
Wire Wire Line
2900 9100 2900 10750
Wire Wire Line
2900 10750 3850 10750
$Comp
L power1:GND #PWR013
U 1 1 5A4538FF
P 4450 10075
F 0 "#PWR013" H 4450 9825 50 0001 C CNN
F 1 "GND" H 4455 9902 50 0001 C CNN
F 2 "" H 4450 10075 50 0001 C CNN
F 3 "" H 4450 10075 50 0001 C CNN
1 4450 10075
0 -1 -1 0
$EndComp
$Comp
L power1:GND #PWR014
U 1 1 5A45393A
P 4450 10650
F 0 "#PWR014" H 4450 10400 50 0001 C CNN
F 1 "GND" H 4455 10477 50 0001 C CNN
F 2 "" H 4450 10650 50 0001 C CNN
F 3 "" H 4450 10650 50 0001 C CNN
1 4450 10650
0 -1 -1 0
$EndComp
Wire Wire Line
4450 9975 4900 9975
Wire Wire Line
4450 10175 4900 10175
Wire Wire Line
4450 10550 4900 10550
Wire Wire Line
4450 10750 4900 10750
Text Notes 14050 8650 0 60 ~ 0
5-way SMD Joystick ALPS SKRHABE010
$Comp
L FloppyEmulator:ALPS_5WAY SW1
U 1 1 5A4545D4
P 14450 7975
F 0 "SW1" H 14450 8468 60 0000 C CNN
F 1 "ALPS_5WAY" H 14450 8362 60 0000 C CNN
F 2 "components:ALPS_SKRHABE010" H 14450 8256 60 0000 C CNN
F 3 "" H 14450 7975 60 0001 C CNN
1 14450 7975
1 0 0 -1
$EndComp
Wire Wire Line
8675 3050 8775 3050
Wire Wire Line
8575 3050 8675 3050
Wire Wire Line
8575 3050 8575 3200
Wire Wire Line
8475 3050 8575 3050
Text Label 4900 9975 2 60 ~ 0
TRACK0
Text Label 4900 10175 2 60 ~ 0
WPROT
Text Label 4900 10750 2 60 ~ 0
RDY
Text Label 3725 4550 2 50 ~ 0
OSC_IN
Text Label 3375 5025 0 50 ~ 0
OSC_OUT
Text Label 2900 6700 0 60 ~ 0
SEL0
Text Label 2900 6800 0 60 ~ 0
SEL1
Text Label 2900 5300 0 60 ~ 0
SEL2
Text Label 2900 5400 0 60 ~ 0
SEL3
Text Label 2900 5500 0 60 ~ 0
STEP
Text Label 2900 5600 0 60 ~ 0
DIR
Text Label 13600 3600 2 60 ~ 0
WRDATA
$Comp
L FloppyEmulator:SN74LVC2G07 U8
U 1 1 5A476478
P 5950 10950
F 0 "U8" H 5950 11297 60 0000 C CNN
F 1 "SN74LVC2G07" H 5950 11191 60 0000 C CNN
F 2 "TO_SOT_Packages_SMD:SOT-23-6" H 5950 11200 60 0001 C CNN
F 3 "" H 5950 11200 60 0001 C CNN
1 5950 10950
1 0 0 -1
$EndComp
Wire Wire Line
2775 9000 2800 9000
Wire Wire Line
2800 9000 2800 10850
Wire Wire Line
2800 10850 5650 10850
Wire Wire Line
6250 10850 6675 10850
Text GLabel 4900 10550 2 50 Input ~ 0
SPI2_MOSI
Wire Wire Line
3850 10075 3750 10075
Wire Wire Line
3750 10075 3750 10650
Wire Wire Line
3750 10650 3850 10650
Wire Wire Line
4450 9500 4500 9500
Wire Wire Line
4500 9500 4500 8925
Wire Wire Line
4500 7775 4450 7775
Wire Wire Line
4450 8350 4500 8350
Connection ~ 4500 8350
Wire Wire Line
4500 8350 4500 7775
Wire Wire Line
4450 8925 4500 8925
Connection ~ 4500 8925
Wire Wire Line
4500 8925 4500 8350
Connection ~ 4500 7775
Connection ~ 3750 10650
$Comp
L FloppyEmulator:SN74LVC2G07 U9
U 1 1 5A4B6BB9
P 4150 11275
F 0 "U9" H 4150 10938 60 0000 C CNN
F 1 "SN74LVC2G07" H 4150 11044 60 0000 C CNN
F 2 "TO_SOT_Packages_SMD:SOT-23-6" H 4150 11525 60 0001 C CNN
F 3 "" H 4150 11525 60 0001 C CNN
1 4150 11275
-1 0 0 1
$EndComp
Wire Wire Line
3750 11275 3850 11275
Wire Wire Line
3750 10650 3750 11275
Connection ~ 3750 11275
Text Label 4900 11375 2 60 ~ 0
INDEX
Wire Wire Line
4450 11375 4900 11375
Wire Wire Line
3850 11375 1925 11375
Wire Wire Line
1925 11375 1925 7100
Wire Wire Line
1925 7100 3075 7100
Wire Wire Line
3075 7100 3075 7800
Wire Wire Line
3075 7800 2775 7800
$Comp
L power1:GND #PWR015
U 1 1 5A49217C
P 14800 7975
F 0 "#PWR015" H 14800 7725 50 0001 C CNN
F 1 "GND" H 14805 7802 50 0001 C CNN
F 2 "" H 14800 7975 50 0001 C CNN
F 3 "" H 14800 7975 50 0001 C CNN
1 14800 7975
0 -1 -1 0
$EndComp
Text Label 3800 3600 0 60 ~ 0
NRST
Wire Wire Line
4275 3600 3800 3600
Wire Wire Line
4275 3800 3800 3800
Text Label 3800 3800 0 60 ~ 0
BOOT0
Wire Wire Line
4275 5800 3600 5800
Text Label 13650 5300 2 60 ~ 0
BUTTON5
Wire Wire Line
12875 6300 13225 6300
Text Label 14100 7975 2 60 ~ 0
BUTTON5
Text Label 14100 8075 2 60 ~ 0
BUTTON3
Text Label 14100 7875 2 60 ~ 0
BUTTON2
Text Label 14800 7875 0 60 ~ 0
BUTTON4
Text Label 14800 8075 0 60 ~ 0
BUTTON1
Text GLabel 4575 7375 2 60 Input ~ 0
+3V3
Wire Wire Line
4575 7375 4500 7375
Wire Wire Line
4500 7375 4500 7775
Text GLabel 3650 11775 0 60 Input ~ 0
+5VDC
Wire Wire Line
3650 11775 3750 11775
Wire Wire Line
3750 11275 3750 11775
Wire Wire Line
12875 6400 13225 6400
Text Label 13225 6400 2 50 ~ 0
LED1
Text Label 3800 4000 0 60 ~ 0
VBAT
Wire Wire Line
4275 4100 3800 4100
Text Label 3800 4100 0 60 ~ 0
VCAP1
Wire Wire Line
4275 4200 3800 4200
Text Label 3800 4200 0 60 ~ 0
VCAP2
Text Label 13100 4400 2 50 ~ 0
BEEP
$Comp
L device1:R R1
U 1 1 5A4F5169
P 14700 4400
F 0 "R1" V 14493 4400 50 0000 C CNN
F 1 "10K" V 14584 4400 50 0000 C CNN
F 2 "Resistors_SMD:R_0603" V 14630 4400 50 0001 C CNN
F 3 "" H 14700 4400 50 0001 C CNN
1 14700 4400
0 1 1 0
$EndComp
$Comp
L device1:Q_NPN_BEC Q2
U 1 1 5A4FDD60
P 15050 4400
F 0 "Q2" H 15241 4446 50 0000 L CNN
F 1 "BC817" H 15241 4355 50 0000 L CNN
F 2 "TO_SOT_Packages_SMD:SOT-23" H 15250 4500 50 0001 C CNN
F 3 "" H 15050 4400 50 0001 C CNN
1 15050 4400
1 0 0 -1
$EndComp
$Comp
L power1:GND #PWR016
U 1 1 5A4FDE06
P 15150 4600
F 0 "#PWR016" H 15150 4350 50 0001 C CNN
F 1 "GND" H 15155 4427 50 0001 C CNN
F 2 "" H 15150 4600 50 0001 C CNN
F 3 "" H 15150 4600 50 0001 C CNN
1 15150 4600
1 0 0 -1
$EndComp
$Comp
L device1:C C1
U 1 1 5A4FE59F
P 12025 9300
F 0 "C1" H 12140 9346 50 0000 L CNN
F 1 "0,1" H 12140 9255 50 0000 L CNN
F 2 "Capacitors_SMD:C_0603" H 12063 9150 50 0001 C CNN
F 3 "" H 12025 9300 50 0001 C CNN
1 12025 9300
1 0 0 -1
$EndComp
$Comp
L device1:C C2
U 1 1 5A507305
P 12400 9300
F 0 "C2" H 12515 9346 50 0000 L CNN
F 1 "0,1" H 12515 9255 50 0000 L CNN
F 2 "Capacitors_SMD:C_0603" H 12438 9150 50 0001 C CNN
F 3 "" H 12400 9300 50 0001 C CNN
1 12400 9300
1 0 0 -1
$EndComp
$Comp
L device1:C C3
U 1 1 5A507357
P 12775 9300
F 0 "C3" H 12890 9346 50 0000 L CNN
F 1 "0,1" H 12890 9255 50 0000 L CNN
F 2 "Capacitors_SMD:C_0603" H 12813 9150 50 0001 C CNN
F 3 "" H 12775 9300 50 0001 C CNN
1 12775 9300
1 0 0 -1
$EndComp
$Comp
L device1:C C4
U 1 1 5A5073AB
P 13125 9300
F 0 "C4" H 13240 9346 50 0000 L CNN
F 1 "0,1" H 13240 9255 50 0000 L CNN
F 2 "Capacitors_SMD:C_0603" H 13163 9150 50 0001 C CNN
F 3 "" H 13125 9300 50 0001 C CNN
1 13125 9300
1 0 0 -1
$EndComp
$Comp
L power1:GND #PWR017
U 1 1 5A507574
P 12600 9525
F 0 "#PWR017" H 12600 9275 50 0001 C CNN
F 1 "GND" H 12605 9352 50 0001 C CNN
F 2 "" H 12600 9525 50 0001 C CNN
F 3 "" H 12600 9525 50 0001 C CNN
1 12600 9525
1 0 0 -1
$EndComp
Wire Wire Line
12600 9525 12400 9525
Wire Wire Line
12025 9525 12025 9450
Wire Wire Line
12600 9525 12775 9525
Wire Wire Line
13125 9525 13125 9450
Connection ~ 12600 9525
Wire Wire Line
12775 9450 12775 9525
Connection ~ 12775 9525
Wire Wire Line
12775 9525 13125 9525
Wire Wire Line
12400 9450 12400 9525
Connection ~ 12400 9525
Wire Wire Line
12400 9525 12025 9525
Wire Wire Line
13125 9150 13125 9000
Wire Wire Line
13125 9000 12775 9000
Wire Wire Line
12025 9000 12025 9150
Wire Wire Line
12400 9150 12400 9000
Connection ~ 12400 9000
Wire Wire Line
12400 9000 12025 9000
Wire Wire Line
12775 9150 12775 9000
Connection ~ 12775 9000
Wire Wire Line
12775 9000 12400 9000
Text GLabel 11850 9000 0 60 Input ~ 0
+3V3
Wire Wire Line
11850 9000 12025 9000
Connection ~ 12025 9000
$Comp
L device1:C C5
U 1 1 5A559E87
P 12675 1850
F 0 "C5" H 12790 1896 50 0000 L CNN
F 1 "0,1" H 12790 1805 50 0000 L CNN
F 2 "Capacitors_SMD:C_0603" H 12713 1700 50 0001 C CNN
F 3 "" H 12675 1850 50 0001 C CNN
1 12675 1850
1 0 0 -1
$EndComp
$Comp
L power1:GND #PWR018
U 1 1 5A559F15
P 12675 2000
F 0 "#PWR018" H 12675 1750 50 0001 C CNN
F 1 "GND" H 12680 1827 50 0001 C CNN
F 2 "" H 12675 2000 50 0001 C CNN
F 3 "" H 12675 2000 50 0001 C CNN
1 12675 2000
1 0 0 -1
$EndComp
Wire Wire Line
14025 1550 12675 1550
Wire Wire Line
12675 1700 12675 1550
Connection ~ 12675 1550
Wire Wire Line
12675 1550 12450 1550
Text GLabel 12450 1550 0 60 Input ~ 0
+3V3
$Comp
L FloppyEmulator-rescue:Conn_01x04-RESCUE-FloppyEmulator X5
U 1 1 5A56DDA3
P 14725 5100
F 0 "X5" H 14805 5092 50 0000 L CNN
F 1 "SWD" H 14805 5001 50 0000 L CNN
F 2 "Pin_Headers:Pin_Header_Angled_1x04_Pitch2.54mm" H 14725 5100 50 0001 C CNN
F 3 "" H 14725 5100 50 0001 C CNN
1 14725 5100