-
Notifications
You must be signed in to change notification settings - Fork 0
/
stm32-usb-otg.kicad_pcb
2280 lines (2233 loc) · 165 KB
/
stm32-usb-otg.kicad_pcb
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
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 4.69)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+12P")
(net 2 "GND")
(net 3 "BUCK_FB")
(net 4 "+3.3VA")
(net 5 "Net-(D2-Pad1)")
(net 6 "+3.3VP")
(net 7 "I2C1_SDA")
(net 8 "I2C1_SCLK")
(net 9 "BUCK_EN")
(net 10 "BUCK_IN")
(net 11 "HSE_OUT")
(net 12 "Net-(C7-Pad1)")
(net 13 "BOOT0")
(net 14 "Net-(R1-Pad2)")
(net 15 "BUCK_BST")
(net 16 "BUCK_SW")
(net 17 "USB_CONN_D_-")
(net 18 "USB_CONN_D_+")
(net 19 "USB_D+")
(net 20 "+5V")
(net 21 "USB_D-")
(net 22 "Net-(D1-Pad1)")
(net 23 "Net-(F1-Pad2)")
(net 24 "unconnected-(U2-Pad2)")
(net 25 "unconnected-(U2-Pad3)")
(net 26 "unconnected-(U2-Pad4)")
(net 27 "HSE_IN")
(net 28 "NRST")
(net 29 "unconnected-(U2-Pad8)")
(net 30 "unconnected-(U2-Pad9)")
(net 31 "unconnected-(U2-Pad10)")
(net 32 "unconnected-(U2-Pad11)")
(net 33 "unconnected-(U2-Pad14)")
(net 34 "unconnected-(U2-Pad15)")
(net 35 "LED_STATUS")
(net 36 "unconnected-(U2-Pad17)")
(net 37 "unconnected-(U2-Pad20)")
(net 38 "unconnected-(U2-Pad21)")
(net 39 "unconnected-(U2-Pad22)")
(net 40 "unconnected-(U2-Pad23)")
(net 41 "unconnected-(U2-Pad24)")
(net 42 "unconnected-(U2-Pad25)")
(net 43 "unconnected-(U2-Pad26)")
(net 44 "unconnected-(U2-Pad27)")
(net 45 "unconnected-(U2-Pad28)")
(net 46 "unconnected-(U2-Pad29)")
(net 47 "unconnected-(U2-Pad30)")
(net 48 "Net-(C10-Pad1)")
(net 49 "unconnected-(U2-Pad33)")
(net 50 "unconnected-(U2-Pad34)")
(net 51 "unconnected-(U2-Pad35)")
(net 52 "unconnected-(U2-Pad36)")
(net 53 "unconnected-(U2-Pad37)")
(net 54 "unconnected-(U2-Pad38)")
(net 55 "unconnected-(U2-Pad39)")
(net 56 "unconnected-(U2-Pad40)")
(net 57 "unconnected-(U2-Pad41)")
(net 58 "unconnected-(U2-Pad42)")
(net 59 "unconnected-(U2-Pad43)")
(net 60 "SWD_SWDIO")
(net 61 "Net-(C12-Pad1)")
(net 62 "SWD_SCLK")
(net 63 "unconnected-(U2-Pad50)")
(net 64 "USART3_TX")
(net 65 "USART3_RX")
(net 66 "unconnected-(U2-Pad53)")
(net 67 "unconnected-(U2-Pad54)")
(net 68 "unconnected-(U2-Pad55)")
(net 69 "unconnected-(U2-Pad56)")
(net 70 "unconnected-(U2-Pad57)")
(net 71 "unconnected-(U2-Pad61)")
(net 72 "unconnected-(U2-Pad62)")
(net 73 "Net-(C11-Pad1)")
(net 74 "unconnected-(J1-Pad4)")
(net 75 "unconnected-(J3-Pad6)")
(net 76 "unconnected-(J3-Pad7)")
(net 77 "unconnected-(J3-Pad8)")
(net 78 "+3V3")
(footprint "Package_QFP:LQFP-64_10x10mm_P0.5mm" (layer "F.Cu")
(tedit 5D9F72AF) (tstamp 142e2cf6-b82f-4007-9894-377d26b8ab0d)
(at 73.66 91.44)
(descr "LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7606_7606-6_7606-4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "LQFP QFP")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/865bd549-638b-4183-a0f7-38c6449f3b5d")
(attr smd)
(fp_text reference "U2" (at 0 -7.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2bcb8eff-5353-49d7-940f-1af0870f1ac9)
)
(fp_text value "STM32F405RGT6" (at 0 7.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6115d08d-ef27-4828-8c89-a6e903cffdaa)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29294d56-41f1-4ba6-be62-297226dcdbdf)
)
(fp_line (start -5.11 -5.11) (end -5.11 -4.16) (layer "F.SilkS") (width 0.12) (tstamp 3e4b4d52-ec1d-4c6c-8348-5ce6174b6e25))
(fp_line (start 4.16 5.11) (end 5.11 5.11) (layer "F.SilkS") (width 0.12) (tstamp 64f601f9-168a-49d5-acec-502d01d3c42d))
(fp_line (start 5.11 -5.11) (end 5.11 -4.16) (layer "F.SilkS") (width 0.12) (tstamp 65d5c78a-4863-4a6e-8ee9-7f7694e5dd47))
(fp_line (start 5.11 5.11) (end 5.11 4.16) (layer "F.SilkS") (width 0.12) (tstamp 75b3e860-eda3-41e8-8dba-396cd6130ad6))
(fp_line (start -4.16 5.11) (end -5.11 5.11) (layer "F.SilkS") (width 0.12) (tstamp 9fdfdce1-97e8-4aba-b333-1f8d317b5f20))
(fp_line (start -5.11 -4.16) (end -6.45 -4.16) (layer "F.SilkS") (width 0.12) (tstamp ada693f8-405a-4ed4-a362-368ec4995726))
(fp_line (start 4.16 -5.11) (end 5.11 -5.11) (layer "F.SilkS") (width 0.12) (tstamp c97ac9e6-267e-495c-9e16-6838757c4006))
(fp_line (start -4.16 -5.11) (end -5.11 -5.11) (layer "F.SilkS") (width 0.12) (tstamp f23ff5c1-67ee-41ec-99a6-6a21a3430465))
(fp_line (start -5.11 5.11) (end -5.11 4.16) (layer "F.SilkS") (width 0.12) (tstamp fd71d7ce-19f7-411b-9f95-5e5cb5d86d98))
(fp_line (start -5.25 -4.15) (end -6.7 -4.15) (layer "F.CrtYd") (width 0.05) (tstamp 11c13b9d-0404-4268-bab1-f545d338c0be))
(fp_line (start -5.25 5.25) (end -5.25 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 21f58734-fe5c-4a86-add9-a9d5a28072d0))
(fp_line (start 4.15 5.25) (end 5.25 5.25) (layer "F.CrtYd") (width 0.05) (tstamp 352f28bf-b1c2-4de5-992d-e57cf2e8483f))
(fp_line (start 5.25 4.15) (end 6.7 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 37fed5f7-4342-43d4-8e52-4cb994a65b60))
(fp_line (start 4.15 -6.7) (end 4.15 -5.25) (layer "F.CrtYd") (width 0.05) (tstamp 40aaa59f-8dcd-4cd6-9868-6ce419e8ad14))
(fp_line (start -5.25 -5.25) (end -5.25 -4.15) (layer "F.CrtYd") (width 0.05) (tstamp 47c2b278-ae5d-4e95-b5c8-9e4f00c4a0ec))
(fp_line (start -4.15 -5.25) (end -5.25 -5.25) (layer "F.CrtYd") (width 0.05) (tstamp 4bc286e0-6a16-4d35-a592-670f1762f921))
(fp_line (start 5.25 -4.15) (end 6.7 -4.15) (layer "F.CrtYd") (width 0.05) (tstamp 52eb69d9-05dd-4db7-bb13-e7fdbccb6632))
(fp_line (start 4.15 6.7) (end 4.15 5.25) (layer "F.CrtYd") (width 0.05) (tstamp 553f8fdd-c870-4163-a81b-a10a24a3351e))
(fp_line (start -4.15 6.7) (end -4.15 5.25) (layer "F.CrtYd") (width 0.05) (tstamp 5f3c7c7b-952a-4c09-b23f-5b10f026f34c))
(fp_line (start 0 6.7) (end -4.15 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 6ce712c5-fc40-4079-b769-1caeda39d8f3))
(fp_line (start 5.25 5.25) (end 5.25 4.15) (layer "F.CrtYd") (width 0.05) (tstamp 7243eb0d-2759-4180-82f4-00ea24b88636))
(fp_line (start 0 6.7) (end 4.15 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 7ab98ccd-8a88-4127-bdc9-df594bbf05d4))
(fp_line (start 0 -6.7) (end 4.15 -6.7) (layer "F.CrtYd") (width 0.05) (tstamp 84a7fc7b-5bd9-45c8-89b5-3a5bcad31a54))
(fp_line (start 6.7 4.15) (end 6.7 0) (layer "F.CrtYd") (width 0.05) (tstamp 9d701cfb-72eb-49e5-b06c-a0a537ec2982))
(fp_line (start 6.7 -4.15) (end 6.7 0) (layer "F.CrtYd") (width 0.05) (tstamp b25d305d-f454-4595-910d-184c3b47ae06))
(fp_line (start -6.7 4.15) (end -6.7 0) (layer "F.CrtYd") (width 0.05) (tstamp b367d731-810d-4dbe-aa2e-ab2616fc23ec))
(fp_line (start 0 -6.7) (end -4.15 -6.7) (layer "F.CrtYd") (width 0.05) (tstamp b85e7fcc-fcb8-4f3f-b9d9-a567574ce4fb))
(fp_line (start -4.15 -6.7) (end -4.15 -5.25) (layer "F.CrtYd") (width 0.05) (tstamp c4d478b4-b5a6-43c6-843f-26702f99ff1d))
(fp_line (start -5.25 4.15) (end -6.7 4.15) (layer "F.CrtYd") (width 0.05) (tstamp ca1ed9ca-0cff-4782-8c33-4386bceb5f4f))
(fp_line (start -6.7 -4.15) (end -6.7 0) (layer "F.CrtYd") (width 0.05) (tstamp d87cc3e6-70e4-41ba-bfa9-1612995ab3dd))
(fp_line (start 4.15 -5.25) (end 5.25 -5.25) (layer "F.CrtYd") (width 0.05) (tstamp e483f698-f72e-4267-b2e6-53386eaa9d25))
(fp_line (start 5.25 -5.25) (end 5.25 -4.15) (layer "F.CrtYd") (width 0.05) (tstamp e69003da-ee45-47fd-a7b8-43f97b6fde29))
(fp_line (start -4.15 5.25) (end -5.25 5.25) (layer "F.CrtYd") (width 0.05) (tstamp f04224a8-ae30-44b3-a012-c883be8c361b))
(fp_line (start 5 5) (end -5 5) (layer "F.Fab") (width 0.1) (tstamp 104e71da-dfca-45be-b72b-a07760a6df68))
(fp_line (start -4 -5) (end 5 -5) (layer "F.Fab") (width 0.1) (tstamp 656d53ce-f566-445c-b0e6-a23f4f7c85c3))
(fp_line (start 5 -5) (end 5 5) (layer "F.Fab") (width 0.1) (tstamp a2e558f5-613f-46e9-9cf9-2bb36cf255b2))
(fp_line (start -5 -4) (end -4 -5) (layer "F.Fab") (width 0.1) (tstamp af3133d6-3567-4a5e-85de-7a388c670552))
(fp_line (start -5 5) (end -5 -4) (layer "F.Fab") (width 0.1) (tstamp bb101303-688e-47cd-94d7-3f017d5bbc1b))
(pad "1" smd roundrect (at -5.675 -3.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3.3VP") (pinfunction "VBAT") (pintype "power_in") (tstamp 7bdee640-e6be-4899-b318-a0ad1af68164))
(pad "2" smd roundrect (at -5.675 -3.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "unconnected-(U2-Pad2)") (pinfunction "PC13") (pintype "bidirectional+no_connect") (tstamp 28221cea-e5dd-4443-909d-f89dc42a5054))
(pad "3" smd roundrect (at -5.675 -2.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "unconnected-(U2-Pad3)") (pinfunction "PC14") (pintype "bidirectional+no_connect") (tstamp 01478f52-711e-460d-9130-927d9df325cb))
(pad "4" smd roundrect (at -5.675 -2.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "unconnected-(U2-Pad4)") (pinfunction "PC15") (pintype "bidirectional+no_connect") (tstamp 59fe4e68-4119-4952-b511-7d1576b16691))
(pad "5" smd roundrect (at -5.675 -1.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "HSE_IN") (pinfunction "PH0") (pintype "input") (tstamp d9a88a97-e7e1-4571-8028-07e1b736766b))
(pad "6" smd roundrect (at -5.675 -1.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "HSE_OUT") (pinfunction "PH1") (pintype "input") (tstamp 9795a58d-0ac3-430a-9422-aa4c197a5f6c))
(pad "7" smd roundrect (at -5.675 -0.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "NRST") (pinfunction "NRST") (pintype "input") (tstamp 5256a2e5-5d23-4520-bca8-57cb50ff01c2))
(pad "8" smd roundrect (at -5.675 -0.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "unconnected-(U2-Pad8)") (pinfunction "PC0") (pintype "bidirectional+no_connect") (tstamp 3da59bc6-70b3-471f-bbfc-55990eeb98e5))
(pad "9" smd roundrect (at -5.675 0.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "unconnected-(U2-Pad9)") (pinfunction "PC1") (pintype "bidirectional+no_connect") (tstamp 7d09a68e-643b-46b5-bca3-b94cb9bccd70))
(pad "10" smd roundrect (at -5.675 0.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "unconnected-(U2-Pad10)") (pinfunction "PC2") (pintype "bidirectional+no_connect") (tstamp 1c44338c-b9a1-4269-978f-e8fd90211a46))
(pad "11" smd roundrect (at -5.675 1.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "unconnected-(U2-Pad11)") (pinfunction "PC3") (pintype "bidirectional+no_connect") (tstamp cef3c07b-49ed-4b95-b754-4daff9ad0cb2))
(pad "12" smd roundrect (at -5.675 1.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "VSSA") (pintype "power_in") (tstamp 1962e27a-f25d-407c-98fc-1bbfd329b44d))
(pad "13" smd roundrect (at -5.675 2.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3.3VA") (pinfunction "VDDA") (pintype "power_in") (tstamp cbc71f36-8fad-4a3c-aed3-9c3f6e0161dd))
(pad "14" smd roundrect (at -5.675 2.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "unconnected-(U2-Pad14)") (pinfunction "PA0") (pintype "bidirectional+no_connect") (tstamp 54fb0b19-4912-47f8-a26c-6bb537aff49e))
(pad "15" smd roundrect (at -5.675 3.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "unconnected-(U2-Pad15)") (pinfunction "PA1") (pintype "bidirectional+no_connect") (tstamp 2d2a12db-b659-4807-8426-fec9fa84c156))
(pad "16" smd roundrect (at -5.675 3.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "LED_STATUS") (pinfunction "PA2") (pintype "bidirectional") (tstamp ffed2abe-19c1-484a-85f6-c11ad414bcd4))
(pad "17" smd roundrect (at -3.75 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "unconnected-(U2-Pad17)") (pinfunction "PA3") (pintype "bidirectional+no_connect") (tstamp c50e5885-8a58-4ee4-a5e7-bcd8f4b418f2))
(pad "18" smd roundrect (at -3.25 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 1108f7d7-1300-4e64-9d0c-b460edb02c0e))
(pad "19" smd roundrect (at -2.75 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3.3VP") (pinfunction "VDD") (pintype "power_in") (tstamp b80aa845-c1c7-4a36-86eb-13202c5b8807))
(pad "20" smd roundrect (at -2.25 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "unconnected-(U2-Pad20)") (pinfunction "PA4") (pintype "bidirectional+no_connect") (tstamp e17afcb0-49dd-4f12-a913-1d8e2e4c5b94))
(pad "21" smd roundrect (at -1.75 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "unconnected-(U2-Pad21)") (pinfunction "PA5") (pintype "bidirectional+no_connect") (tstamp 045e2b02-bbb9-4128-b50f-816a961b17ef))
(pad "22" smd roundrect (at -1.25 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "unconnected-(U2-Pad22)") (pinfunction "PA6") (pintype "bidirectional+no_connect") (tstamp fd0c6a70-4754-40da-b8db-cbc81b3ceeb4))
(pad "23" smd roundrect (at -0.75 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "unconnected-(U2-Pad23)") (pinfunction "PA7") (pintype "bidirectional+no_connect") (tstamp 39b77ad4-840a-4880-8672-f09699d06495))
(pad "24" smd roundrect (at -0.25 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "unconnected-(U2-Pad24)") (pinfunction "PC4") (pintype "bidirectional+no_connect") (tstamp ccf65e24-b980-469f-8862-e397985c8f5a))
(pad "25" smd roundrect (at 0.25 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "unconnected-(U2-Pad25)") (pinfunction "PC5") (pintype "bidirectional+no_connect") (tstamp 61c5e7b9-ec75-459b-8f55-aa6dcdc47663))
(pad "26" smd roundrect (at 0.75 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "unconnected-(U2-Pad26)") (pinfunction "PB0") (pintype "bidirectional+no_connect") (tstamp d577f635-837f-4cd5-b539-f043f68e5a8d))
(pad "27" smd roundrect (at 1.25 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "unconnected-(U2-Pad27)") (pinfunction "PB1") (pintype "bidirectional+no_connect") (tstamp 694a41fe-e775-441c-bcd9-127b58faffa2))
(pad "28" smd roundrect (at 1.75 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "unconnected-(U2-Pad28)") (pinfunction "PB2") (pintype "bidirectional+no_connect") (tstamp d86ee7d3-b7d0-400c-a7d2-6d9a947e3d7b))
(pad "29" smd roundrect (at 2.25 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "unconnected-(U2-Pad29)") (pinfunction "PB10") (pintype "bidirectional+no_connect") (tstamp 91125ed1-04ac-414b-89bd-9ef46367e239))
(pad "30" smd roundrect (at 2.75 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 47 "unconnected-(U2-Pad30)") (pinfunction "PB11") (pintype "bidirectional+no_connect") (tstamp 6e2f7fa6-1ee9-4775-917f-ada02dc13bcd))
(pad "31" smd roundrect (at 3.25 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "Net-(C10-Pad1)") (pinfunction "VCAP_1") (pintype "power_in") (tstamp b52c85a5-ff67-4555-aaf4-e70f1c30d55d))
(pad "32" smd roundrect (at 3.75 5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3.3VP") (pinfunction "VDD") (pintype "power_in") (tstamp d8a72df0-904a-413a-8147-12e635dec35e))
(pad "33" smd roundrect (at 5.675 3.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "unconnected-(U2-Pad33)") (pinfunction "PB12") (pintype "bidirectional+no_connect") (tstamp 514ae2b1-96b3-4a21-b8c7-764f8d6a410f))
(pad "34" smd roundrect (at 5.675 3.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "unconnected-(U2-Pad34)") (pinfunction "PB13") (pintype "bidirectional+no_connect") (tstamp ca9af257-407b-4fa6-90c5-8313bc030faa))
(pad "35" smd roundrect (at 5.675 2.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 51 "unconnected-(U2-Pad35)") (pinfunction "PB14") (pintype "bidirectional+no_connect") (tstamp bb081485-e2b1-4818-82d4-d89be29e0cf2))
(pad "36" smd roundrect (at 5.675 2.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 52 "unconnected-(U2-Pad36)") (pinfunction "PB15") (pintype "bidirectional+no_connect") (tstamp a52727ba-c795-46c8-abd8-04003e3b5d32))
(pad "37" smd roundrect (at 5.675 1.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 53 "unconnected-(U2-Pad37)") (pinfunction "PC6") (pintype "bidirectional+no_connect") (tstamp 55cd752b-c945-4ee3-943d-9a764cf13c98))
(pad "38" smd roundrect (at 5.675 1.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 54 "unconnected-(U2-Pad38)") (pinfunction "PC7") (pintype "bidirectional+no_connect") (tstamp ae57a25c-90b2-489d-a892-baf3543d30b1))
(pad "39" smd roundrect (at 5.675 0.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 55 "unconnected-(U2-Pad39)") (pinfunction "PC8") (pintype "bidirectional+no_connect") (tstamp 5839a4ee-743d-44ba-92fc-43f59394a1eb))
(pad "40" smd roundrect (at 5.675 0.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 56 "unconnected-(U2-Pad40)") (pinfunction "PC9") (pintype "bidirectional+no_connect") (tstamp bcb3df34-74ce-4a88-a925-e228ed093aaf))
(pad "41" smd roundrect (at 5.675 -0.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 57 "unconnected-(U2-Pad41)") (pinfunction "PA8") (pintype "bidirectional+no_connect") (tstamp 8fe65e92-8ad0-4c44-9f8d-c997fb37f7c6))
(pad "42" smd roundrect (at 5.675 -0.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 58 "unconnected-(U2-Pad42)") (pinfunction "PA9") (pintype "bidirectional+no_connect") (tstamp 6b27d8b2-ee0e-419a-8cca-494e0b743c57))
(pad "43" smd roundrect (at 5.675 -1.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 59 "unconnected-(U2-Pad43)") (pinfunction "PA10") (pintype "bidirectional+no_connect") (tstamp 0771d364-a669-462b-8c26-3e56d6fd2b2c))
(pad "44" smd roundrect (at 5.675 -1.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "USB_D-") (pinfunction "PA11") (pintype "bidirectional") (tstamp 12b00521-7c4e-40ed-8476-41166bc98232))
(pad "45" smd roundrect (at 5.675 -2.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "USB_D+") (pinfunction "PA12") (pintype "bidirectional") (tstamp 378d878c-684c-4413-91f7-56517fc1da45))
(pad "46" smd roundrect (at 5.675 -2.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 60 "SWD_SWDIO") (pinfunction "PA13") (pintype "bidirectional") (tstamp 9fb424fe-4f6c-4d22-8792-3bb91a9b6a60))
(pad "47" smd roundrect (at 5.675 -3.25) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 61 "Net-(C12-Pad1)") (pinfunction "VCAP_2") (pintype "power_in") (tstamp 8e3c7592-f609-41c4-a633-9cb7fa93b36f))
(pad "48" smd roundrect (at 5.675 -3.75) (size 1.55 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3.3VP") (pinfunction "VDD") (pintype "power_in") (tstamp 06c9fff9-d234-4acc-8340-4f6ddcba6a9a))
(pad "49" smd roundrect (at 3.75 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 62 "SWD_SCLK") (pinfunction "PA14") (pintype "bidirectional") (tstamp 3945bbe9-fa16-48fb-a830-b6e58168c3db))
(pad "50" smd roundrect (at 3.25 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 63 "unconnected-(U2-Pad50)") (pinfunction "PA15") (pintype "bidirectional+no_connect") (tstamp 048ad1d5-0daa-43af-83fc-460c468159ce))
(pad "51" smd roundrect (at 2.75 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 64 "USART3_TX") (pinfunction "PC10") (pintype "bidirectional") (tstamp a5cff95b-ff4c-4ebd-a886-b64b2a629dfb))
(pad "52" smd roundrect (at 2.25 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 65 "USART3_RX") (pinfunction "PC11") (pintype "bidirectional") (tstamp 60600ea1-a9e4-471b-8bf1-dc221bd1fd73))
(pad "53" smd roundrect (at 1.75 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 66 "unconnected-(U2-Pad53)") (pinfunction "PC12") (pintype "bidirectional+no_connect") (tstamp 3a77c15f-41c3-499d-9555-62ddb29becbf))
(pad "54" smd roundrect (at 1.25 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 67 "unconnected-(U2-Pad54)") (pinfunction "PD2") (pintype "bidirectional+no_connect") (tstamp 09ee1140-4c75-47e3-aead-8d07ca2decb8))
(pad "55" smd roundrect (at 0.75 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 68 "unconnected-(U2-Pad55)") (pinfunction "PB3") (pintype "bidirectional+no_connect") (tstamp 4fe3dbff-9ade-4331-87a1-ea9a258a23f7))
(pad "56" smd roundrect (at 0.25 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 69 "unconnected-(U2-Pad56)") (pinfunction "PB4") (pintype "bidirectional+no_connect") (tstamp 4c92833e-b01f-4974-b990-2d70f23eadc4))
(pad "57" smd roundrect (at -0.25 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 70 "unconnected-(U2-Pad57)") (pinfunction "PB5") (pintype "bidirectional+no_connect") (tstamp 81172fbc-f24e-4173-965f-d88ed2c48035))
(pad "58" smd roundrect (at -0.75 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "I2C1_SCLK") (pinfunction "PB6") (pintype "bidirectional") (tstamp 8a023770-9607-43f4-98b6-819a42a13144))
(pad "59" smd roundrect (at -1.25 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "I2C1_SDA") (pinfunction "PB7") (pintype "bidirectional") (tstamp 25f0552e-e11c-44a2-829b-0ccf4f160607))
(pad "60" smd roundrect (at -1.75 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "BOOT0") (pinfunction "BOOT0") (pintype "input") (tstamp 2dd0add1-9a95-4b8c-a47a-bb7c827bbb1c))
(pad "61" smd roundrect (at -2.25 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 71 "unconnected-(U2-Pad61)") (pinfunction "PB8") (pintype "bidirectional+no_connect") (tstamp 8efb4ac1-5730-4dda-97f5-8467abb9129c))
(pad "62" smd roundrect (at -2.75 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 72 "unconnected-(U2-Pad62)") (pinfunction "PB9") (pintype "bidirectional+no_connect") (tstamp 04ecc5b9-1245-4cd5-a81b-6d27476f97b6))
(pad "63" smd roundrect (at -3.25 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 4aa05282-739f-4be5-b861-04abac698d96))
(pad "64" smd roundrect (at -3.75 -5.675) (size 0.3 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3.3VP") (pinfunction "VDD") (pintype "power_in") (tstamp a0320f27-0744-407b-87d8-0c108bce1795))
(model "${KICAD6_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-64_10x10mm_P0.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-5-6" (layer "F.Cu")
(tedit 5A02FF81) (tstamp 169fbf9e-c683-4879-aed2-ef27f2a35b47)
(at 137.16 69.37)
(descr "TO-5-6")
(tags "TO-5-6")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/9c8a9efe-6b90-497f-baa0-5232f133ccf9")
(attr through_hole)
(fp_text reference "U1" (at 2.54 -5.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63065c9b-8053-430e-bdb0-072a1e704078)
)
(fp_text value "MP2359" (at 2.54 5.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a892666-f893-4a9e-a892-48887ab6e38d)
)
(fp_text user "${REFERENCE}" (at 2.54 -5.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3cdd1d4e-65c2-4726-934e-57a60432541b)
)
(fp_line (start -0.457084 -3.774902) (end -1.348039 -4.665856) (layer "F.SilkS") (width 0.12) (tstamp 179ded49-c8d7-40c2-a728-5841fda625bd))
(fp_line (start -2.125856 -3.888039) (end -1.234902 -2.997084) (layer "F.SilkS") (width 0.12) (tstamp 2717f789-6e9a-45e5-ba68-0e97a483a090))
(fp_line (start -1.348039 -4.665856) (end -2.125856 -3.888039) (layer "F.SilkS") (width 0.12) (tstamp 7ce3b15b-ff03-4c37-a69c-50cee9ac8363))
(fp_arc (start -0.457084 -3.774902) (mid 5.948125 3.408384) (end -1.234674 -2.997371) (layer "F.SilkS") (width 0.12) (tstamp f21a2c3b-3754-4d5f-9b26-191ad8769b23))
(fp_line (start -2.41 4.95) (end 7.49 4.95) (layer "F.CrtYd") (width 0.05) (tstamp 39146702-2809-457e-9c0d-9bd6a611c17a))
(fp_line (start 7.49 -4.95) (end -2.41 -4.95) (layer "F.CrtYd") (width 0.05) (tstamp c06b07a5-81e8-4fba-b75f-eafa053e1406))
(fp_line (start -2.41 -4.95) (end -2.41 4.95) (layer "F.CrtYd") (width 0.05) (tstamp f27a0a1a-93ad-49f4-89fe-1730de977ec9))
(fp_line (start 7.49 4.95) (end 7.49 -4.95) (layer "F.CrtYd") (width 0.05) (tstamp f940397b-29a5-4617-bd9c-f177a971b5e8))
(fp_line (start -0.465408 -3.61352) (end -1.27151 -4.419621) (layer "F.Fab") (width 0.1) (tstamp 32a33c14-ad35-4ab3-9d14-69821847ef1b))
(fp_line (start -1.27151 -4.419621) (end -1.879621 -3.81151) (layer "F.Fab") (width 0.1) (tstamp a7b396e8-387b-4006-982d-ca6acb770010))
(fp_line (start -1.879621 -3.81151) (end -1.07352 -3.005408) (layer "F.Fab") (width 0.1) (tstamp dfa04c8b-bd8e-46e0-b63e-f2b2ac1e224a))
(fp_arc (start -0.465408 -3.61352) (mid 5.863443 3.323361) (end -1.073594 -3.005319) (layer "F.Fab") (width 0.1) (tstamp f65da57c-5a39-4e71-a4f8-1adb60cea20b))
(fp_circle (center 2.54 0) (end 6.79 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 97a1499d-8f21-4661-8bed-0e1e89d0838c))
(pad "1" thru_hole oval (at 0 0) (size 1.6 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 15 "BUCK_BST") (pinfunction "BST") (pintype "output") (tstamp 5962fb65-4840-4342-83d8-ebe11a13a0c5))
(pad "2" thru_hole oval (at 0.743949 1.796051) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp ebd0fc89-8e13-43bb-945a-2e8b75c613c1))
(pad "3" thru_hole oval (at 2.54 2.54) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 3 "BUCK_FB") (pinfunction "FB") (pintype "output") (tstamp 7b914471-3d1b-40f6-8fee-092f137ff2e0))
(pad "4" thru_hole oval (at 5.08 0) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 9 "BUCK_EN") (pinfunction "EN") (pintype "input") (tstamp fa96cd3f-f267-4e6d-9212-fd48f9f4aabe))
(pad "5" thru_hole oval (at 4.336051 -1.796051) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 10 "BUCK_IN") (pinfunction "IN") (pintype "input") (tstamp 77ef8d87-4775-444f-8280-518fd29c4b5c))
(pad "6" thru_hole oval (at 2.54 -2.54) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)
(net 16 "BUCK_SW") (pinfunction "SW") (pintype "output") (tstamp cefc466a-271e-483c-abaa-dae7c1574727))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-5-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1c72f17e-d445-4a58-842c-0dfdfce350d3)
(at 152.28 64.89)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/b7c29d9f-4a4c-4729-9b4d-c819885555c8")
(attr smd)
(fp_text reference "R3" (at 0 -1.17) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 947acefe-ac33-4206-9de3-25b50b4731dd)
)
(fp_text value "100k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b0fa014-c61e-4314-8f3d-160bae26aa4c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 466f8d1c-c448-4a97-87ec-4e94847952fc)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 7f4c333e-95dd-4f0c-b8a5-bc57a1ff22fb))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp e8a5d0de-f294-42b4-a32d-95b01f36190d))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 22f1a18b-d140-451a-a871-4c11294da049))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7f251369-eace-44ab-848c-cd3c5957381c))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp a3a4ba60-3271-4e9a-ba37-9a84bcaf9db5))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp ec5e2d7d-3bc6-4fcb-8261-5aceb45c3c19))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 2c913718-efbb-4ec8-bb76-bae88d46ed51))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 47472735-41ec-4096-96fb-ce611f148c4c))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp a02008a9-68e1-4709-bfc0-24c27997889b))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp ec464e2c-70c1-4b51-8600-7384ed6e411a))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "BUCK_IN") (pintype "passive") (tstamp 7bafe9bc-eba9-4810-a855-8b4f34bb53ef))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "BUCK_EN") (pintype "passive") (tstamp 594eb499-401a-4092-9a2b-1cc8f8989e5b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_1.00mm:PinHeader_2x05_P1.00mm_Vertical_SMD" (layer "F.Cu")
(tedit 59FED738) (tstamp 21846961-2a78-4e46-8242-5b4de77ca82d)
(at 113.27 88.05)
(descr "surface-mounted straight pin header, 2x05, 1.00mm pitch, double rows")
(tags "Surface mounted pin header SMD 2x05 1.00mm double row")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/0b7e1823-6eac-4b15-b3be-85dcf20f7791")
(attr smd)
(fp_text reference "J3" (at 0 -3.56) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e5cd445-0654-433f-a688-b9a23b9e5558)
)
(fp_text value "SWD" (at 0 3.56) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c15462ce-d862-47c0-8d02-faaa43912ad5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f21cb60-1df5-4469-8858-6fe21b88fa8a)
)
(fp_line (start 1.21 2.51) (end 1.21 2.56) (layer "F.SilkS") (width 0.12) (tstamp 056f9cb3-715f-434f-b47c-815c372d9a5b))
(fp_line (start -2.59 -2.51) (end -1.21 -2.51) (layer "F.SilkS") (width 0.12) (tstamp 22785b00-396f-44a8-8e08-62628c54033a))
(fp_line (start -1.21 -2.56) (end 1.21 -2.56) (layer "F.SilkS") (width 0.12) (tstamp 2eb44e1a-4042-4ea6-aca2-4836a6ec84e9))
(fp_line (start -1.21 2.51) (end -1.21 2.56) (layer "F.SilkS") (width 0.12) (tstamp 6356fe97-06cd-4a4b-b2f2-2e98498da4a1))
(fp_line (start -1.21 -2.56) (end -1.21 -2.51) (layer "F.SilkS") (width 0.12) (tstamp bdf0e688-b15d-45d8-a79c-81e4aaf38323))
(fp_line (start 1.21 -2.56) (end 1.21 -2.51) (layer "F.SilkS") (width 0.12) (tstamp dde2f451-a39d-4356-be48-b264625a1f92))
(fp_line (start -1.21 2.56) (end 1.21 2.56) (layer "F.SilkS") (width 0.12) (tstamp fa7a662e-0f2e-4762-a1b6-993570cda4cb))
(fp_line (start 3.65 3) (end 3.65 -3) (layer "F.CrtYd") (width 0.05) (tstamp 2103272c-7211-4351-8c30-d9ee75c2fa7e))
(fp_line (start -3.65 -3) (end -3.65 3) (layer "F.CrtYd") (width 0.05) (tstamp 67ab6325-5225-42ee-86cc-5aee5e01efce))
(fp_line (start 3.65 -3) (end -3.65 -3) (layer "F.CrtYd") (width 0.05) (tstamp bace1c82-95a6-4669-a7e7-5bc2416e7e84))
(fp_line (start -3.65 3) (end 3.65 3) (layer "F.CrtYd") (width 0.05) (tstamp f238640e-3401-420a-ac31-a433f268cbfc))
(fp_line (start -1.15 -2.15) (end -0.8 -2.5) (layer "F.Fab") (width 0.1) (tstamp 02bac189-ce88-4201-a986-e602f9553dc1))
(fp_line (start 1.15 -2.15) (end 2.4 -2.15) (layer "F.Fab") (width 0.1) (tstamp 03f16627-7ce3-4e9a-9706-778678e98c1c))
(fp_line (start -1.15 -1.15) (end -2.4 -1.15) (layer "F.Fab") (width 0.1) (tstamp 07678248-0774-49ca-a377-01b7e220adb6))
(fp_line (start 1.15 0.85) (end 2.4 0.85) (layer "F.Fab") (width 0.1) (tstamp 181135d6-242b-4baf-94b0-054802ef6df0))
(fp_line (start 1.15 -2.5) (end 1.15 2.5) (layer "F.Fab") (width 0.1) (tstamp 1d5c7df0-522c-4a10-9a69-07abea9a1183))
(fp_line (start 2.4 0.85) (end 2.4 1.15) (layer "F.Fab") (width 0.1) (tstamp 211ba5f5-6627-4b10-b9d4-2b719a124b05))
(fp_line (start -2.4 1.85) (end -2.4 2.15) (layer "F.Fab") (width 0.1) (tstamp 2143a25a-25e8-4e2e-9312-ce2f7400ce5a))
(fp_line (start -0.8 -2.5) (end 1.15 -2.5) (layer "F.Fab") (width 0.1) (tstamp 226e6848-5ca6-48e1-bb24-ee9637a3e720))
(fp_line (start -2.4 -1.15) (end -2.4 -0.85) (layer "F.Fab") (width 0.1) (tstamp 26cd24ad-dc7e-4f22-8cf0-d09179b0d265))
(fp_line (start -2.4 -0.15) (end -2.4 0.15) (layer "F.Fab") (width 0.1) (tstamp 306245f6-c9a6-4171-8c7a-27ad4c131cc8))
(fp_line (start -2.4 -1.85) (end -1.15 -1.85) (layer "F.Fab") (width 0.1) (tstamp 3be5bd27-9454-4a5f-b633-97d435ecd4be))
(fp_line (start 2.4 -1.15) (end 2.4 -0.85) (layer "F.Fab") (width 0.1) (tstamp 3f473a8d-2328-4446-9e36-aaf72c0dfceb))
(fp_line (start -2.4 1.15) (end -1.15 1.15) (layer "F.Fab") (width 0.1) (tstamp 43d030b0-c46c-4448-bc9e-987f12c7559d))
(fp_line (start 2.4 -1.85) (end 1.15 -1.85) (layer "F.Fab") (width 0.1) (tstamp 45580b2c-f853-4bae-b48d-8b2b7a8c9649))
(fp_line (start -2.4 -0.85) (end -1.15 -0.85) (layer "F.Fab") (width 0.1) (tstamp 60e6d176-aade-439f-80d8-764c13ba9024))
(fp_line (start 2.4 -0.15) (end 2.4 0.15) (layer "F.Fab") (width 0.1) (tstamp 6884c1b4-ba74-400a-b15a-2bf546c04e73))
(fp_line (start -1.15 1.85) (end -2.4 1.85) (layer "F.Fab") (width 0.1) (tstamp 6bd7efd5-74f5-4b09-8bb7-5762073a2f78))
(fp_line (start -1.15 -2.15) (end -2.4 -2.15) (layer "F.Fab") (width 0.1) (tstamp 6ec69bf0-bd27-4e31-8522-71d586cb9b08))
(fp_line (start -1.15 -0.15) (end -2.4 -0.15) (layer "F.Fab") (width 0.1) (tstamp 7056f785-c3a5-4410-b6bb-e5d4b16e698a))
(fp_line (start 2.4 0.15) (end 1.15 0.15) (layer "F.Fab") (width 0.1) (tstamp 716698ac-ed16-401e-958b-a147596def51))
(fp_line (start 2.4 2.15) (end 1.15 2.15) (layer "F.Fab") (width 0.1) (tstamp 77a09c2e-107d-4a82-95c7-b222303ba715))
(fp_line (start 2.4 -0.85) (end 1.15 -0.85) (layer "F.Fab") (width 0.1) (tstamp 80215c98-408c-4508-93c7-1e56cf06a8a8))
(fp_line (start -2.4 2.15) (end -1.15 2.15) (layer "F.Fab") (width 0.1) (tstamp 811d06c8-e35a-4323-8e51-11882cc1e2ee))
(fp_line (start 1.15 -1.15) (end 2.4 -1.15) (layer "F.Fab") (width 0.1) (tstamp 8fe07dfe-267e-4da8-ab2a-a7d656544a34))
(fp_line (start -2.4 -2.15) (end -2.4 -1.85) (layer "F.Fab") (width 0.1) (tstamp b1ef00bc-27fd-4f4a-a155-1b738e608b48))
(fp_line (start 1.15 2.5) (end -1.15 2.5) (layer "F.Fab") (width 0.1) (tstamp c9a3c459-3ae2-4228-8c64-9130d340c1be))
(fp_line (start -2.4 0.85) (end -2.4 1.15) (layer "F.Fab") (width 0.1) (tstamp d9486185-1c1d-4547-bd7d-6cdded6e4187))
(fp_line (start 1.15 -0.15) (end 2.4 -0.15) (layer "F.Fab") (width 0.1) (tstamp d9c9046c-34c5-4cac-9cb3-760e2219db2a))
(fp_line (start 2.4 1.15) (end 1.15 1.15) (layer "F.Fab") (width 0.1) (tstamp dcc8b3c7-e00a-4c96-92c3-7cf68574fa70))
(fp_line (start -1.15 0.85) (end -2.4 0.85) (layer "F.Fab") (width 0.1) (tstamp ee19307b-ab88-4d6f-9dfb-4149660b5a08))
(fp_line (start 1.15 1.85) (end 2.4 1.85) (layer "F.Fab") (width 0.1) (tstamp f0305a19-1293-46c9-9810-aa49b8dab8a4))
(fp_line (start 2.4 -2.15) (end 2.4 -1.85) (layer "F.Fab") (width 0.1) (tstamp f1926e02-3170-4727-853e-1c4f3bbf137d))
(fp_line (start 2.4 1.85) (end 2.4 2.15) (layer "F.Fab") (width 0.1) (tstamp fa93048a-0287-417c-a157-84428f11f7dd))
(fp_line (start -1.15 2.5) (end -1.15 -2.15) (layer "F.Fab") (width 0.1) (tstamp fd04ef58-75d9-44e8-b553-d9bff716e067))
(fp_line (start -2.4 0.15) (end -1.15 0.15) (layer "F.Fab") (width 0.1) (tstamp fd41e0a0-0c45-4beb-acb0-15535c603bb5))
(pad "1" smd rect (at -1.65 -2) (size 2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+3.3VP") (pinfunction "Pin_1") (pintype "passive") (tstamp 5404664b-083c-4ae7-9324-834241f1df76))
(pad "2" smd rect (at 1.65 -2) (size 2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 60 "SWD_SWDIO") (pinfunction "Pin_2") (pintype "passive") (tstamp 6b4ca676-3379-4b8d-a1e2-e3fc88dc7cd2))
(pad "3" smd rect (at -1.65 -1) (size 2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 38559462-8913-458e-9fcc-77f1adc4f527))
(pad "4" smd rect (at 1.65 -1) (size 2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 62 "SWD_SCLK") (pinfunction "Pin_4") (pintype "passive") (tstamp 2097c02a-9419-426d-a010-cdecd44e7e36))
(pad "5" smd rect (at -1.65 0) (size 2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp e3401cc1-8833-4b9f-9419-4adbb09db133))
(pad "6" smd rect (at 1.65 0) (size 2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 75 "unconnected-(J3-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp a500369a-3292-46a6-8a64-7c1bf6098bda))
(pad "7" smd rect (at -1.65 1) (size 2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 76 "unconnected-(J3-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 68d49974-bc49-4d87-a030-93a7fa8ebeb6))
(pad "8" smd rect (at 1.65 1) (size 2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 77 "unconnected-(J3-Pad8)") (pinfunction "Pin_8") (pintype "passive+no_connect") (tstamp 917dba0e-1b1e-4fc1-b97b-7105df526305))
(pad "9" smd rect (at -1.65 2) (size 2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 7e72304a-4161-4a22-8d65-75ee76dcdf69))
(pad "10" smd rect (at 1.65 2) (size 2 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "NRST") (pinfunction "Pin_10") (pintype "passive") (tstamp c5c59683-c7c2-4b4e-928e-13e0f78a5fa5))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_2x05_P1.00mm_Vertical_SMD.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 26b5b06d-6731-4f1d-a50f-a1a758285eac)
(at 126.45 91.84)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/ab52a597-98fb-4e70-adc1-b3659bc73e74")
(attr smd)
(fp_text reference "R1" (at 0 -1.17) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e216a3d4-c7c0-40e0-9701-6d206641d342)
)
(fp_text value "10k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 208a6583-df1c-4ff8-9045-47b7770a5518)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 6d7c23f0-27c3-4fa6-89cc-f79a540be70c)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp b98190a3-4e75-4ed8-b75b-e1b37bee46b3))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp d92867dc-3e98-46a9-a48e-3161efe31b10))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 79af4db6-baae-4c77-a86f-0586761cb86a))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp c9a40d5d-4fe7-4da0-89eb-466f8c6c321b))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp cb6506b0-3912-438a-b6ea-123a23611666))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp effa9ffa-d173-4290-8a92-c5f93d4c73ba))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 0c3dbbcf-98e0-48d2-853d-b67234b32313))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 76ff16ff-0d33-4704-b0f8-f9c9f4b3e595))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 89fa7fcb-3c2b-4c1b-b3ed-e2a1cf745f7d))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 97931d4a-7c02-4a9b-a790-a3569eede93c))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "BOOT0") (pintype "passive") (tstamp ed06b896-4df0-4238-b6eb-bbbe5360e849))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(R1-Pad2)") (pintype "passive") (tstamp 551310a4-3882-4605-bfec-f0802df1435c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-3-2-5.08_1x02_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294F11) (tstamp 284b4b05-f802-48af-884a-d2ca721ae34d)
(at 71.12 73.66)
(descr "Terminal Block Phoenix MKDS-3-2-5.08, 2 pins, pitch 5.08mm, size 10.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-3-2-5.08 pitch 5.08mm size 10.2x11.2mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/1fc4ac31-c5c2-4205-ae19-4c4a902842a7")
(attr through_hole)
(fp_text reference "J2" (at 2.54 -6.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc90f0c0-612e-411d-9c41-1a8ebb2b39fc)
)
(fp_text value "Screw_Terminal_01x02" (at 2.54 6.36) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e09508cd-85e8-48bb-9bcb-9bab32279ab6)
)
(fp_text user "${REFERENCE}" (at 2.54 3.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b29e116d-0c94-4f3d-a318-db4c1054931b)
)
(fp_line (start 1.388 -1.654) (end 1.281 -1.547) (layer "F.SilkS") (width 0.12) (tstamp 196e2e1c-99db-48a2-923e-0258bca0805d))
(fp_line (start 6.734 -1.388) (end 6.339 -0.992) (layer "F.SilkS") (width 0.12) (tstamp 1971aaa8-4fc8-4165-91ab-821ea2d686e3))
(fp_line (start -2.84 5.6) (end -2.34 5.6) (layer "F.SilkS") (width 0.12) (tstamp 1bc69943-163a-4f23-a1b2-869455d3610c))
(fp_line (start -2.84 4.86) (end -2.84 5.6) (layer "F.SilkS") (width 0.12) (tstamp 21ca756f-3477-4ce7-b401-446af31305b1))
(fp_line (start -2.6 -5.96) (end 7.68 -5.96) (layer "F.SilkS") (width 0.12) (tstamp 229089b5-d96a-45a7-930c-5b21e68180d7))
(fp_line (start 7.68 -5.96) (end 7.68 5.36) (layer "F.SilkS") (width 0.12) (tstamp 328427ae-624d-4ad5-9eae-c7dba1277b8f))
(fp_line (start -2.6 4.8) (end 7.68 4.8) (layer "F.SilkS") (width 0.12) (tstamp 414df5d7-f19b-4687-a4de-327c40e73e20))
(fp_line (start 3.822 0.992) (end 3.427 1.388) (layer "F.SilkS") (width 0.12) (tstamp 4ee7e00d-7ebf-4975-bd69-7b422f82b3e0))
(fp_line (start -2.6 -5.96) (end -2.6 5.36) (layer "F.SilkS") (width 0.12) (tstamp 55811421-7465-4b7c-a8c0-f5132bc3a205))
(fp_line (start -1.282 1.547) (end -1.388 1.654) (layer "F.SilkS") (width 0.12) (tstamp 7cd22ddf-b7a3-4ab8-89e3-a5e58213159b))
(fp_line (start -2.6 -3.9) (end 7.68 -3.9) (layer "F.SilkS") (width 0.12) (tstamp 8f03ae41-61bd-4463-bc12-db0dde34447c))
(fp_line (start 6.468 -1.654) (end 6.088 -1.274) (layer "F.SilkS") (width 0.12) (tstamp 9eb5fc74-7ee2-4483-b24f-769829d8a6c2))
(fp_line (start 1.654 -1.388) (end 1.547 -1.281) (layer "F.SilkS") (width 0.12) (tstamp a1fd107d-3e8c-4d45-b1b9-b910fe926734))
(fp_line (start 4.073 1.274) (end 3.693 1.654) (layer "F.SilkS") (width 0.12) (tstamp a773823e-0f26-4fe7-b141-87b580d11b17))
(fp_line (start -1.548 1.281) (end -1.654 1.388) (layer "F.SilkS") (width 0.12) (tstamp b5ea13a8-3e37-4201-b115-0647094f76a8))
(fp_line (start -2.6 5.36) (end 7.68 5.36) (layer "F.SilkS") (width 0.12) (tstamp bb5999d5-f86c-445a-9ff9-2a1b539dc199))
(fp_line (start -2.6 2.3) (end 7.68 2.3) (layer "F.SilkS") (width 0.12) (tstamp d9b138bc-0203-4547-9bd8-5f8e532ba1ac))
(fp_circle (center 5.08 0) (end 7.26 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 60af2486-27b0-4394-8b74-bf0b63a58ade))
(fp_circle (center 0 0) (end 2.18 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 642bef19-f089-4145-8521-0c78a2141a57))
(fp_line (start 8.13 5.8) (end 8.13 -6.4) (layer "F.CrtYd") (width 0.05) (tstamp 5e707534-c918-46f7-a5cb-689e5a18b5bb))
(fp_line (start 8.13 -6.4) (end -3.04 -6.4) (layer "F.CrtYd") (width 0.05) (tstamp 6f80fbb2-ac4c-4cbd-929c-985047ad8ccc))
(fp_line (start -3.04 5.8) (end 8.13 5.8) (layer "F.CrtYd") (width 0.05) (tstamp 93ebecb5-a9cc-4d2c-95d6-f1997abc5a8e))
(fp_line (start -3.04 -6.4) (end -3.04 5.8) (layer "F.CrtYd") (width 0.05) (tstamp e7a006ce-0f82-4892-91e0-922dbe7a9a24))
(fp_line (start 6.597 -1.273) (end 3.808 1.517) (layer "F.Fab") (width 0.1) (tstamp 1ddaccf1-4d0b-44e5-b2c4-dfcabfdb2934))
(fp_line (start -2.54 4.8) (end 7.62 4.8) (layer "F.Fab") (width 0.1) (tstamp 288344de-d424-4b26-b740-94d18e9ae516))
(fp_line (start 7.62 5.3) (end -2.04 5.3) (layer "F.Fab") (width 0.1) (tstamp 3836c63d-ca60-4e8e-a339-40980bdccc31))
(fp_line (start 1.273 -1.517) (end -1.517 1.273) (layer "F.Fab") (width 0.1) (tstamp 58633a66-53a7-4a80-bb62-9adf9147da29))
(fp_line (start -2.54 2.3) (end 7.62 2.3) (layer "F.Fab") (width 0.1) (tstamp 89311f2b-7f4a-4f24-93ac-72dc2e834d5d))
(fp_line (start 6.353 -1.517) (end 3.564 1.273) (layer "F.Fab") (width 0.1) (tstamp 8e73e860-7df5-47ee-9d85-a51cffff4073))
(fp_line (start -2.54 4.8) (end -2.54 -5.9) (layer "F.Fab") (width 0.1) (tstamp a658002a-8a7e-43ad-8acb-33b00307f4c4))
(fp_line (start -2.54 -5.9) (end 7.62 -5.9) (layer "F.Fab") (width 0.1) (tstamp a7be9e53-3c65-4638-b824-3d5371aceb9f))
(fp_line (start 1.517 -1.273) (end -1.273 1.517) (layer "F.Fab") (width 0.1) (tstamp c065b0a4-0b93-48f2-9339-44d26009eb1c))
(fp_line (start -2.04 5.3) (end -2.54 4.8) (layer "F.Fab") (width 0.1) (tstamp d23ca5ac-bc4d-44a2-90ac-0b3eaa4af6f8))
(fp_line (start -2.54 -3.9) (end 7.62 -3.9) (layer "F.Fab") (width 0.1) (tstamp eec00f97-9726-4990-8aef-95005e7267d9))
(fp_line (start 7.62 -5.9) (end 7.62 5.3) (layer "F.Fab") (width 0.1) (tstamp fac37166-6544-4a5a-8523-75c307b4539f))
(fp_circle (center 5.08 0) (end 7.08 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 59e03393-006d-471e-9536-bbbd75e54503))
(fp_circle (center 0 0) (end 2 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 9a1807dc-d64a-4457-9c2b-93b6612c3b2e))
(pad "1" thru_hole rect (at 0 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 1 "+12P") (pinfunction "Pin_1") (pintype "passive") (tstamp 5e32da30-1a3e-4135-adaf-bbf389b0c3fc))
(pad "2" thru_hole circle (at 5.08 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp a58c2dc5-d0b2-4b7a-84f6-0ad19b70b65a))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-3-2-5.08_1x02_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2aa21e55-25c6-4cf4-bd8a-94f164963f6d)
(at 94.05 96.8)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/5c3f961c-e6a3-4199-a7b5-a15c49c92f2d")
(attr smd)
(fp_text reference "C10" (at 0 -1.85) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa5d9c89-54e0-49e6-a404-29eddf2326d4)
)
(fp_text value "2u2" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4660c6bf-e69d-4a4d-bdfe-d125b039e05b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp dc13dc22-84a0-4f1c-b185-bc18995f27cf)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp dc121f4e-0673-4834-a909-ead2af2c069f))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp dca493a0-6eda-488f-a002-b8342b37cfb9))
(fp_line (start 2.3 -1.15) (end 2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 2c6fedfa-d124-4a32-aaf9-1170178a9e41))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 84f23cc9-9d15-4bf2-9356-88729f7800a5))
(fp_line (start 2.3 1.15) (end -2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp ebb76e06-409d-47e2-b43c-bf014de25a3d))
(fp_line (start -2.3 1.15) (end -2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp f263cfd5-7b24-4140-97ba-078a691115b5))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 3097fea7-46a7-47a9-9cae-e148c8b5c995))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 6e4bbe2c-1e2d-4539-b6d8-5d5edc57b4de))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 8bb2ea49-8b54-4a72-9f61-f9dccb873903))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp cc4a02a5-f906-413a-8c0e-7a4399db78ee))
(pad "1" smd roundrect (at -1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 48 "Net-(C10-Pad1)") (pintype "passive") (tstamp bf14984d-f9cd-45a2-a01c-a06d3ed0e284))
(pad "2" smd roundrect (at 1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "GND") (pintype "passive") (tstamp 218239a9-f46b-4a60-abfb-8e61afe4c024))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEF0) (tstamp 34b6b129-a76c-4a62-91cc-2743f5f4b2c4)
(at 136.5 76.22)
(descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/3e7efa6a-334c-43eb-bbb7-c953278c26f8")
(attr smd)
(fp_text reference "FB1" (at 0 -1.55) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa9ed6b5-4e5c-4243-98fd-8dcda9f36d63)
)
(fp_text value "FerriteBead_Small" (at 0 1.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51a502e9-5635-4e96-97f0-80e9b324d808)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp afd20e7b-0c57-49fa-a2aa-4d47f56f629d)
)
(fp_line (start -0.399622 0.56) (end 0.399622 0.56) (layer "F.SilkS") (width 0.12) (tstamp 049a81eb-a1e0-4ed0-b066-8d01132f517e))
(fp_line (start -0.399622 -0.56) (end 0.399622 -0.56) (layer "F.SilkS") (width 0.12) (tstamp 18772a97-fc71-460d-b717-9449db055c90))
(fp_line (start -1.75 -0.85) (end 1.75 -0.85) (layer "F.CrtYd") (width 0.05) (tstamp 17108590-0e42-43c2-ab9e-625e7b4f94b1))
(fp_line (start 1.75 0.85) (end -1.75 0.85) (layer "F.CrtYd") (width 0.05) (tstamp 7da8efaf-d0d3-4bd4-ace3-f78d8c4be5ba))
(fp_line (start 1.75 -0.85) (end 1.75 0.85) (layer "F.CrtYd") (width 0.05) (tstamp 9599f3c3-e1c5-4ec3-bf30-95ca53eb453b))
(fp_line (start -1.75 0.85) (end -1.75 -0.85) (layer "F.CrtYd") (width 0.05) (tstamp a67f115f-343e-401e-a6fd-6c057cd578a5))
(fp_line (start -1 0.45) (end -1 -0.45) (layer "F.Fab") (width 0.1) (tstamp aae81720-20e6-4276-a88c-0d6e7e7f9f9d))
(fp_line (start 1 -0.45) (end 1 0.45) (layer "F.Fab") (width 0.1) (tstamp c29c1e3f-2ce6-4f84-9b87-2633c5cfebc0))
(fp_line (start -1 -0.45) (end 1 -0.45) (layer "F.Fab") (width 0.1) (tstamp dcb7ef5d-30e6-47b3-91df-35b8913e714b))
(fp_line (start 1 0.45) (end -1 0.45) (layer "F.Fab") (width 0.1) (tstamp efbd2f04-62a1-49d5-9d60-2e126a66fb46))
(pad "1" smd roundrect (at -1.0625 0) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(D1-Pad1)") (pintype "passive") (tstamp 975ff309-e329-4b51-a1c6-9bae2657c1a6))
(pad "2" smd roundrect (at 1.0625 0) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "BUCK_IN") (pintype "passive") (tstamp 2be23707-43d6-4159-94ab-fc7f4974c9b7))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 37a423bc-f22b-4f78-8391-c64cc41bfdd6)
(at 149.52 70.22)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/43c1c9f2-aa3d-4906-bafc-86f432ad610b")
(attr smd)
(fp_text reference "C8" (at 0 -1.16) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a889c295-2d25-4852-8cf9-7f4cc11f3612)
)
(fp_text value "100n" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c217d968-abfe-45cc-8ff9-0996be5bc8c7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp f48726b8-0a84-4a45-918f-9908a36bbb39)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 1087999d-983e-42bf-b325-b81c766947cc))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 5a43f40c-f75b-4db3-8642-220e4b806437))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 4055fe96-6cd0-4098-a3eb-28bdaf898065))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 77697486-3706-446b-b0dc-99c11e5b6fb4))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp d253b606-c6d4-4ab5-bb6d-97f4b72f210a))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp ec4fc551-9561-4ff0-a309-1fd93dc95354))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 3915f1cf-e224-42a7-8e50-b5aa000e1dd3))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 5289bc61-7716-4d1c-91dd-03b886b4760f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 57a35f7e-1eec-4bce-82d8-651d3f20ac22))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 85322b6b-1523-4ed9-b09b-510e91ab3a2d))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3.3VP") (pintype "passive") (tstamp 7279a0ce-75b5-4d17-adea-e5e9949407a6))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp dd1edec3-c7ba-4ffa-8ee5-8e55b6e96e86))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3a07246e-3a61-43dd-8b09-0bdf03c3e6f3)
(at 137.41 82.68)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/7de38dc9-67f6-41c8-88a2-2e8f189b2589")
(attr smd)
(fp_text reference "C9" (at 0 -1.16) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 659d7e05-6d30-4048-9451-144bfa6ef129)
)
(fp_text value "100n" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc588c3d-5206-4af5-96df-dc33e470667e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 7aec2799-4000-4098-a752-1bed4b75fdcf)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 441f9c55-be25-4fae-8b9b-6a71ad3b0b86))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 8d1c6119-4f8d-41bb-ac26-14b7b55b90f2))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 21de29f1-55e6-491f-9b72-2d0cf15d30d9))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 51c3e3cc-739b-4bac-a271-7f779051de39))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 6f4bbdb8-5bb2-4c5f-b604-50c819181981))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 93b57547-14ef-426b-8dd7-720b4647ee08))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 5b3893c6-e4cc-4fa9-be23-63d62d12d2ee))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 885fe160-5562-498c-ba18-9f416e1d87d2))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 99f42b58-88eb-419e-9dff-f13059ef50e4))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a7f09cc9-2878-4daf-b4fb-2ce63103f4de))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+3.3VP") (pintype "passive") (tstamp 5d580eb5-0e83-488b-a0fd-a803c630f551))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 331e4b06-587c-447e-bea7-ab3ccd3f7d67))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-6" (layer "F.Cu")
(tedit 5F6F9B37) (tstamp 42ba407d-a036-422b-9b59-0018a6ff74da)
(at 117.42 96.07)
(descr "SOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/ec7ec0fc-3809-4267-893e-f0b599d3ef7d")
(attr smd)
(fp_text reference "U3" (at 0 -2.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd9d3f06-47e9-4e96-bdfc-1a5f59e67669)
)
(fp_text value "USBLC6-2SC6" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 392feb7d-639c-4109-b633-4f77161d9a00)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c69d9541-5e9c-4448-bf12-ab294afe5277)
)
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp 105fbd65-eb38-4079-82aa-c51ab8697030))
(fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 6b6fa031-d624-43d1-842e-f25c3d8a114c))
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 71885243-5b46-48dd-99ac-0bd8b9c078df))
(fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp 78ec32a0-9a51-4ce8-b9fc-3040bef6a908))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 03feac72-98b7-4654-a672-d344349eb6a0))
(fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 717ae1df-ca35-43c4-858a-8a998842a6fa))
(fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 8bd335e3-f9cc-4141-b62c-89e6f2cea9b6))
(fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp cdb51342-07be-44c9-aae9-c15b7e1e8215))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp 2cdac68d-7c68-4dee-83f4-c82da698979f))
(fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 6c7215dc-2dbc-4951-bfca-623bac82e99f))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp 71d48a52-b8b3-40ee-8443-1f8ed57774db))
(fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 75f2082b-4d7b-452b-8a4f-d706b382cdc7))
(fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp c84e14d3-e4ed-44aa-a72a-e3cd27cfffa7))
(pad "1" smd roundrect (at -1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "USB_CONN_D_-") (pinfunction "I/O1") (pintype "passive") (tstamp e09a27a3-bdcb-4a52-8356-44f3d9cdc103))
(pad "2" smd roundrect (at -1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 54cef379-8a16-4ade-956d-519a53329bc3))
(pad "3" smd roundrect (at -1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "USB_CONN_D_+") (pinfunction "I/O2") (pintype "passive") (tstamp c8686b97-f23e-4a0e-b4c0-aa3988218b00))
(pad "4" smd roundrect (at 1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "USB_D+") (pinfunction "I/O2") (pintype "passive") (tstamp e06d1eab-cb86-4592-b7c5-13289f2591ff))
(pad "5" smd roundrect (at 1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp 135735c6-9c20-4bf3-849f-8a3683d0618a))
(pad "6" smd roundrect (at 1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "USB_D-") (pinfunction "I/O1") (pintype "passive") (tstamp ddae4b2b-20d9-4a3e-92ee-cab9e27340aa))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 4f0ad253-6758-4fab-a304-5619bb190326)
(at 133.97 82.99)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/fb7a33f8-15cf-4195-94a7-e1e6bcda4c0c")
(attr smd)
(fp_text reference "D2" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7590e24b-577c-4fcd-9e1f-ab45b189df19)
)
(fp_text value "Blue" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe1bd8e9-7e87-4635-aee4-ff9ac1345deb)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 70e18146-fcad-491b-ae29-6b6b530cc027)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 5d6cfde2-9586-45a3-9d7e-b9db5ad7bc21))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 9b86d498-b713-4140-97c2-940c95f43f16))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e997c615-0a9d-46fc-872f-6b2d14f01b36))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7cea007c-3280-4e58-94e8-fd0f1c985899))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 897136b5-a5d5-4581-a6bf-48c25cde5ca5))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9fd2c636-f5cd-47e5-bbbc-56f7c25ff6b0))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f5156e03-6da9-4205-8d49-0997e01031c7))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 738c73ca-416f-4cdc-b135-180d4d696484))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 8a80af2d-ce13-4b11-8a6d-9856813678bd))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp d32ff0d3-6db2-4544-ab69-6c0b14790da2))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e0fafb5a-7612-49f2-857e-07a48cf36c67))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e34767e1-a29c-42c3-8abb-ef0a479b6adf))
(pad "1" smd roundrect (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp ed15d2ab-884d-4309-8fc5-a20c99e91302))
(pad "2" smd roundrect (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "LED_STATUS") (pinfunction "A") (pintype "passive") (tstamp 63777433-96ab-4b15-8870-c77f38cbb556))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 56ff2288-13d4-4098-a5c7-84a24b2613d1)
(at 111.85 96.6)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/e4b0a70e-ec8a-4f1a-99a7-2cd3d55386e6")
(attr smd)
(fp_text reference "C15" (at 0 -1.85) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f389684-fc2a-46a1-b11d-5ff1e4efe356)
)
(fp_text value "22u" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8b3bfbd-79b7-4863-9ae7-79b3f077a5ad)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp d2f6c7ec-fb14-4c80-b507-e05e76c13bdf)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 4e9a87a3-418a-43a4-a902-c2e3103424a6))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp d51ba27b-8ed7-4eca-b0be-3ba1363dff58))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 0fa241a2-e684-4224-bccf-feed816795b0))
(fp_line (start 2.3 1.15) (end -2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 836c1b72-6495-4f81-a125-58f0f7d787c2))
(fp_line (start -2.3 1.15) (end -2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp ea31f51c-3f0e-4e37-9fd4-9e1b1b7d7784))
(fp_line (start 2.3 -1.15) (end 2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp ec620b77-8919-4285-a6c0-f21b0acac14b))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 1dc423f3-1741-4cb4-aa3d-a702d125d769))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 525775d5-0e6e-4c76-b5ab-199b2e54ac41))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 8da81810-0dba-4c36-b58c-934ee2c0935b))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp b0c1f62a-b351-48b8-ac88-59c1c4ffa2ff))
(pad "1" smd roundrect (at -1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 4 "+3.3VA") (pintype "passive") (tstamp 93ef09ab-58f4-40ee-8d2b-6370d66890c0))
(pad "2" smd roundrect (at 1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "GND") (pintype "passive") (tstamp fb07492c-d4ca-4a78-b92a-c3b14ed44b3f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_Panasonic_EVQPL_3PL_5PL_PT_A08" (layer "F.Cu")
(tedit 5A02FC95) (tstamp 5879090f-e6ed-48e6-a17d-670ffa2c5461)
(at 121.22 90.12)
(descr "Light Touch Switch, http://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE3.pdf")
(tags "SMD SMT SPST EVQPL EVQPT")
(property "Sheetfile" "stm32-usb-otg.kicad_sch")
(property "Sheetname" "")
(path "/50627cdc-82fb-4ae1-9196-08f53083ee22")
(attr smd)
(fp_text reference "SW1" (at 0 -4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9d48d597-b34c-4d62-95c8-00458414359f)
)
(fp_text value "SW_SPDT" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91c9976e-33f3-4776-850e-36ee5d251977)
)
(fp_text user "${REFERENCE}" (at 0 -4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 660190eb-2890-4958-8da2-d63590e8e03c)
)
(fp_line (start -2.55 -1.7) (end -2.55 -0.675) (layer "F.SilkS") (width 0.12) (tstamp 25f3023a-0b40-4b57-b672-1aea8836d4eb))
(fp_line (start -2.55 0.675) (end -2.55 1.7) (layer "F.SilkS") (width 0.12) (tstamp 453a77ad-fac0-4cd4-9fca-6e04f8cfa3e5))
(fp_line (start 2.55 -1.7) (end 2.55 -0.675) (layer "F.SilkS") (width 0.12) (tstamp 5d0be09d-133e-4cac-b0d8-fd336835cc6c))