-
Notifications
You must be signed in to change notification settings - Fork 0
/
stm32_minimal_dev.kicad_pcb
9891 lines (9851 loc) · 441 KB
/
stm32_minimal_dev.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 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" power)
(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 "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 true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "pcbway/")
)
)
(net 0 "")
(net 1 "VBUS")
(net 2 "GND")
(net 3 "+3V3")
(net 4 "/HSE_IN")
(net 5 "/HSE_OUT")
(net 6 "/NRST")
(net 7 "+3.3VA")
(net 8 "Net-(D1-Pad1)")
(net 9 "/I2C_SCL")
(net 10 "/I2C_SDA")
(net 11 "/USART1_RX")
(net 12 "/SWDIO")
(net 13 "/SWCLK")
(net 14 "/USB_D-")
(net 15 "/USB_D+")
(net 16 "/SW_BOOT0")
(net 17 "/BOOT0")
(net 18 "PC13")
(net 19 "PC14")
(net 20 "PC15")
(net 21 "PA0")
(net 22 "PA1")
(net 23 "PA2")
(net 24 "PA3")
(net 25 "PA4")
(net 26 "PA5")
(net 27 "PA6")
(net 28 "PA7")
(net 29 "PB0")
(net 30 "PB1")
(net 31 "PB2")
(net 32 "PB12")
(net 33 "PB13")
(net 34 "PB14")
(net 35 "PB15")
(net 36 "PA8")
(net 37 "PA9")
(net 38 "PA10")
(net 39 "PA15")
(net 40 "PB3")
(net 41 "PB4")
(net 42 "PB5")
(net 43 "PB8")
(net 44 "PB9")
(net 45 "unconnected-(J1-Pad5)")
(net 46 "unconnected-(J4-Pad4)")
(net 47 "/USART1_TX")
(net 48 "unconnected-(J1-Pad4)")
(net 49 "unconnected-(J1-Pad6)")
(net 50 "unconnected-(J1-Pad7)")
(net 51 "unconnected-(J3-Pad7)")
(net 52 "unconnected-(J1-Pad8)")
(footprint "MountingHole:MountingHole_2.2mm_M2" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 04a96fc3-9d7f-472e-b39a-8b364446dd8c)
(at 127.0508 73.66)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(property "Sheetfile" "stm32_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/6d054e80-a951-4369-983a-ddcad9eae18c")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 3.429) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 399985db-0cd1-464d-9e47-e75abf6e7f63)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b49da449-f650-4a9c-a601-2a7819fdd9bc)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a824471b-cec2-4169-abd4-a50b51eb8c58)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 58e2cf6f-38ae-418f-8335-7404629aed97))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 1ee31007-9646-491e-96db-d7c9315081b8))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask) (tstamp d6a851e0-d592-4ff8-9110-19dc2f0300b8))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 08503c42-972e-4afe-ad03-94359aea48f1)
(at 126.5682 97.9528 180)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(property "Sheetfile" "stm32_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/4d1e83c4-f4ca-4016-94f4-c7733a7fd5f0")
(attr through_hole)
(fp_text reference "J3" (at -2.794 -0.9548) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49dc91ad-2145-4175-9676-75cc1b41fa63)
)
(fp_text value "Conn_01x08_Male" (at 0 20.11) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f705be08-fc7b-43b6-937e-1f5e5f39692b)
)
(fp_text user "${REFERENCE}" (at 0 8.89 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf8119a8-5d5a-41f5-b6ec-e2c0ab90ac4e)
)
(fp_line (start -1.33 19.11) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 3028ca4d-eca7-4c10-b25a-9ef83704293c))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 4d587338-7d12-4d69-8f69-e6469d32b54a))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9536efb3-5dc5-4bd8-8321-6ff910d8faec))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp b4bf2e59-66e7-4c88-8ff0-4c88a0402f37))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e61409b9-dc2a-4ae6-9fdf-bd5b352a2228))
(fp_line (start 1.33 1.27) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp e7a0e989-4f8a-466c-b5c4-5ed220e9f905))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 32f09310-4cfa-45b7-81ef-9509fb1eef07))
(fp_line (start -1.8 19.55) (end 1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 549158f6-5025-4f49-8854-adc0c3142783))
(fp_line (start 1.8 19.55) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a3c1dea2-3fe8-4bca-beb4-ce84f34f5dc7))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp eaa177b6-0c4d-4479-98cb-61fb14abefea))
(fp_line (start -1.27 19.05) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 4d9f799c-1e8d-4a24-b7a3-e9f87eb1d191))
(fp_line (start 1.27 19.05) (end -1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp 722efe57-2812-48c4-a1fe-665bc3d0e6ce))
(fp_line (start 1.27 -1.27) (end 1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp 8ee9a93d-1866-43cc-84ff-74726b031b0f))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp ae473afc-04f0-4552-8484-6e794aeab4ee))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp c3baeaf8-990a-4cb2-9667-4538ba0dbc9a))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "PA2") (pinfunction "Pin_1") (pintype "passive") (tstamp 56e51837-425e-40a1-9c5c-bdd45c491488))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "PA1") (pinfunction "Pin_2") (pintype "passive") (tstamp f65107cb-2775-4141-8b4d-b2a0c31fac35))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "PA0") (pinfunction "Pin_3") (pintype "passive") (tstamp e7c86327-d783-4d30-b214-efa8d86e36df))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 "PB14") (pinfunction "Pin_4") (pintype "passive") (tstamp 9a35d998-3b55-49f1-b1ea-123d229ae6fd))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "PB15") (pinfunction "Pin_5") (pintype "passive") (tstamp bab2b161-6ed7-4ee7-8d18-bd860887b427))
(pad "6" thru_hole oval (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "PA8") (pinfunction "Pin_6") (pintype "passive") (tstamp 7970c976-04f9-437d-a3b0-8985b2f4c668))
(pad "7" thru_hole oval (at 0 15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 51 "unconnected-(J3-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 372325eb-1196-4030-a493-62262babb919))
(pad "8" thru_hole oval (at 0 17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 "PA10") (pinfunction "Pin_8") (pintype "passive") (tstamp bad6bc13-1535-40dc-a3b3-78bd4565eb22))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.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 0866259b-7a6f-4054-9d0b-9af4aacecd00)
(at 169.6974 92.1766 180)
(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_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/46056476-1221-418d-9899-fa26bed1a0b4")
(attr smd)
(fp_text reference "D1" (at -2.4892 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02ac00ec-b21f-4e70-8981-49e2e9a3f30e)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48397f5e-1ef5-4d16-bb9c-884e94689838)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d66667ed-54f1-442f-99c6-08ea0c95527d)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 2b120b1c-86e7-4e36-b939-55849efb588d))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 7861cac7-31f1-4a21-bed4-ecc57f4d58c9))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp b57c95dd-881f-4879-8f23-b21fb874b461))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4098749e-18f9-4d3c-9a00-2ba61d578fc4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 57ee1dce-0f0f-4bb1-85d6-5f9b4c0a9455))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7a5f7de8-d7a0-4f26-958c-d8e586e7fb55))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a83c0944-d0d5-4f12-a1ad-a74928e37f00))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2f770235-f524-4f24-bb72-e043dcbf4811))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8aa41f73-524a-435a-aad3-91a3146316d9))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 9d8d67b3-69de-41b4-a644-d5bdbadae96c))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp bde3db92-21cc-48b1-88c3-2b559d072d70))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp e8e90cb5-10c1-4480-b223-939a7f11e0c4))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 892f16d3-a824-4126-8d4e-b64ab4e6401f))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "A") (pintype "passive") (tstamp d99ce403-0b8d-48d1-90ed-65451768952d))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x16_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 0ac82872-3dc8-421a-9f87-39625cef3602)
(at 131.8514 104.267 90)
(descr "Through hole straight pin header, 1x16, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x16 2.54mm single row")
(property "Sheetfile" "stm32_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/284d9d96-6eb0-45e7-be70-fb28394b2228")
(attr through_hole)
(fp_text reference "J2" (at 2.667 -1.143) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7eed7c14-5307-49be-9108-01d29cdb7682)
)
(fp_text value "Conn_01x12_Male" (at 0 40.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8eebe6a-62e5-4c8e-ba45-ed5d5624b2fe)
)
(fp_text user "${REFERENCE}" (at 0 19.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c59483b-9954-422b-b85f-0eaa69937d14)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0b232f43-f77b-4ad3-969c-712550f91588))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 23ef5659-b5e6-48b3-9c9f-06506ed6b9c9))
(fp_line (start -1.33 1.27) (end -1.33 39.43) (layer "F.SilkS") (width 0.12) (tstamp 283de079-0733-4808-8d57-78d293718661))
(fp_line (start 1.33 1.27) (end 1.33 39.43) (layer "F.SilkS") (width 0.12) (tstamp 2f20a568-85c9-460a-8a90-26f44bf4dbf4))
(fp_line (start -1.33 39.43) (end 1.33 39.43) (layer "F.SilkS") (width 0.12) (tstamp 32b8f611-b996-4b1a-b47f-617041adb0f7))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 7d78edfe-5a04-4c29-a1a5-c36103d0c07e))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6f26402a-72ef-435d-b2e7-1f7351549c02))
(fp_line (start -1.8 39.9) (end 1.8 39.9) (layer "F.CrtYd") (width 0.05) (tstamp a5fa83a4-4827-4348-b580-671417d504ea))
(fp_line (start 1.8 39.9) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp f3f8a1af-90f5-4982-ab9e-d1af0c46bd97))
(fp_line (start -1.8 -1.8) (end -1.8 39.9) (layer "F.CrtYd") (width 0.05) (tstamp f9cb2656-cf83-4cb2-808a-bf8658432c41))
(fp_line (start 1.27 39.37) (end -1.27 39.37) (layer "F.Fab") (width 0.1) (tstamp 039213be-d6a5-4275-b3ec-1d5030a7932f))
(fp_line (start 1.27 -1.27) (end 1.27 39.37) (layer "F.Fab") (width 0.1) (tstamp 3ed98740-3844-4d9c-b1fc-d7afda6bffc9))
(fp_line (start -1.27 39.37) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 4104bcbf-4731-46f5-a1f0-091d5b87ca98))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 96cfa12d-ef66-4e63-90e7-014a891ff647))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp ac153704-21cb-48c8-a134-305309239726))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "PA3") (pinfunction "Pin_1") (pintype "passive") (tstamp 136fc3df-5851-4ad1-95f9-890794d473bc))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "PA4") (pinfunction "Pin_2") (pintype "passive") (tstamp cedaf7ba-9925-4c57-89f1-ebc73ccbec1c))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "PA5") (pinfunction "Pin_3") (pintype "passive") (tstamp 9a235a65-7ce5-44c3-b3e0-9d9b000e84bb))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "PA6") (pinfunction "Pin_4") (pintype "passive") (tstamp cef01d47-e6ab-4cf1-9aa3-a02532ef0f2a))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "PA7") (pinfunction "Pin_5") (pintype "passive") (tstamp 5fb45324-76ad-4d62-955d-a8c4ffad11ca))
(pad "6" thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "PB0") (pinfunction "Pin_6") (pintype "passive") (tstamp d837c4b3-593c-4432-8c89-802252f34221))
(pad "7" thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "PB13") (pinfunction "Pin_7") (pintype "passive") (tstamp 8c3e46f7-10af-49a4-87e0-392e2aebcba3))
(pad "8" thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "PB12") (pinfunction "Pin_8") (pintype "passive") (tstamp 1ef84ad5-4bf0-46a1-8723-c6627d45ffd9))
(pad "9" thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "PB1") (pinfunction "Pin_9") (pintype "passive") (tstamp b74e640c-2977-45c6-8c64-991f3c1a2aba))
(pad "10" thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "PB2") (pinfunction "Pin_10") (pintype "passive") (tstamp 36f59e54-7dc5-416f-bf3c-c2b43e931072))
(pad "11" thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/I2C_SCL") (pinfunction "Pin_11") (pintype "passive") (tstamp 01c7b4f3-fcbb-42cc-8e5f-bec284369eed))
(pad "12" thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "/I2C_SDA") (pinfunction "Pin_12") (pintype "passive") (tstamp 453db472-7e00-4d66-97c2-54f557561dbb))
(pad "13" thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_13") (pintype "passive") (tstamp 3410ab44-1aaa-4f65-b6f5-94fb24cac5bc))
(pad "14" thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_14") (pintype "passive") (tstamp 46092bdd-a2fb-4648-8057-7e34ac7ba2c7))
(pad "15" thru_hole oval (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_15") (pintype "passive") (tstamp 12ce117f-8d60-4a03-b5ee-6e7820a59511))
(pad "16" thru_hole oval (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_16") (pintype "passive") (tstamp 877c43de-1054-4f62-871c-ab9f70e1dd86))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x16_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 16acf0ee-bc6b-4d56-b2b0-9ad8deab8eed)
(at 165.9636 92.1766)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "stm32_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/f62969ba-6653-4089-b38e-8c0ef2fba9df")
(attr smd)
(fp_text reference "C1" (at -0.0762 -1.651) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8fb7c0a-bd13-494f-8cd3-0f906ee152e4)
)
(fp_text value "22u" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp affd5bc4-75ba-4718-a2e0-84cf11d2fe29)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp b081c75c-b7aa-4fa5-b04d-2bb2c1a8a0e0)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 9a757df9-9b0b-4ed4-91e8-679a3d208d26))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp f4300c57-2b64-49cb-976c-c66045ada673))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 282c7be5-f328-4045-a8d8-2e994787e95c))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 486b84ac-9ea2-4344-91c9-87b53c8536f1))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 5e77832d-1a72-4282-8916-594ccd7b5dea))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp b7adc8da-b3bf-4106-89e1-9bb7e43a88cc))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 1543e967-329a-4d72-aa44-3670eb294f09))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 16675c50-8a3f-4975-b7bb-2b6d04f2957a))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp c869d3cd-a81f-422c-9896-619d681a3d40))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp e8baee76-c9cf-4fc6-a0ea-eda186db5c45))
(pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VBUS") (pintype "passive") (tstamp 186328ef-226c-4a48-92ec-f8fdb3aeac21))
(pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp bfe8991e-ff0d-4e2f-af5f-3304c6f4bb0c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_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 2ec38e0b-ccc0-4b0b-a1bd-e7070dfebcf5)
(at 165.9382 83.439 -90)
(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_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/f8942879-d3e4-4952-bdc4-efa4e334308c")
(attr smd)
(fp_text reference "C9" (at 0 -1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 687441d0-3f32-46b1-a9d7-1b89ab3367a3)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f4bc668-4439-472e-87bc-6d6f6717a0c9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp a63008fb-a2a9-40ee-8769-841faa4850e0)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 8c5c2703-922e-469a-a93d-654e7b0c095c))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp fa28a60a-8005-4f81-9918-3e05f027285a))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 02cc895a-767a-4f87-b449-08bafc5d2c51))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 16fbde6b-3de4-4324-8532-440d3d7d7fe8))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 229fbf25-0881-410c-9b0f-04803ca23abb))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 4de4d6d8-3de3-4e3d-afaf-dbf398f9f804))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 752fc1a6-b924-4cd6-be5b-b3ef8e6fc592))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp be7e3fad-5fdf-49c6-9b3e-17ca13980f26))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp dba6248b-da87-405f-aeb7-cbd107c94c2c))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp f82d39c7-a753-49e9-a86b-a58e223ec7de))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 25a34c5b-aac0-40f8-92e3-53d7d4ef051f))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 9d1020d6-c282-4610-8115-8c9645a422b3))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x16_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 3cf67f15-923f-40e9-b790-b7e36503a8c9)
(at 132.1562 73.3552 90)
(descr "Through hole straight pin header, 1x16, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x16 2.54mm single row")
(property "Sheetfile" "stm32_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/9da94072-42db-4e85-8f36-18b738b763b9")
(attr through_hole)
(fp_text reference "J1" (at -3.0734 -1.8542 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b43aa76-bcf9-46ff-9424-d3181bc1e88a)
)
(fp_text value "Conn_01x12_Male" (at 0 40.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f86cbb02-6d5a-411c-9a54-f3b8d8ed8164)
)
(fp_text user "${REFERENCE}" (at 0 19.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c22ab195-2cd0-44dd-a65c-1370ce0b5023)
)
(fp_line (start -1.33 39.43) (end 1.33 39.43) (layer "F.SilkS") (width 0.12) (tstamp 4eb16171-2376-4e9d-a815-d3a037f8ef94))
(fp_line (start 1.33 1.27) (end 1.33 39.43) (layer "F.SilkS") (width 0.12) (tstamp 6bed6cfd-f55c-43a2-addc-0877631e2201))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp dc3d5313-ce18-42c9-b965-27314282538e))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp e3741d58-35c6-4b95-913f-8a283dada877))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e7419ed8-2ebf-42c1-9f48-59d4096755e8))
(fp_line (start -1.33 1.27) (end -1.33 39.43) (layer "F.SilkS") (width 0.12) (tstamp ee3a4b2a-dbfe-4768-8d35-31582c161d78))
(fp_line (start 1.8 39.9) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 301de737-5ed0-4ed2-a838-6e36a5b96b51))
(fp_line (start -1.8 -1.8) (end -1.8 39.9) (layer "F.CrtYd") (width 0.05) (tstamp 65fd75f6-770f-4e03-94fc-2157e53fe8d8))
(fp_line (start -1.8 39.9) (end 1.8 39.9) (layer "F.CrtYd") (width 0.05) (tstamp def8b728-00a5-494f-8e79-7af5d41b581c))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e649576d-bdeb-4939-a350-43880a95e4bb))
(fp_line (start 1.27 -1.27) (end 1.27 39.37) (layer "F.Fab") (width 0.1) (tstamp 28530f7e-1736-4797-9fa5-4dd015eff34f))
(fp_line (start -1.27 39.37) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 5ab307f8-3d0a-47bf-b878-abbd698562a9))
(fp_line (start 1.27 39.37) (end -1.27 39.37) (layer "F.Fab") (width 0.1) (tstamp a1a79c48-4ffe-4ffa-8f1a-be5cff2cb5aa))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp f64d6a1a-88ee-4c85-998e-a5188be566f5))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp fddd37c6-2f5a-4048-aabf-86ee68b89aa4))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "PC15") (pinfunction "Pin_1") (pintype "passive") (tstamp 3db4ed4a-4105-45a8-8b28-4919e2972891))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "PC14") (pinfunction "Pin_2") (pintype "passive") (tstamp 52762a58-80de-4c7f-878e-99bda31bd1fd))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "PC13") (pinfunction "Pin_3") (pintype "passive") (tstamp 749b2fd3-fe0c-4e8d-8448-6955f30ddf3b))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 48 "unconnected-(J1-Pad4)") (pinfunction "Pin_4") (pintype "passive+no_connect") (tstamp 4a82bc1c-02ad-4a90-b5d6-7671ff72f4d9))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 45 "unconnected-(J1-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp c951052d-a034-4321-b0a7-9467046b7224))
(pad "6" thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 49 "unconnected-(J1-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp 87a63ffd-3d8b-4775-8ff1-0d2642d5f91f))
(pad "7" thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 50 "unconnected-(J1-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 5fafb1c4-5516-4180-925a-bccc309fd778))
(pad "8" thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 52 "unconnected-(J1-Pad8)") (pinfunction "Pin_8") (pintype "passive+no_connect") (tstamp 6764fe09-cb62-44cd-982d-f55d7ee1a7a1))
(pad "9" thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 40 "PB3") (pinfunction "Pin_9") (pintype "passive") (tstamp cc75c461-7103-4a96-9ef0-16f9bcf1ec77))
(pad "10" thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 "PA15") (pinfunction "Pin_10") (pintype "passive") (tstamp 30ea1b93-9759-4abc-918c-7b933642559f))
(pad "11" thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "/USART1_RX") (pinfunction "Pin_11") (pintype "passive") (tstamp 8affa242-8207-4a60-a8a3-df2db6c23e9b))
(pad "12" thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 47 "/USART1_TX") (pinfunction "Pin_12") (pintype "passive") (tstamp 3694a091-016f-4d8b-b6ef-8be3476fcef7))
(pad "13" thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_13") (pintype "passive") (tstamp bbc5dd73-5e1c-4f02-a839-d03c07df84f4))
(pad "14" thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "/SWCLK") (pinfunction "Pin_14") (pintype "passive") (tstamp 36d5d16c-8740-450d-9799-9a8b68168b77))
(pad "15" thru_hole oval (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "/SWDIO") (pinfunction "Pin_15") (pintype "passive") (tstamp e935c7ff-cd92-4823-80f3-fbe1ccdebfdf))
(pad "16" thru_hole oval (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_16") (pintype "passive") (tstamp ab086ace-e25f-48f4-a98f-5cbc778299ad))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x16_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "629105136821:WE_629105136821" (layer "F.Cu")
(tedit 62CA6877) (tstamp 43b5c6cb-3780-4159-ace6-7ac28ed22ce9)
(at 174.625 84.582 90)
(descr "WR-COM SMT Horizontal 5 Contacts Micro USB Type B, 5 pins")
(property "MANUFACTURER" "Wurth Electronics")
(property "PARTREV" "P")
(property "STANDARD" "Manufacturer Recommendations")
(property "Sheetfile" "stm32_minimal_dev.kicad_sch")
(property "Sheetname" "")
(property "part no." "614105150721")
(path "/82e1a8cc-113e-4d11-b381-0ac23c806f5b")
(attr through_hole)
(fp_text reference "J4" (at -3.2512 -4.9276 90) (layer "F.SilkS")
(effects (font (size 0.64 0.64) (thickness 0.15)))
(tstamp be9c33c6-cbb7-4620-a74f-73bc38a77bb6)
)
(fp_text value "USB_B_Micro" (at 0.933 3.579 90) (layer "F.Fab")
(effects (font (size 0.64 0.64) (thickness 0.15)))
(tstamp 855e21f6-1bf1-40ae-88cb-e67c30fbdcec)
)
(fp_text user "PCB EDGE" (at 5.14 1.34 90) (layer "F.Fab")
(effects (font (size 0.2 0.2) (thickness 0.15)))
(tstamp 21c2bdb6-9aec-450a-93c1-c901fc769b80)
)
(fp_text user "CONNECTOR EDGE" (at -1.605 2.61 90) (layer "F.Fab")
(effects (font (size 0.2 0.2) (thickness 0.15)))
(tstamp 4ae46c36-8e4a-425d-8c66-b7f56b3d8dac)
)
(fp_line (start 4 1.2) (end 4 1.45) (layer "F.SilkS") (width 0.127) (tstamp 06ddf76a-af03-4e61-9e69-01ffa7cf9165))
(fp_line (start -4 1.45) (end 4 1.45) (layer "F.SilkS") (width 0.127) (tstamp 0e716904-e61e-453d-b123-7e3b621a6678))
(fp_line (start 4 -2.85) (end 4 -1.2) (layer "F.SilkS") (width 0.127) (tstamp 60a83931-dfd4-4bea-b088-2d33289eea20))
(fp_line (start -4 -2.85) (end -2.55 -2.85) (layer "F.SilkS") (width 0.127) (tstamp 6dd5d794-ad70-4081-8225-9e745bc75e4b))
(fp_line (start -4 1.2) (end -4 1.45) (layer "F.SilkS") (width 0.127) (tstamp 75590cd1-87d0-490a-97d8-b0004e7ceac0))
(fp_line (start -4 -2.85) (end -4 -1.2) (layer "F.SilkS") (width 0.127) (tstamp 7d7f59d3-fb79-4a1b-b609-4e8477234899))
(fp_line (start 4 -2.85) (end 2.55 -2.85) (layer "F.SilkS") (width 0.127) (tstamp 82ff6b17-128f-4ae0-96eb-623ff9891acf))
(fp_circle (center -1.3 -3.9) (end -1.2 -3.9) (layer "F.SilkS") (width 0.2) (fill none) (tstamp 0059fb78-a70f-4457-8f2e-fbf2d411d65e))
(fp_line (start 5.15 3) (end -5.15 3) (layer "F.CrtYd") (width 0.05) (tstamp 4b2b6461-8146-4c87-aa35-e0ecc314a499))
(fp_line (start -5.15 -3.6) (end 5.15 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 68d6ce7e-4d24-4faa-bd30-8e2f75b87f6d))
(fp_line (start -5.15 3) (end -5.15 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp ab55a428-2230-4ea6-b171-bcac900b1be4))
(fp_line (start 5.15 -3.6) (end 5.15 3) (layer "F.CrtYd") (width 0.05) (tstamp de0e237c-72e0-4296-9794-b0d0027ca820))
(fp_line (start -4 1.45) (end 7 1.45) (layer "F.Fab") (width 0.127) (tstamp 17b30a17-dad4-46be-bcb7-0b648240e00b))
(fp_line (start 4 -2.85) (end 4 2.75) (layer "F.Fab") (width 0.127) (tstamp 54a44918-ce52-4e83-b78f-c8d6e8089c65))
(fp_line (start -4 1.45) (end -4 -2.85) (layer "F.Fab") (width 0.127) (tstamp 8f3e8c69-b61a-455d-b4d8-7d3a3549b1b2))
(fp_line (start -4 -2.85) (end 4 -2.85) (layer "F.Fab") (width 0.127) (tstamp 93692424-c9d0-4caf-907e-355a583fd3ae))
(fp_line (start -4 2.75) (end -4 1.45) (layer "F.Fab") (width 0.127) (tstamp d809d314-6388-4bc3-9f3c-c4e536ce140c))
(fp_line (start 4 2.75) (end -4 2.75) (layer "F.Fab") (width 0.127) (tstamp e9041bad-ab1d-43e5-8214-e403f107c22b))
(fp_circle (center -1.3 -3.9) (end -1.2 -3.9) (layer "F.Fab") (width 0.2) (fill none) (tstamp e9f2c360-d741-462c-aa22-df08a922cb97))
(pad "" np_thru_hole circle locked (at -2.075 -2.45 90) (size 0.7 0.7) (drill 0.7) (layers *.Cu *.Mask) (tstamp 617627b5-8453-4c34-8d7a-31ac89f2e50f))
(pad "" np_thru_hole circle locked (at 2.075 -2.45 90) (size 0.7 0.7) (drill 0.7) (layers *.Cu *.Mask) (tstamp 83e29c91-62a7-4b68-9822-d6a9d31ae0cb))
(pad "1" smd rect locked (at -1.3 -2.675 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VBUS") (pinfunction "1") (pintype "passive") (tstamp 358d8bcb-153c-40f7-bd53-0d7d489023b0))
(pad "2" smd rect locked (at -0.65 -2.675 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/USB_D-") (pinfunction "2") (pintype "passive") (tstamp a821fb19-df43-4df2-bcb3-d6cbdaa7a38a))
(pad "3" smd rect locked (at 0 -2.675 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/USB_D+") (pinfunction "3") (pintype "passive") (tstamp 40bcb94c-8d78-4228-8ea0-9081390103f7))
(pad "4" smd rect locked (at 0.65 -2.675 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "unconnected-(J4-Pad4)") (pinfunction "4") (pintype "passive+no_connect") (tstamp 3c8eb3f7-a83c-4ba3-8616-963e257ed3d8))
(pad "5" smd rect locked (at 1.3 -2.675 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "5") (pintype "passive") (tstamp db72d100-64ee-4c9a-b076-6bb93f136c8c))
(pad "S1" smd rect locked (at -4 0 90) (size 1.8 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 23431776-567a-40a9-aca7-82377dced669))
(pad "S2" smd rect locked (at -1.2 0 90) (size 1.9 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp cf8f23c9-64bb-45c4-8f19-e15fb8dd419a))
(pad "S3" smd rect locked (at 1.2 0 90) (size 1.9 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 529e08dc-b507-451f-99f5-9d6f09364ba3))
(pad "S4" smd rect locked (at 4 0 90) (size 1.8 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp e94b62d8-8b22-46d4-9c67-6b9bd61a228e))
(model "${KIPRJMOD}/629105136821/629105136821.step"
(offset (xyz 0 0 1.25))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 0))
)
)
(footprint "Inductor_SMD:L_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF0) (tstamp 45991320-4fea-4fbc-9452-64df469b4314)
(at 153.4676 92.8557 -90)
(descr "Inductor 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 "inductor")
(property "Sheetfile" "stm32_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/a2acbf9a-9da6-45ea-98fc-8611d9bee9f7")
(attr smd)
(fp_text reference "FB1" (at -0.0949 -1.574 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af7b956f-d966-40ac-82ee-c87c651ca7c1)
)
(fp_text value "120R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 588df59d-3ed2-4479-8c63-7c04e84b5411)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 13662683-db04-4bfc-ac5a-1f9b2746f263)
)
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp 881a187c-8e22-4c93-8074-39bf8c2fa016))
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp eb79428f-f6c6-4bab-840e-427f41e02549))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 25db3b7e-2c62-4a97-891b-7bfc28fa381b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 44b664f6-e83e-4002-9b43-bf074283f0c4))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 60375d58-c58d-4a9f-beef-319342e9d8d5))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9b57b169-232e-4f5d-85f5-a7aafa54e459))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 021e68e3-949f-403a-85f5-a9eff198b759))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 3a343bc1-d0e7-40ee-80c9-fa917e56cc7e))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 68b1f096-6f38-4349-8a92-132991041155))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f823c654-2bd6-4d8c-b7f6-123473fd825a))
(pad "1" smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "+3.3VA") (pintype "passive") (tstamp 26893708-13ec-46e8-abb9-20177162dc57))
(pad "2" smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 2b06a540-272a-4c58-8a77-7b1dc5689526))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 629ebf4a-f700-48ae-aafd-edfe124a0ebe)
(at 167.2844 97.8408 -90)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(property "Sheetfile" "stm32_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/98a6ad03-3d7f-48ed-a75a-3d7cb485eca3")
(attr smd)
(fp_text reference "U1" (at 0.8128 4.4704 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fb2ece6-afbb-4b35-b2b0-b955534fa79f)
)
(fp_text value "AMS1117-3.3" (at 0 4.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff93c37a-5eae-44ee-a899-98d1b6ca617c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 24ff78c4-3d5f-41fb-a6a2-5dddb896d606)
)
(fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "F.SilkS") (width 0.12) (tstamp 5aa58e14-92d7-4018-9ca6-96a55845fb2b))
(fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer "F.SilkS") (width 0.12) (tstamp 64bcf6c3-fd65-41a0-bc48-022357012a9b))
(fp_line (start -1.85 3.41) (end 1.91 3.41) (layer "F.SilkS") (width 0.12) (tstamp 6b633b96-574f-4203-9b0e-ea4451037f4b))
(fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "F.SilkS") (width 0.12) (tstamp fa5b15fb-ff0c-4e1e-96ca-933ba5b39805))
(fp_line (start -4.4 3.6) (end 4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 02d99094-38bc-4b7e-8249-f93e076cb67b))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 0deae65f-1c79-4052-a320-e3cf2110757d))
(fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 45028730-afed-4d39-b0d1-84da07803836))
(fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 5a328c82-8f3b-4139-9b1a-044f7dadd4cd))
(fp_line (start -1.85 -2.35) (end -1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 3789b16b-0d31-407c-8660-ca137a4a1ca1))
(fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 649a1e85-bfc1-4b94-9dcc-39c436c200e8))
(fp_line (start -0.85 -3.35) (end 1.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp a184109e-3274-4bb4-9fa3-1328ef68cf36))
(fp_line (start -1.85 3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp d11eccec-1040-44c9-942c-abfdd40504ad))
(fp_line (start -1.85 -2.35) (end -0.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp eae106f4-06bc-4914-8bd4-8f6644d6fd9b))
(pad "1" smd rect (at -3.15 -2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 03ac33d4-d14b-4deb-b390-a443ba772f7a))
(pad "2" smd rect (at -3.15 0 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 94181aa6-f605-4408-b4d7-3d9ae4abeca7))
(pad "2" smd rect (at 3.15 0 270) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp b8b8faa4-a730-4eb9-8be5-ee5f6cb0c1bc))
(pad "3" smd rect (at -3.15 2.3 270) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VBUS") (pinfunction "VI") (pintype "power_in") (tstamp 2a73e020-74e1-462f-b346-5b883551e297))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.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 692020fb-43c5-4108-a704-52b6a2090858)
(at 162.814 91.694 180)
(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_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/ca050a4f-5228-417b-9802-06d1f92902fa")
(attr smd)
(fp_text reference "C6" (at 0.0254 -1.1684) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 236ebc56-a48d-4e7b-9d9c-aad75ad4c78a)
)
(fp_text value "100nF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8945d199-6382-4c65-97d8-e960239850bb)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp d53a8899-3d1e-4825-a656-17dc40feb5fc)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp c4106ec9-5273-4f7d-934d-0da52d925160))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp dc32d192-b970-4f90-a312-f8233614886d))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 3003ee68-b48c-4fae-8c9b-dd3137d17ff6))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 7ad6f5a8-f97e-4950-b195-b0c0c74f2520))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp c78cecf3-1023-49e0-a128-3d2be9717bd4))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp f678f462-d637-4f38-9432-ac6de9d063c9))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 398f218a-db95-43b3-a0fd-168a3b98492c))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a966e9db-5267-4a76-a32e-5b1d14527c66))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp e48a0707-1b0a-48f9-ad80-48c4d370c032))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e81cb592-22d9-4a2c-a05e-e9891e422b9b))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 55926ad9-dd2a-4ff1-a98f-cfbe0cdca5d8))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 99d4c826-9a3c-43e2-85e9-de3872a803ba))
(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_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 6ab15618-667a-4f8f-9cf4-6bd16f327fbb)
(at 171.9834 97.155 90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "stm32_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/f81428b5-543c-444f-b748-6fb9292e1837")
(attr smd)
(fp_text reference "C2" (at 2.8448 -0.3302 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01dbd5e4-1a29-47cd-8b6f-3003ba5d4362)
)
(fp_text value "22uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e24770d7-809c-43f3-b8cd-de0b6cb79437)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 78eec7fd-1b8c-4023-acf5-c0340958c977)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 7fdad4f4-2607-4edf-b0f9-cd30839009b1))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp b1b853b0-53e8-4acd-98f8-b86b87ecbf70))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 63459a86-fd50-4d97-b793-3721c380bd68))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 688d68d4-80fe-40e0-8393-5a575827beaa))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 8ff57217-5550-4d7f-9b81-e8eaa1a5ba90))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp c57b24e9-f064-4666-a0cd-4bf11089a397))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 000aeccd-412e-40d2-b94e-a2c7931e386b))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 31204f43-5853-47af-a860-f4f37bb120e4))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9285a933-e3d9-469e-a250-802890229691))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp a5028ece-0ec1-4782-88d2-17e2d1397814))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 6fd6fccf-30c9-4746-a335-9a826137aa1c))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 85356d0e-13e3-4be6-88f6-77ef4ec1ac93))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_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 6e3669b8-e034-4619-9444-bdd528fcdec4)
(at 151.4676 93.5482 180)
(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_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/33444bc8-10f8-499b-af8b-a01a544733bd")
(attr smd)
(fp_text reference "C12" (at 2.522 0.1083) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fba71b19-e27c-4bc1-932f-81a644b354d7)
)
(fp_text value "1u" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f2abaa25-a665-4ec5-9e05-a1aba0ad1965)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 96c7d53c-2f08-4019-806a-04518da3f4fe)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 22adbacf-5ddb-44e7-82fb-b73f73c03d07))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 845f6be8-5a1f-48cc-a292-be3f63f7316c))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 126d40e2-7a93-4b54-a5d5-23b3aa8155aa))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 3d095e63-13c5-4627-ae42-84299e854f10))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 6ca63a7b-40b5-4d4e-a452-0b878ac67a2d))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 74c9bdd1-1be6-4de4-863a-d1200550182b))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 28c5aad8-e0c6-4ddb-ac1e-caefae63eff1))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 576ec1b7-32e6-4c0a-b5fa-0f13418c1e2e))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 584a2c10-a711-4a33-afa3-8d802fad8000))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp d266b7a1-2b4f-426b-aa9d-3a839d8ffa22))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "+3.3VA") (pintype "passive") (tstamp 158109e3-58b3-42ae-9571-b59ea8242da2))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 128ad1f2-957f-4ac2-af70-59ab7f18763f))
(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 9c407838-adc3-4730-ac63-1b7e80d4b9eb)
(at 157.3784 79.8068)
(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_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/8fd5326a-6173-4060-b28d-2fd98a2ed14b")
(attr smd)
(fp_text reference "C10" (at -2.54 0.0508) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa51e8db-1865-49fa-8e39-a0ad4deceb0e)
)
(fp_text value "100nF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5bf818b2-a56b-4171-bd6b-715715192e1c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 630c22c9-54a9-4942-be4d-8e64b3487ae7)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 0939c4c4-9d82-4521-9239-3d1476072737))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 8c9b333f-9b48-4644-b9f6-6016d2a2104c))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 5919e050-43ca-4f88-9623-a4d1ee4e59b0))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 7213c163-bfc8-43c4-92da-005c343b6c9e))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 82d935eb-95d6-424c-acb1-3008bc10a363))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 8bbfc179-95cf-4b04-ae8b-74af5516a46f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 39a1d8de-316c-4bf9-a9d2-4caaa2cec52d))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 6fd3942a-2c54-4f55-95a4-c55615694be2))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 89bdac15-ff41-46d4-8dcd-3e269fe1ac27))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a98974d7-ced4-43c8-b308-0af5b2ab0e90))
(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 3 "+3V3") (pintype "passive") (tstamp 486d8f2c-0b16-4258-a4ee-dacbaf1e2929))
(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 6a98fd06-ed79-4ea9-9584-c0f17518d76d))
(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 9fba640c-4938-4d56-86de-04997f241c28)
(at 151.2062 86.5378 -90)
(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_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/62a3038a-a799-42c6-aa72-e1fbd9c10af0")
(attr smd)
(fp_text reference "C4" (at 1.905 1.4732 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bfc82c34-1263-4255-b71d-6c906e1653ee)
)
(fp_text value "10p" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94a366c4-152d-4499-9c93-fb0d9dd39e34)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 125c48bf-fe19-4df6-bb61-5f15461242a1)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 2314cfbc-46f7-4622-a041-abdd48ad027f))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp c95f8412-fa57-4351-8376-812bb8e187ca))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 0d4395a8-c667-42fd-a900-41e93f08edd0))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp a49c8917-15ef-4212-94dc-3303610bb985))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp a97c6e9f-8dad-46b9-a9bf-47efade39d9b))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp d6c46f5c-3f4a-42a2-9617-6b814ba684ed))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 444c6cf0-fefb-4e95-97cb-386963564ab9))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 85ef114d-59a2-415d-a75c-3065258672d9))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 91f31751-a2d5-457e-a19a-95b3c12b95d9))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d100d0e3-fdcd-47a9-9481-46c3a1f768ac))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 0bd8de1d-0277-4159-bfc1-dfa33f992c94))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/HSE_OUT") (pintype "passive") (tstamp ee16be63-ff5d-4611-85d0-0fde0bb2afee))
(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_QFP:LQFP-48_7x7mm_P0.5mm" (layer "F.Cu")
(tedit 5D9F72AF) (tstamp a14d892c-c1b7-4f2b-b36d-1c44fc913951)
(at 159.8676 85.9282)
(descr "LQFP, 48 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2358-16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "LQFP QFP")
(property "Sheetfile" "stm32_minimal_dev.kicad_sch")
(property "Sheetname" "")
(path "/84b78d20-e0d3-455e-89db-b88b7b91656e")
(attr smd)
(fp_text reference "U2" (at 0 -1.36) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08d3eb2b-fae9-46db-a7ee-b2fea97247e3)
)
(fp_text value "STM32F103C8T6" (at 0 2.64) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0dc0b552-7fef-4635-a6b3-7fe0056ae180)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70d01b2b-0334-4744-8eb3-bbba02215d92)
)
(fp_line (start 3.61 3.61) (end 3.61 3.16) (layer "F.SilkS") (width 0.12) (tstamp 70f8ede0-3d1f-400a-a7a4-abddbed29d06))
(fp_line (start -3.61 3.61) (end -3.61 3.16) (layer "F.SilkS") (width 0.12) (tstamp 7e020e18-8881-4325-a711-5c6ebd3aa2f5))
(fp_line (start 3.16 -3.61) (end 3.61 -3.61) (layer "F.SilkS") (width 0.12) (tstamp 8c3fc3e9-1fbd-4416-9e38-ec26ed8be64e))
(fp_line (start -3.61 -3.61) (end -3.61 -3.16) (layer "F.SilkS") (width 0.12) (tstamp 9047c791-9d54-45bc-84e4-81dcfaafa466))
(fp_line (start -3.61 -3.16) (end -4.9 -3.16) (layer "F.SilkS") (width 0.12) (tstamp dc1d4148-eb8e-47b6-88a6-fdd284a816b7))
(fp_line (start 3.61 -3.61) (end 3.61 -3.16) (layer "F.SilkS") (width 0.12) (tstamp e317859f-0cf9-4f27-8d6b-051082f4a7a9))
(fp_line (start -3.16 -3.61) (end -3.61 -3.61) (layer "F.SilkS") (width 0.12) (tstamp eaf0b7c3-411c-49b7-9754-29dd51c7142f))
(fp_line (start 3.16 3.61) (end 3.61 3.61) (layer "F.SilkS") (width 0.12) (tstamp ef39a10a-b20f-4532-b49b-0780bec34136))
(fp_line (start -3.16 3.61) (end -3.61 3.61) (layer "F.SilkS") (width 0.12) (tstamp fabf1733-71e7-4fc3-80d3-99dbaf92c6db))
(fp_line (start -3.75 -3.15) (end -5.15 -3.15) (layer "F.CrtYd") (width 0.05) (tstamp 05c4051b-bb95-41fa-9314-b2ce376846c3))
(fp_line (start -3.75 3.15) (end -5.15 3.15) (layer "F.CrtYd") (width 0.05) (tstamp 07ce35f4-f77a-42fd-a241-9af68bd04240))
(fp_line (start 3.75 -3.15) (end 5.15 -3.15) (layer "F.CrtYd") (width 0.05) (tstamp 23c80bc9-fb58-46f5-934c-a99c36b8da49))
(fp_line (start 0 -5.15) (end 3.15 -5.15) (layer "F.CrtYd") (width 0.05) (tstamp 25e1a821-d63c-45b0-9a2b-f312e89d541a))
(fp_line (start 5.15 3.15) (end 5.15 0) (layer "F.CrtYd") (width 0.05) (tstamp 3c2e26d5-5985-4f0d-9f61-f478b3c80c68))
(fp_line (start -3.15 5.15) (end -3.15 3.75) (layer "F.CrtYd") (width 0.05) (tstamp 46119d9c-f088-44cc-8a44-71cfbcf3cab4))
(fp_line (start 3.15 -3.75) (end 3.75 -3.75) (layer "F.CrtYd") (width 0.05) (tstamp 4870bd85-773b-4fb5-a1d7-049e0b857b72))
(fp_line (start 3.15 3.75) (end 3.75 3.75) (layer "F.CrtYd") (width 0.05) (tstamp 5dd23d59-2182-4d28-a5f4-cc5e949bda7f))
(fp_line (start 0 -5.15) (end -3.15 -5.15) (layer "F.CrtYd") (width 0.05) (tstamp 7b76fcda-3dcb-4c83-9099-f498f0f450be))
(fp_line (start -5.15 3.15) (end -5.15 0) (layer "F.CrtYd") (width 0.05) (tstamp 7b83adef-4fd3-48fa-a513-371000afb7a1))
(fp_line (start -3.15 -5.15) (end -3.15 -3.75) (layer "F.CrtYd") (width 0.05) (tstamp 866919da-db5d-424e-bbe2-4aa2d4cf7415))
(fp_line (start 3.75 3.75) (end 3.75 3.15) (layer "F.CrtYd") (width 0.05) (tstamp a0742620-f543-4071-9a7d-b29a22678f25))
(fp_line (start 5.15 -3.15) (end 5.15 0) (layer "F.CrtYd") (width 0.05) (tstamp abbb8b83-2cc8-4e73-9fa8-dd7c31b4217a))
(fp_line (start -5.15 -3.15) (end -5.15 0) (layer "F.CrtYd") (width 0.05) (tstamp acf4283d-3f28-45f8-9f82-8bd02c6afe1d))
(fp_line (start -3.15 -3.75) (end -3.75 -3.75) (layer "F.CrtYd") (width 0.05) (tstamp c4681652-12be-471e-b6da-de0dba2f1a7a))
(fp_line (start 3.15 5.15) (end 3.15 3.75) (layer "F.CrtYd") (width 0.05) (tstamp ca3efd9e-14bf-47e4-8d89-8b94bb650ab7))
(fp_line (start -3.75 3.75) (end -3.75 3.15) (layer "F.CrtYd") (width 0.05) (tstamp d38e8c77-b6b0-4648-bc6e-ca5d52ceddf9))
(fp_line (start 3.75 3.15) (end 5.15 3.15) (layer "F.CrtYd") (width 0.05) (tstamp d457887e-590e-4a23-9650-5ca178cdd792))
(fp_line (start -3.75 -3.75) (end -3.75 -3.15) (layer "F.CrtYd") (width 0.05) (tstamp d857f37f-124c-4d80-9348-c70b94354dac))
(fp_line (start 0 5.15) (end 3.15 5.15) (layer "F.CrtYd") (width 0.05) (tstamp df78bc0f-b4e5-4c80-b676-2b7a04815e9b))
(fp_line (start -3.15 3.75) (end -3.75 3.75) (layer "F.CrtYd") (width 0.05) (tstamp f49e3a9f-a7b6-45a6-838c-d11175082cb4))
(fp_line (start 3.75 -3.75) (end 3.75 -3.15) (layer "F.CrtYd") (width 0.05) (tstamp f6174591-6288-4c89-bad2-2720dd994e0c))
(fp_line (start 3.15 -5.15) (end 3.15 -3.75) (layer "F.CrtYd") (width 0.05) (tstamp fdd2945c-1f20-4031-ab98-4c42eb1db267))
(fp_line (start 0 5.15) (end -3.15 5.15) (layer "F.CrtYd") (width 0.05) (tstamp feb7cb94-1629-4de9-90e9-c322114577a6))
(fp_line (start -3.5 -2.5) (end -2.5 -3.5) (layer "F.Fab") (width 0.1) (tstamp 24ab7098-3506-4c88-9647-b1638dec8284))
(fp_line (start -2.5 -3.5) (end 3.5 -3.5) (layer "F.Fab") (width 0.1) (tstamp 479cfbdf-a75a-4979-9819-0fbfde3c9ff2))
(fp_line (start 3.5 -3.5) (end 3.5 3.5) (layer "F.Fab") (width 0.1) (tstamp 63ec7a34-354a-4cba-96d2-aeb049a41b3b))
(fp_line (start 3.5 3.5) (end -3.5 3.5) (layer "F.Fab") (width 0.1) (tstamp 698b01ac-3ad8-4872-b0bd-2e39b96195a6))
(fp_line (start -3.5 3.5) (end -3.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 887db6ad-a356-47ec-828f-0c1d383f4acb))
(pad "1" smd roundrect (at -4.1625 -2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "VBAT") (pintype "power_in") (tstamp 8e9e61f0-3c87-4217-af0f-06658cff1885))
(pad "2" smd roundrect (at -4.1625 -2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "PC13") (pinfunction "PC13") (pintype "bidirectional") (tstamp fecb3c32-6305-4fa9-ac58-394e362db526))
(pad "3" smd roundrect (at -4.1625 -1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "PC14") (pinfunction "PC14") (pintype "bidirectional") (tstamp 33bade97-661e-4545-b781-2f2b301b4b10))
(pad "4" smd roundrect (at -4.1625 -1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "PC15") (pinfunction "PC15") (pintype "bidirectional") (tstamp d6df7db9-17bd-4a88-9024-2b56f6a8d287))
(pad "5" smd roundrect (at -4.1625 -0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/HSE_IN") (pinfunction "PD0") (pintype "input") (tstamp 4902a287-cdc0-4eda-ac04-0fb4e1e4d9b4))
(pad "6" smd roundrect (at -4.1625 -0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/HSE_OUT") (pinfunction "PD1") (pintype "input") (tstamp 93168b02-77ff-4bc7-86d4-af646e909711))
(pad "7" smd roundrect (at -4.1625 0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/NRST") (pinfunction "NRST") (pintype "input") (tstamp c42d5d7f-3a62-4723-99be-30b157a8035e))
(pad "8" smd roundrect (at -4.1625 0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "VSSA") (pintype "power_in") (tstamp e04a2ea4-3d31-4f26-893b-a8452b97468e))
(pad "9" smd roundrect (at -4.1625 1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "+3.3VA") (pinfunction "VDDA") (pintype "power_in") (tstamp 650bd9a3-dcd3-4826-9de1-6aa064997569))
(pad "10" smd roundrect (at -4.1625 1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "PA0") (pinfunction "PA0") (pintype "bidirectional") (tstamp b74d2927-fbc9-47a1-9ad1-7ed447998a95))
(pad "11" smd roundrect (at -4.1625 2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "PA1") (pinfunction "PA1") (pintype "bidirectional") (tstamp 1ff8cbdb-61a3-42e0-b57c-170bca8627f6))
(pad "12" smd roundrect (at -4.1625 2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "PA2") (pinfunction "PA2") (pintype "bidirectional") (tstamp 30f40650-1ea6-4083-8553-2bc57642ccaa))
(pad "13" smd roundrect (at -2.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "PA3") (pinfunction "PA3") (pintype "bidirectional") (tstamp 9be5c73d-2527-4e08-84d3-0f030fc03b18))
(pad "14" smd roundrect (at -2.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "PA4") (pinfunction "PA4") (pintype "bidirectional") (tstamp 2d254d2e-639d-4016-8522-f8ceee295825))
(pad "15" smd roundrect (at -1.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "PA5") (pinfunction "PA5") (pintype "bidirectional") (tstamp 907a50f7-5f39-4a4a-b12b-f23b951b1cb2))
(pad "16" smd roundrect (at -1.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "PA6") (pinfunction "PA6") (pintype "bidirectional") (tstamp 9282a862-f2f4-4446-bef5-9507847ff374))
(pad "17" smd roundrect (at -0.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "PA7") (pinfunction "PA7") (pintype "bidirectional") (tstamp 892026f7-b576-43a4-ab07-1596c2e73e23))
(pad "18" smd roundrect (at -0.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "PB0") (pinfunction "PB0") (pintype "bidirectional") (tstamp 11139ecf-4499-47b8-ab38-277e1c39596e))
(pad "19" smd roundrect (at 0.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "PB1") (pinfunction "PB1") (pintype "bidirectional") (tstamp d0c7228f-0f61-4ab8-80d8-95463a23521a))
(pad "20" smd roundrect (at 0.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "PB2") (pinfunction "PB2") (pintype "bidirectional") (tstamp f59c9287-861e-47e5-8503-5b63fcfc3998))
(pad "21" smd roundrect (at 1.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/I2C_SCL") (pinfunction "PB10") (pintype "bidirectional") (tstamp 8d09076d-c3c3-418e-b614-1ee39724f91a))
(pad "22" smd roundrect (at 1.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/I2C_SDA") (pinfunction "PB11") (pintype "bidirectional") (tstamp 7ab52191-4953-4b38-9816-de8c1f3431be))
(pad "23" smd roundrect (at 2.25 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp d6b6cb13-e366-4bec-ba5d-7f7e584b935c))
(pad "24" smd roundrect (at 2.75 4.1625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 32ae4a96-369c-402e-8b60-b5234c814c1b))
(pad "25" smd roundrect (at 4.1625 2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "PB12") (pinfunction "PB12") (pintype "bidirectional") (tstamp 520fd47b-3a11-4a50-9f9c-dfae34a1b314))
(pad "26" smd roundrect (at 4.1625 2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "PB13") (pinfunction "PB13") (pintype "bidirectional") (tstamp e408fced-651d-4b11-ae90-4ab0a41a7998))
(pad "27" smd roundrect (at 4.1625 1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "PB14") (pinfunction "PB14") (pintype "bidirectional") (tstamp c87b448e-4f57-4efb-8ad8-4abb767fcffe))
(pad "28" smd roundrect (at 4.1625 1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "PB15") (pinfunction "PB15") (pintype "bidirectional") (tstamp 3fb1db94-eda7-48e1-8d32-a5464a1c3d82))
(pad "29" smd roundrect (at 4.1625 0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "PA8") (pinfunction "PA8") (pintype "bidirectional") (tstamp a30ed432-99ea-4e37-bfbc-5552a6c5bfef))
(pad "30" smd roundrect (at 4.1625 0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "PA9") (pinfunction "PA9") (pintype "bidirectional") (tstamp 4580a083-3b86-4108-b8a7-f6dd4c64bf3e))