forked from RichardRozehnal/Gotek-Floppy-Disk-Emulator-V2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGotek_Floppy_Disk_Emulator_V2.net
1279 lines (1279 loc) · 49.7 KB
/
Gotek_Floppy_Disk_Emulator_V2.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 C:\Pracovni\Projekty\Gotek_Floppy_Disk_Emulator_V2\Gotek_Floppy_Disk_Emulator_V2.sch)
(date "28/10/2020 11:50:20")
(tool "Eeschema (5.1.5)-3")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Gotek Floppy Disk Emulator V2")
(company Richi)
(rev)
(date 2020-10-28)
(source Gotek_Floppy_Disk_Emulator_V2.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J6)
(value "Floppy Data Connector")
(footprint Gotek_Floppy_Disk_Emulator_V2:PinHeader_2x17_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part Conn_02x17_Odd_Even) (description "Generic connector, double row, 02x17, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C95AB))
(comp (ref J1)
(value "Power Connector")
(footprint Gotek_Floppy_Disk_Emulator_V2:PinHeader_1x04_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0CB242))
(comp (ref U1)
(value AMS1117-3.3)
(footprint Gotek_Floppy_Disk_Emulator_V2:SOT-223-3_TabPin2)
(datasheet http://www.advanced-monolithic.com/pdf/ds1117.pdf)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part AMS1117-3.3) (description "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0CD64C))
(comp (ref C3)
(value 10uF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0CEB75))
(comp (ref C7)
(value 100nF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0CF85D))
(comp (ref C10)
(value 100nF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0CFB20))
(comp (ref C11)
(value 10uF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0CFEC9))
(comp (ref C1)
(value 100nF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0F1FBD))
(comp (ref C4)
(value 100nF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0F22AA))
(comp (ref C8)
(value 100nF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0F25D5))
(comp (ref C9)
(value 100nF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0F2996))
(comp (ref R1)
(value 4K7)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E105DEF))
(comp (ref C2)
(value 100nF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E10636C))
(comp (ref Y1)
(value 8MHz)
(footprint Gotek_Floppy_Disk_Emulator_V2:Crystal_HC49-4H_Vertical)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /) (tstamps /))
(tstamp 5E11394B))
(comp (ref C5)
(value 22pF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E114A30))
(comp (ref C6)
(value 22pF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E114D4C))
(comp (ref U2)
(value STM32F105RBTx)
(footprint Gotek_Floppy_Disk_Emulator_V2:LQFP-64_10x10mm_P0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00220364.pdf)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part STM32F105RBTx) (description "ARM Cortex-M3 MCU, 128KB flash, 64KB RAM, 72MHz, 2-3.6V, 51 GPIO, LQFP-64"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AA198))
(comp (ref D1)
(value "LED Green")
(footprint Gotek_Floppy_Disk_Emulator_V2:LED_D3.0mm)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E19C703))
(comp (ref R3)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E19CF15))
(comp (ref J3)
(value USB_A)
(footprint Gotek_Floppy_Disk_Emulator_V2:USB_A_Stewart_SS-52100-001_Horizontal)
(datasheet " ~")
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part USB_A) (description "USB Type A connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1EE913))
(comp (ref R5)
(value 22R)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E1F3683))
(comp (ref R6)
(value 22R)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E233ECD))
(comp (ref SW2)
(value "DIP Switch")
(footprint Gotek_Floppy_Disk_Emulator_V2:SW_DIP_SPSTx08_Slide_6.7x21.88mm_W8.61mm_P2.54mm_LowProfile)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part DIP_Switch) (description DIP_Switch))
(sheetpath (names /) (tstamps /))
(tstamp 5E132512))
(comp (ref R7)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E24EFED))
(comp (ref R26)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2D3A7B))
(comp (ref R25)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2D4B01))
(comp (ref R24)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2D4F4B))
(comp (ref R23)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2D52C0))
(comp (ref R22)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2D55F0))
(comp (ref R21)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2D5888))
(comp (ref R20)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2E66CB))
(comp (ref R19)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2E66D1))
(comp (ref R18)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2E66D7))
(comp (ref R16)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2E66DD))
(comp (ref R15)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2E66E3))
(comp (ref R14)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E2E66E9))
(comp (ref U4)
(value 74HCT04)
(footprint Gotek_Floppy_Disk_Emulator_V2:SOIC-14_3.9x8.7mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74HC_HCT04.pdf)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part 74HCT04) (description "Hex Inverter"))
(sheetpath (names /) (tstamps /))
(tstamp 5E320696))
(comp (ref Q2)
(value BSS123)
(footprint Gotek_Floppy_Disk_Emulator_V2:SOT-23)
(datasheet http://www.diodes.com/assets/Datasheets/ds30366.pdf)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part BSS123) (description "0.17A Id, 100V Vds, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5E32D66E))
(comp (ref Q3)
(value BSS123)
(footprint Gotek_Floppy_Disk_Emulator_V2:SOT-23)
(datasheet http://www.diodes.com/assets/Datasheets/ds30366.pdf)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part BSS123) (description "0.17A Id, 100V Vds, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5E32F4B7))
(comp (ref Q4)
(value BSS123)
(footprint Gotek_Floppy_Disk_Emulator_V2:SOT-23)
(datasheet http://www.diodes.com/assets/Datasheets/ds30366.pdf)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part BSS123) (description "0.17A Id, 100V Vds, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5E33028C))
(comp (ref Q5)
(value BSS123)
(footprint Gotek_Floppy_Disk_Emulator_V2:SOT-23)
(datasheet http://www.diodes.com/assets/Datasheets/ds30366.pdf)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part BSS123) (description "0.17A Id, 100V Vds, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5E330FB8))
(comp (ref Q6)
(value BSS123)
(footprint Gotek_Floppy_Disk_Emulator_V2:SOT-23)
(datasheet http://www.diodes.com/assets/Datasheets/ds30366.pdf)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part BSS123) (description "0.17A Id, 100V Vds, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5E331F07))
(comp (ref Q7)
(value BSS123)
(footprint Gotek_Floppy_Disk_Emulator_V2:SOT-23)
(datasheet http://www.diodes.com/assets/Datasheets/ds30366.pdf)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part BSS123) (description "0.17A Id, 100V Vds, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5E332CFF))
(comp (ref R8)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E33540A))
(comp (ref R9)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E335F61))
(comp (ref R10)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E336191))
(comp (ref R11)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E3364C1))
(comp (ref R12)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E3366F1))
(comp (ref R13)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E33697E))
(comp (ref D2)
(value 1N4148)
(footprint Gotek_Floppy_Disk_Emulator_V2:D_MiniMELF)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E336CD8))
(comp (ref J5)
(value "Programming Connector")
(footprint Gotek_Floppy_Disk_Emulator_V2:PinHeader_2x05_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part Conn_02x05_Odd_Even) (description "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E530E54))
(comp (ref C12)
(value 100nF)
(footprint Gotek_Floppy_Disk_Emulator_V2:C_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6CAB60))
(comp (ref Q1)
(value MMBT2222)
(footprint Gotek_Floppy_Disk_Emulator_V2:SOT-23)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part Q_NPN_BEC) (description "NPN transistor, base/emitter/collector"))
(sheetpath (names /) (tstamps /))
(tstamp 5E8965B9))
(comp (ref R2)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E89777C))
(comp (ref BZ1)
(value "5V Active Buzzer 12mm")
(footprint Gotek_Floppy_Disk_Emulator_V2:Buzzer_12x9.5RM7.6)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part Buzzer) (description "Buzzer, polarized"))
(sheetpath (names /) (tstamps /))
(tstamp 5E8F3796))
(comp (ref U3)
(value STMPS2141)
(footprint Gotek_Floppy_Disk_Emulator_V2:SOT-23-5)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part STMPS2141) (description "Single power-distribution switcher"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0B5FCF))
(comp (ref R4)
(value 10K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E1DD2A6))
(comp (ref C13)
(value 4.7uF/16V)
(footprint Gotek_Floppy_Disk_Emulator_V2:CP_EIA-3216-18_Kemet-A)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5E57A8DD))
(comp (ref SW1)
(value "KY040 Rotary Encoder Module")
(footprint Gotek_Floppy_Disk_Emulator_V2:PinHeader_1x05_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part KY040_Rotary_Encoder_Module) (description KY040_Rotary_Encoder_Module))
(sheetpath (names /) (tstamps /))
(tstamp 5E1B7A8C))
(comp (ref J2)
(value "OLED Display 0.91\" Module")
(footprint Gotek_Floppy_Disk_Emulator_V2:OLED_Display_0.91_Module)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part OLED_Display_0.91"_Module) (description OLED_Display_0.91"_Module))
(sheetpath (names /) (tstamps /))
(tstamp 5E2AFC19))
(comp (ref R17)
(value 1K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5EADD02A))
(comp (ref R27)
(value 10K)
(footprint Gotek_Floppy_Disk_Emulator_V2:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Gotek_Floppy_Disk_Emulator_V2) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F9BB792)))
(libparts
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part 74LS04)
(aliases
(alias 74HC04)
(alias 74HCT04)
(alias 74AHC04)
(alias 74AHCT04))
(description "Hex Inverter")
(docs http://www.ti.com/lit/gpn/sn74LS04)
(footprints
(fp DIP*W7.62mm*)
(fp SSOP?14*)
(fp TSSOP?14*))
(fields
(field (name Reference) U)
(field (name Value) 74LS04))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type output))
(pin (num 3) (name ~) (type input))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name ~) (type input))
(pin (num 6) (name ~) (type output))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name ~) (type output))
(pin (num 9) (name ~) (type input))
(pin (num 10) (name ~) (type output))
(pin (num 11) (name ~) (type input))
(pin (num 12) (name ~) (type output))
(pin (num 13) (name ~) (type input))
(pin (num 14) (name VCC) (type power_in))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part AP1117-15)
(aliases
(alias AP1117-18)
(alias AP1117-25)
(alias AP1117-33)
(alias AP1117-50)
(alias LD1117S33TR_SOT223)
(alias LD1117S12TR_SOT223)
(alias LD1117S18TR_SOT223)
(alias LD1117S25TR_SOT223)
(alias LD1117S50TR_SOT223)
(alias NCP1117-12_SOT223)
(alias NCP1117-1.5_SOT223)
(alias NCP1117-1.8_SOT223)
(alias NCP1117-2.0_SOT223)
(alias NCP1117-2.5_SOT223)
(alias NCP1117-2.85_SOT223)
(alias NCP1117-3.3_SOT223)
(alias NCP1117-5.0_SOT223)
(alias AMS1117-1.5)
(alias AMS1117-1.8)
(alias AMS1117-2.5)
(alias AMS1117-2.85)
(alias AMS1117-3.3)
(alias AMS1117-5.0))
(description "1A Low Dropout regulator, positive, 1.5V fixed output, SOT-223")
(docs http://www.diodes.com/datasheets/AP1117.pdf)
(footprints
(fp SOT?223*TabPin2*))
(fields
(field (name Reference) U)
(field (name Value) AP1117-15)
(field (name Footprint) Package_TO_SOT_SMD:SOT-223-3_TabPin2))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name VI) (type power_in))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part BSS138)
(aliases
(alias 2N7002)
(alias 2N7002E)
(alias 2N7002H)
(alias 2N7002K)
(alias BS170F)
(alias BS870)
(alias BSN20)
(alias BSS123)
(alias BSS127S)
(alias DMG2302U)
(alias DMG3402L)
(alias DMG3404L)
(alias DMG3406L)
(alias DMG3414U)
(alias DMG3418L)
(alias DMN10H220L)
(alias DMN10H700S)
(alias DMN13H750S)
(alias DMN2041L)
(alias DMN2050L)
(alias DMN2056U)
(alias DMN2058U)
(alias DMN2075U)
(alias DMN2230U)
(alias DMN24H11DS)
(alias DMN24H3D5L)
(alias DMN3042L)
(alias DMN3051L)
(alias DMN30H4D0L)
(alias DMN3110S)
(alias DMN3150L)
(alias DMN3300U)
(alias DMN3404L)
(alias DMN6075S)
(alias DMN6140L)
(alias DMN67D7L)
(alias DMN67D8L)
(alias MMBF170)
(alias VN10LF)
(alias ZVN3306F)
(alias ZVN3310F)
(alias ZVN3320F)
(alias ZVN4106F)
(alias ZXM61N02F)
(alias ZXM61N03F)
(alias ZXMN10A07F)
(alias ZXMN2A01F)
(alias ZXMN2A14F)
(alias ZXMN2B01F)
(alias ZXMN2B14FH)
(alias ZXMN2F30FH)
(alias ZXMN2F34FH)
(alias ZXMN3A01F)
(alias ZXMN3A14F)
(alias ZXMN3B01F)
(alias ZXMN3B14F)
(alias ZXMN3F30FH)
(alias ZXMN6A07F)
(alias IRLML0030)
(alias IRLML2060))
(description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23")
(docs https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) Q)
(field (name Value) BSS138)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part Buzzer)
(description "Buzzer, polarized")
(docs ~)
(footprints
(fp *Buzzer*))
(fields
(field (name Reference) BZ)
(field (name Value) Buzzer))
(pins
(pin (num 1) (name -) (type passive))
(pin (num 2) (name +) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (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 Gotek_Floppy_Disk_Emulator_V2) (part CP)
(description "Polarized capacitor")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part Conn_01x04)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04))
(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))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part Conn_02x05_Odd_Even)
(description "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x05_Odd_Even))
(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))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part Conn_02x17_Odd_Even)
(description "Generic connector, double row, 02x17, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x17_Odd_Even))
(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))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))
(pin (num 27) (name Pin_27) (type passive))
(pin (num 28) (name Pin_28) (type passive))
(pin (num 29) (name Pin_29) (type passive))
(pin (num 30) (name Pin_30) (type passive))
(pin (num 31) (name Pin_31) (type passive))
(pin (num 32) (name Pin_32) (type passive))
(pin (num 33) (name Pin_33) (type passive))
(pin (num 34) (name Pin_34) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part Crystal)
(description "Two pin crystal")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part D)
(description Diode)
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part DIP_Switch)
(description DIP_Switch)
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) DIP_Switch))
(pins
(pin (num 1) (name DC1) (type passive))
(pin (num 2) (name DC2) (type passive))
(pin (num 3) (name J5) (type passive))
(pin (num 4) (name JC) (type passive))
(pin (num 5) (name JB) (type passive))
(pin (num 6) (name S0) (type passive))
(pin (num 7) (name S1) (type passive))
(pin (num 8) (name ~) (type passive))
(pin (num 9) (name ~) (type passive))
(pin (num 10) (name ~) (type passive))
(pin (num 11) (name ~) (type passive))
(pin (num 12) (name ~) (type passive))
(pin (num 13) (name ~) (type passive))
(pin (num 14) (name ~) (type passive))
(pin (num 15) (name ~) (type passive))
(pin (num 16) (name ~) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part KY040_Rotary_Encoder_Module)
(description KY040_Rotary_Encoder_Module)
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) KY040_Rotary_Encoder_Module))
(pins
(pin (num 1) (name CLK) (type passive))
(pin (num 2) (name DT) (type passive))
(pin (num 3) (name SW) (type passive))
(pin (num 4) (name VCC) (type passive))
(pin (num 5) (name GND) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part OLED_Display_0.91"_Module)
(description OLED_Display_0.91"_Module)
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) OLED_Display_0.91"_Module))
(pins
(pin (num 1) (name SDA) (type passive))
(pin (num 2) (name SCL) (type passive))
(pin (num 3) (name VCC) (type passive))
(pin (num 4) (name GND) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part Q_NPN_BEC)
(description "NPN transistor, base/emitter/collector")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_NPN_BEC))
(pins
(pin (num 1) (name B) (type input))
(pin (num 2) (name E) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (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 Gotek_Floppy_Disk_Emulator_V2) (part STM32F105R8Tx)
(aliases
(alias STM32F105RBTx)
(alias STM32F105RCTx))
(description "ARM Cortex-M3 MCU, 64KB flash, 64KB RAM, 72MHz, 2-3.6V, 51 GPIO, LQFP-64")
(docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00220364.pdf)
(footprints
(fp LQFP*10x10mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) STM32F105R8Tx)
(field (name Footprint) Package_QFP:LQFP-64_10x10mm_P0.5mm))
(pins
(pin (num 1) (name VBAT) (type power_in))
(pin (num 2) (name PC13) (type BiDi))
(pin (num 3) (name PC14) (type BiDi))
(pin (num 4) (name PC15) (type BiDi))
(pin (num 5) (name PD0) (type input))
(pin (num 6) (name PD1) (type input))
(pin (num 7) (name NRST) (type input))
(pin (num 8) (name PC0) (type BiDi))
(pin (num 9) (name PC1) (type BiDi))
(pin (num 10) (name PC2) (type BiDi))
(pin (num 11) (name PC3) (type BiDi))
(pin (num 12) (name VSSA) (type power_in))
(pin (num 13) (name VDDA) (type power_in))
(pin (num 14) (name PA0) (type BiDi))
(pin (num 15) (name PA1) (type BiDi))
(pin (num 16) (name PA2) (type BiDi))
(pin (num 17) (name PA3) (type BiDi))
(pin (num 18) (name VSS) (type power_in))
(pin (num 19) (name VDD) (type power_in))
(pin (num 20) (name PA4) (type BiDi))
(pin (num 21) (name PA5) (type BiDi))
(pin (num 22) (name PA6) (type BiDi))
(pin (num 23) (name PA7) (type BiDi))
(pin (num 24) (name PC4) (type BiDi))
(pin (num 25) (name PC5) (type BiDi))
(pin (num 26) (name PB0) (type BiDi))
(pin (num 27) (name PB1) (type BiDi))
(pin (num 28) (name PB2) (type BiDi))
(pin (num 29) (name PB10) (type BiDi))
(pin (num 30) (name PB11) (type BiDi))
(pin (num 31) (name VSS) (type power_in))
(pin (num 32) (name VDD) (type power_in))
(pin (num 33) (name PB12) (type BiDi))
(pin (num 34) (name PB13) (type BiDi))
(pin (num 35) (name PB14) (type BiDi))
(pin (num 36) (name PB15) (type BiDi))
(pin (num 37) (name PC6) (type BiDi))
(pin (num 38) (name PC7) (type BiDi))
(pin (num 39) (name PC8) (type BiDi))
(pin (num 40) (name PC9) (type BiDi))
(pin (num 41) (name PA8) (type BiDi))
(pin (num 42) (name PA9) (type BiDi))
(pin (num 43) (name PA10) (type BiDi))
(pin (num 44) (name PA11) (type BiDi))
(pin (num 45) (name PA12) (type BiDi))
(pin (num 46) (name PA13) (type BiDi))
(pin (num 47) (name VSS) (type power_in))
(pin (num 48) (name VDD) (type power_in))
(pin (num 49) (name PA14) (type BiDi))
(pin (num 50) (name PA15) (type BiDi))
(pin (num 51) (name PC10) (type BiDi))
(pin (num 52) (name PC11) (type BiDi))
(pin (num 53) (name PC12) (type BiDi))
(pin (num 54) (name PD2) (type BiDi))
(pin (num 55) (name PB3) (type BiDi))
(pin (num 56) (name PB4) (type BiDi))
(pin (num 57) (name PB5) (type BiDi))
(pin (num 58) (name PB6) (type BiDi))
(pin (num 59) (name PB7) (type BiDi))
(pin (num 60) (name BOOT0) (type input))
(pin (num 61) (name PB8) (type BiDi))
(pin (num 62) (name PB9) (type BiDi))
(pin (num 63) (name VSS) (type power_in))
(pin (num 64) (name VDD) (type power_in))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part STMPS2141)
(description "Single power-distribution switcher")
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) STMPS2141)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-5))
(pins
(pin (num 1) (name OUT) (type power_out))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name ~FAULT) (type openCol))
(pin (num 4) (name ~EN) (type input))
(pin (num 5) (name IN) (type power_in))))
(libpart (lib Gotek_Floppy_Disk_Emulator_V2) (part USB_A)
(description "USB Type A connector")
(docs " ~")
(footprints
(fp USB*))
(fields
(field (name Reference) J)
(field (name Value) USB_A))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name Shield) (type passive)))))
(libraries
(library (logical Gotek_Floppy_Disk_Emulator_V2)
(uri C:\Pracovni\Projekty\Gotek_Floppy_Disk_Emulator_V2/libs/Gotek_Floppy_Disk_Emulator_V2.lib)))
(nets
(net (code 1) (name "Net-(J6-Pad26)")
(node (ref Q4) (pin 3))
(node (ref R22) (pin 1))
(node (ref J6) (pin 26)))
(net (code 2) (name "Net-(J6-Pad2)")
(node (ref Q2) (pin 3))
(node (ref J6) (pin 2))
(node (ref R14) (pin 1)))
(net (code 3) (name "Net-(J6-Pad28)")
(node (ref Q5) (pin 3))
(node (ref R23) (pin 1))
(node (ref J6) (pin 28)))
(net (code 4) (name "Net-(J6-Pad30)")
(node (ref J6) (pin 30))
(node (ref Q6) (pin 3))
(node (ref R24) (pin 1)))
(net (code 5) (name "Net-(J6-Pad34)")
(node (ref R26) (pin 1))
(node (ref J6) (pin 34))
(node (ref Q7) (pin 3)))
(net (code 6) (name FPI5V_SIDEn)
(node (ref R25) (pin 1))
(node (ref U2) (pin 56))
(node (ref J6) (pin 32)))
(net (code 7) (name FPI5V_WGATEn)
(node (ref R21) (pin 1))
(node (ref U2) (pin 62))
(node (ref J6) (pin 24)))
(net (code 8) (name FPI5V_WDATAn)
(node (ref R20) (pin 1))
(node (ref U2) (pin 41))
(node (ref J6) (pin 22)))
(net (code 9) (name FPI5V_STEPn)
(node (ref J6) (pin 20))
(node (ref R19) (pin 1))
(node (ref U2) (pin 15)))
(net (code 10) (name FPI5V_DIRn)
(node (ref J6) (pin 18))
(node (ref R18) (pin 1))
(node (ref U2) (pin 26)))
(net (code 11) (name "Net-(J5-Pad10)")
(node (ref J5) (pin 10)))
(net (code 12) (name USART1_RX)
(node (ref U2) (pin 43))
(node (ref J5) (pin 3)))
(net (code 13) (name USART1_TX)
(node (ref J5) (pin 5))
(node (ref U2) (pin 42)))
(net (code 14) (name BOOT_0)
(node (ref U2) (pin 60))
(node (ref J5) (pin 9))
(node (ref R27) (pin 1)))
(net (code 15) (name NRST)
(node (ref C2) (pin 1))
(node (ref J5) (pin 1))
(node (ref U2) (pin 7))
(node (ref R1) (pin 2)))
(net (code 16) (name FPO3V_DSKCHGn)
(node (ref U4) (pin 13))
(node (ref U2) (pin 59)))
(net (code 17) (name "Net-(Q5-Pad1)")
(node (ref Q5) (pin 1))
(node (ref R11) (pin 2)))
(net (code 18) (name "Net-(Q7-Pad1)")
(node (ref R13) (pin 2))
(node (ref Q7) (pin 1)))
(net (code 19) (name "Net-(R8-Pad1)")
(node (ref U4) (pin 12))
(node (ref R8) (pin 1)))
(net (code 20) (name "Net-(Q2-Pad1)")
(node (ref Q2) (pin 1))
(node (ref R8) (pin 2)))
(net (code 21) (name "Net-(Q3-Pad1)")
(node (ref R9) (pin 2))
(node (ref Q3) (pin 1)))
(net (code 22) (name "Net-(Q4-Pad1)")
(node (ref Q4) (pin 1))
(node (ref R10) (pin 2)))
(net (code 23) (name "Net-(J6-Pad8)")
(node (ref R16) (pin 1))