-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstm32f072_template.kicad_pcb
2275 lines (2245 loc) · 174 KB
/
stm32f072_template.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 20221018) (generator pcbnew)
(general
(thickness 1.2)
)
(paper "A4")
(layers
(0 "F.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.11) (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)
(grid_origin 135.8925 91.9)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 "+5V")
(net 2 "GND")
(net 3 "+3V3")
(net 4 "NRST")
(net 5 "VBUS")
(net 6 "Net-(J1-CC1)")
(net 7 "D_P")
(net 8 "D_N")
(net 9 "unconnected-(J1-SBU1-PadA8)")
(net 10 "Net-(J1-CC2)")
(net 11 "unconnected-(J1-SBU2-PadB8)")
(net 12 "BOOT0")
(net 13 "/C13")
(net 14 "/C14")
(net 15 "/C15")
(net 16 "/F0")
(net 17 "/F1")
(net 18 "/B1")
(net 19 "/B2")
(net 20 "/B10")
(net 21 "/B11")
(net 22 "/B12")
(net 23 "/B13")
(net 24 "/B14")
(net 25 "/B15")
(net 26 "/A8")
(net 27 "/A15")
(net 28 "/B4")
(net 29 "/B5")
(net 30 "/B6")
(net 31 "/B7")
(net 32 "/A2")
(net 33 "/A3")
(net 34 "/A4")
(net 35 "/A5")
(net 36 "/A6")
(net 37 "/A7")
(net 38 "/B0")
(net 39 "/B3")
(net 40 "/B8")
(net 41 "/B9")
(net 42 "/A1")
(net 43 "/A9")
(net 44 "/A10")
(net 45 "/A13")
(net 46 "/A14")
(net 47 "Net-(R3-Pad2)")
(net 48 "/A0")
(net 49 "D+")
(net 50 "D-")
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 0cb05042-ff4d-4acd-aa11-dc0cbb06270b)
(at 140.3925 87.65 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 "JlcRotOffset" "")
(property "LCSC" "C307331")
(property "Sheetfile" "stm32f072_template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/a5e0ec54-5db0-4af9-b31d-bc26d8a090e9")
(attr smd)
(fp_text reference "C4" (at 0 1.25 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d488d484-307c-447f-a23b-ab9e46e988db)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a62c71ef-e42b-4307-bece-9d7a336173e5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 53b4e749-d578-4213-bc7c-77d427405549)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72155249-adae-4b6d-a7dc-48876ebfaebc))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e330a7b-5746-426b-be82-0b6d15f1b054))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37f9b012-e9fc-4760-90f1-c72d3ce326ee))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf7104ec-a1cc-4198-b05b-93c90a7842cd))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f2833bb5-8440-485e-a234-abb695aebc18))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1432fd9-e657-409e-ab5e-0158fa9371f8))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c862300-a309-48f9-aa11-a854cf5c1fef))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a203ae25-5d23-4f05-bb1f-fab9491e2523))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c29b394c-14a4-42e7-92ae-0ceedb72cddd))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5dfbdf2-91c2-4136-99de-22c3e32f5f91))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 6854e1af-5a3a-44ac-a8a7-cfaf8534f3a8))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 70e2b2bf-9d46-41db-b6bb-c69e4cea3f52))
(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")
(tstamp 0cd02d3d-e821-4a58-bef8-3e0aafd17330)
(at 135.8925 91.9 90)
(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 "JlcRotOffset" "90")
(property "Sheetfile" "stm32f072_template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "STMicroelectronics Arm Cortex-M0 MCU, 128KB flash, 16KB RAM, 48 MHz, 2.0-3.6V, 37 GPIO, LQFP48")
(property "ki_keywords" "Arm Cortex-M0 STM32F0 STM32F0x2")
(path "/2fe9df39-b4ee-4751-9429-89b0a35117b7")
(attr smd)
(fp_text reference "U1" (at 0 -5.85 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1caaf07d-2bfa-4746-a42d-fb362f5f5207)
)
(fp_text value "STM32F072CBT6" (at 0 5.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ec78a75-964b-497f-a46d-8b315913b987)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c6a90cd-d78f-4fa1-bf34-b2141a0efa9e)
)
(fp_line (start -3.61 -3.61) (end -3.61 -3.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15b45713-5373-437d-a0d2-05685e0ddb4e))
(fp_line (start -3.61 -3.16) (end -4.9 -3.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f42e09d0-c6ac-410b-83b1-fdacf4c5a491))
(fp_line (start -3.61 3.61) (end -3.61 3.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7246768e-67bb-44bb-b4a0-d4b50699a39c))
(fp_line (start -3.16 -3.61) (end -3.61 -3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 533ecf91-c445-4fb3-92bc-3e0141519c83))
(fp_line (start -3.16 3.61) (end -3.61 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34941cfd-66a5-498e-9863-f622232fac46))
(fp_line (start 3.16 -3.61) (end 3.61 -3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3113f66c-7c7d-45e7-ad96-e56a69b4a02f))
(fp_line (start 3.16 3.61) (end 3.61 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e4ee813-95e3-4fce-813c-f8690986a1df))
(fp_line (start 3.61 -3.61) (end 3.61 -3.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9504271-272b-49a6-a3a4-dabaa57b1342))
(fp_line (start 3.61 3.61) (end 3.61 3.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00dd7139-0f82-45a5-9418-3d180a8362cc))
(fp_line (start -5.15 -3.15) (end -5.15 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 159a9309-acd4-4ac2-bc1b-f4405d45c7f9))
(fp_line (start -5.15 3.15) (end -5.15 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f683bc0-6b2f-4e01-b859-5bbaa46cc895))
(fp_line (start -3.75 -3.75) (end -3.75 -3.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e7a858a5-0492-4a24-aeeb-378bf116e508))
(fp_line (start -3.75 -3.15) (end -5.15 -3.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 172f2d4d-6ce4-4216-97a1-fc49b9298942))
(fp_line (start -3.75 3.15) (end -5.15 3.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b56a938-303c-4b89-90fd-64ad7f04620d))
(fp_line (start -3.75 3.75) (end -3.75 3.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77e3580c-f675-4406-a471-2ee9e2c55fe9))
(fp_line (start -3.15 -5.15) (end -3.15 -3.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f120edb6-327f-4ee0-8bfa-b99f72273924))
(fp_line (start -3.15 -3.75) (end -3.75 -3.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71e2947f-8e89-4598-ba9e-ca4a99f3dd51))
(fp_line (start -3.15 3.75) (end -3.75 3.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 658dc977-96f5-4d24-b68a-9e892f6d00f3))
(fp_line (start -3.15 5.15) (end -3.15 3.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b4b9f91e-220e-4df8-a978-a48a6355f029))
(fp_line (start 0 -5.15) (end -3.15 -5.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d545fc16-066d-4335-8be2-b1e341d1e152))
(fp_line (start 0 -5.15) (end 3.15 -5.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 50f2e518-dd1c-4774-9fa4-c18c3fa366df))
(fp_line (start 0 5.15) (end -3.15 5.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dfc7c4b1-27e0-47d4-99e0-d78765b2dab1))
(fp_line (start 0 5.15) (end 3.15 5.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79462d8d-d866-4993-8cec-538063b737b5))
(fp_line (start 3.15 -5.15) (end 3.15 -3.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01ed1b60-7c75-4413-b66c-157d4fea0894))
(fp_line (start 3.15 -3.75) (end 3.75 -3.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9087878-841e-44b8-b402-a73eba4123af))
(fp_line (start 3.15 3.75) (end 3.75 3.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 117f241f-c7f4-41d8-9cf8-b42e15b90e9a))
(fp_line (start 3.15 5.15) (end 3.15 3.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f1b908ac-0595-4238-b0b6-7d7f8777ead6))
(fp_line (start 3.75 -3.75) (end 3.75 -3.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 061f1d7c-0dbf-4982-9996-8e1de4867141))
(fp_line (start 3.75 -3.15) (end 5.15 -3.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 853ce7e7-1cfd-48b6-b5fb-28d286615580))
(fp_line (start 3.75 3.15) (end 5.15 3.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d92f03f7-5e89-4782-8d49-bb8fad06ada2))
(fp_line (start 3.75 3.75) (end 3.75 3.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 69a24269-0426-497e-837c-4977b90e3410))
(fp_line (start 5.15 -3.15) (end 5.15 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4693ad4-1616-42e7-ab57-9a5a06d72c0f))
(fp_line (start 5.15 3.15) (end 5.15 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89791a06-9883-4280-b770-14ca4659e020))
(fp_line (start -3.5 -2.5) (end -2.5 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55d7521e-f3bd-419f-8ccf-cb240820f16f))
(fp_line (start -3.5 3.5) (end -3.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ffeef18a-802a-4f95-aa03-1732aed11044))
(fp_line (start -2.5 -3.5) (end 3.5 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f856ec1-262c-4851-b34e-e70b2b14bff5))
(fp_line (start 3.5 -3.5) (end 3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b612279-daaa-4dff-bd2a-b721be2542c3))
(fp_line (start 3.5 3.5) (end -3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6adf5cfc-44a9-464e-97e9-8509151959cf))
(pad "1" smd roundrect (at -4.1625 -2.75 90) (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 ea603919-736c-468b-a736-0aca1e516503))
(pad "2" smd roundrect (at -4.1625 -2.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/C13") (pinfunction "PC13") (pintype "bidirectional") (tstamp 7d760726-cbaf-4dd2-bb94-d1a1bf0fcaeb))
(pad "3" smd roundrect (at -4.1625 -1.75 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/C14") (pinfunction "PC14") (pintype "bidirectional") (tstamp 04f323fc-7dfd-414e-84e2-9ae5a58cc578))
(pad "4" smd roundrect (at -4.1625 -1.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/C15") (pinfunction "PC15") (pintype "bidirectional") (tstamp c1081b1a-adf3-495e-a082-6dd3810e3a77))
(pad "5" smd roundrect (at -4.1625 -0.75 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/F0") (pinfunction "PF0") (pintype "bidirectional") (tstamp 614dbe99-b5a2-4b0e-bc6d-c538b46cc7c1))
(pad "6" smd roundrect (at -4.1625 -0.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/F1") (pinfunction "PF1") (pintype "bidirectional") (tstamp a00957b6-624c-480f-9207-bb03cf52abe3))
(pad "7" smd roundrect (at -4.1625 0.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "NRST") (pinfunction "NRST") (pintype "input") (tstamp e1cedae9-a4aa-4a58-96c2-2bb4d8869a41))
(pad "8" smd roundrect (at -4.1625 0.75 90) (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 8d6a3d13-5ff3-4435-8a20-d73e2613e341))
(pad "9" smd roundrect (at -4.1625 1.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "VDDA") (pintype "power_in") (tstamp b8b573e7-2b43-43e6-8ba9-bf832e063842))
(pad "10" smd roundrect (at -4.1625 1.75 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "/A0") (pinfunction "PA0") (pintype "bidirectional") (tstamp ef2aa11c-9f0f-462a-b2da-541ab8a93008))
(pad "11" smd roundrect (at -4.1625 2.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "/A1") (pinfunction "PA1") (pintype "bidirectional") (tstamp a5f2a509-cc66-4f32-b6c0-bfa8e84a7e45))
(pad "12" smd roundrect (at -4.1625 2.75 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "/A2") (pinfunction "PA2") (pintype "bidirectional") (tstamp 72f47510-0334-41f8-8fad-2afb8913032b))
(pad "13" smd roundrect (at -2.75 4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "/A3") (pinfunction "PA3") (pintype "bidirectional") (tstamp 56b09c27-9631-478c-a207-020014a202ee))
(pad "14" smd roundrect (at -2.25 4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "/A4") (pinfunction "PA4") (pintype "bidirectional") (tstamp f35821d3-2543-4a61-aae3-347483f76cec))
(pad "15" smd roundrect (at -1.75 4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "/A5") (pinfunction "PA5") (pintype "bidirectional") (tstamp 7edfb2ed-0da1-4fb3-a656-c74bd674a53e))
(pad "16" smd roundrect (at -1.25 4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "/A6") (pinfunction "PA6") (pintype "bidirectional") (tstamp 9f687068-af43-422e-9e5d-ea4f3d68a00f))
(pad "17" smd roundrect (at -0.75 4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "/A7") (pinfunction "PA7") (pintype "bidirectional") (tstamp c78f40d6-94e5-4adb-9f8d-f1a7a0e50a6a))
(pad "18" smd roundrect (at -0.25 4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "/B0") (pinfunction "PB0") (pintype "bidirectional") (tstamp 35abef74-1fef-4fe2-91a2-9e3884607260))
(pad "19" smd roundrect (at 0.25 4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/B1") (pinfunction "PB1") (pintype "bidirectional") (tstamp 8a19ab04-c9af-4ced-afe4-27374fbc363a))
(pad "20" smd roundrect (at 0.75 4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/B2") (pinfunction "PB2") (pintype "bidirectional") (tstamp 49412159-cfb7-4809-9bf2-92a0dd38beff))
(pad "21" smd roundrect (at 1.25 4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/B10") (pinfunction "PB10") (pintype "bidirectional") (tstamp 13d45f1e-0e0c-4d75-8eba-47b85e63b4e3))
(pad "22" smd roundrect (at 1.75 4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/B11") (pinfunction "PB11") (pintype "bidirectional") (tstamp 38b32799-c2e9-42a1-baaa-e0b40e8a8cac))
(pad "23" smd roundrect (at 2.25 4.1625 90) (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 ad81551d-f77d-46a2-86be-f859238c8b44))
(pad "24" smd roundrect (at 2.75 4.1625 90) (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 001cdefd-1023-46a7-a46f-a317ae7798c0))
(pad "25" smd roundrect (at 4.1625 2.75 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/B12") (pinfunction "PB12") (pintype "bidirectional") (tstamp 76f40573-2f7d-4e17-a614-ead9ab0db7cd))
(pad "26" smd roundrect (at 4.1625 2.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/B13") (pinfunction "PB13") (pintype "bidirectional") (tstamp 988346fe-ca21-492c-af98-aeb6bc3ca65e))
(pad "27" smd roundrect (at 4.1625 1.75 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/B14") (pinfunction "PB14") (pintype "bidirectional") (tstamp a0fe51ca-9c3d-4817-8a40-92552c8a5c35))
(pad "28" smd roundrect (at 4.1625 1.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/B15") (pinfunction "PB15") (pintype "bidirectional") (tstamp e04cbf39-2d38-4ba4-8f47-fae88e9024d9))
(pad "29" smd roundrect (at 4.1625 0.75 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/A8") (pinfunction "PA8") (pintype "bidirectional") (tstamp 96246d67-670d-4ee9-b629-0775ff9910e9))
(pad "30" smd roundrect (at 4.1625 0.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "/A9") (pinfunction "PA9") (pintype "bidirectional") (tstamp 8bb82e35-f585-49c7-b510-5665cd1464a0))
(pad "31" smd roundrect (at 4.1625 -0.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "/A10") (pinfunction "PA10") (pintype "bidirectional") (tstamp c643deb1-c62d-41a2-8c0c-5a90428837cf))
(pad "32" smd roundrect (at 4.1625 -0.75 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "D-") (pinfunction "PA11") (pintype "bidirectional") (tstamp feacfbe8-3b26-4718-bf20-9471b164a5df))
(pad "33" smd roundrect (at 4.1625 -1.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "D+") (pinfunction "PA12") (pintype "bidirectional") (tstamp c6c896a0-02c2-4b06-8082-4631f91a92cb))
(pad "34" smd roundrect (at 4.1625 -1.75 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "/A13") (pinfunction "PA13") (pintype "bidirectional") (tstamp 6f44507f-7b5d-4ac7-a14f-2b73950c43f2))
(pad "35" smd roundrect (at 4.1625 -2.25 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "VSS") (pintype "passive") (tstamp bef507c0-6b0a-4e63-baad-495b7829b1e7))
(pad "36" smd roundrect (at 4.1625 -2.75 90) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "VDDIO2") (pintype "power_in") (tstamp 48a61929-3029-44e7-bf2f-95c4e60cb3bc))
(pad "37" smd roundrect (at 2.75 -4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "/A14") (pinfunction "PA14") (pintype "bidirectional") (tstamp 28f997c3-8866-4ee1-bc95-a02d267fe52b))
(pad "38" smd roundrect (at 2.25 -4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/A15") (pinfunction "PA15") (pintype "bidirectional") (tstamp a9838fe4-8bea-43bd-9699-30930086ca9d))
(pad "39" smd roundrect (at 1.75 -4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "/B3") (pinfunction "PB3") (pintype "bidirectional") (tstamp fb974fdd-498b-42f1-a13c-f2055f697364))
(pad "40" smd roundrect (at 1.25 -4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/B4") (pinfunction "PB4") (pintype "bidirectional") (tstamp fdbab360-3e16-4693-b357-bc979fed94a4))
(pad "41" smd roundrect (at 0.75 -4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "/B5") (pinfunction "PB5") (pintype "bidirectional") (tstamp 3b8951b2-7f19-4d72-952b-c8d957a118c8))
(pad "42" smd roundrect (at 0.25 -4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/B6") (pinfunction "PB6") (pintype "bidirectional") (tstamp 9849ec64-40a2-4fdd-8112-e7247889bd68))
(pad "43" smd roundrect (at -0.25 -4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "/B7") (pinfunction "PB7") (pintype "bidirectional") (tstamp 442a003c-e6de-4c72-b7d9-34909118f0ed))
(pad "44" smd roundrect (at -0.75 -4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "BOOT0") (pinfunction "BOOT0") (pintype "input") (tstamp b53d6335-e352-4123-93a1-aa16699633a0))
(pad "45" smd roundrect (at -1.25 -4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "/B8") (pinfunction "PB8") (pintype "bidirectional") (tstamp 6e5c7477-0971-4356-9ed5-64021662b27b))
(pad "46" smd roundrect (at -1.75 -4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "/B9") (pinfunction "PB9") (pintype "bidirectional") (tstamp 9e3cd43b-fe57-4482-8c8a-0686b4c47673))
(pad "47" smd roundrect (at -2.25 -4.1625 90) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "VSS") (pintype "passive") (tstamp dc8ce656-f91f-46cf-8d0c-b55d5c5b88db))
(pad "48" smd roundrect (at -2.75 -4.1625 90) (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 241df046-afe7-4402-bdaf-d12416e68a80))
(model "${KICAD6_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-48_7x7mm_P0.5mm.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")
(tstamp 2215ac79-cb8d-4c7a-9911-280f94add185)
(at 131.6425 87.4 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 "JlcRotOffset" "")
(property "LCSC" "C307331")
(property "Sheetfile" "stm32f072_template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/c22e7e5b-6efe-4b49-bed8-f1bf9b7893b1")
(attr smd)
(fp_text reference "C3" (at -0.25 1.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7eed3731-ce55-4af4-9f02-d0daf5ec13ff)
)
(fp_text value "100nF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7bcedae2-9f25-4fcb-80a5-7b374f058f51)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp cf4e16ec-b947-48bd-a14b-4abbd3cf78e8)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 394d306a-d275-48e1-b7dd-b7c2d3b535f6))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d0813538-3e78-480b-8137-1a796c375d95))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c1b2ae4-930a-455c-a0f8-47a671ccda32))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 35c22986-5156-4c8a-b41f-29265a5a82e7))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 825d39ae-913a-48cc-aebf-2d729f97d830))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fcadee5c-8a64-44ee-bded-cfa0f1157c4f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8fefd834-6554-4289-9c5f-0614550c29fd))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 090e0009-25e5-4e01-9945-4f12aeb5ec3a))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp afcd1fa5-4522-48ea-840c-180ac6d8055e))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e19dbc9-1bd7-489a-8321-2577a74d1e7b))
(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 25a18ad9-6b58-4566-beb0-d2d1a2543224))
(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 52fdd2ec-c545-4475-b504-dcb30c7afb8f))
(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 "Button_Switch_SMD:SW_SPST_TL3342" (layer "F.Cu")
(tstamp 2d0934e7-dc35-4b5a-9381-1e3255f700ec)
(at 132.8925 108.9 -90)
(descr "Low-profile SMD Tactile Switch, https://www.e-switch.com/system/asset/product_line/data_sheet/165/TL3342.pdf")
(tags "SPST Tactile Switch")
(property "Sheetfile" "stm32f072_template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Single Pole Single Throw (SPST) switch")
(property "ki_keywords" "switch lever")
(path "/a07f3414-acf8-47e8-b0d7-268868e23375")
(attr smd)
(fp_text reference "BOOT1" (at 5 0 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 387d4858-72ce-4970-a508-a311cc3948ad)
)
(fp_text value "SW_SPST" (at 0 3.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2418e647-36f0-4390-ac80-01510d6b1f57)
)
(fp_text user "${REFERENCE}" (at 0 -3.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 718cacbc-70ea-474b-9c07-5325ada0e54c)
)
(fp_line (start -2.75 -1) (end -2.75 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0273e574-e8f4-4ae3-a1df-81b2b0e41edc))
(fp_line (start -1.7 -2.3) (end -1.25 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a665fb94-f87f-44fd-b96a-015229e48291))
(fp_line (start -1.7 2.3) (end -1.25 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9f1d54d-6ce3-4226-961c-b0035a9f2d60))
(fp_line (start -1.25 -2.75) (end 1.25 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d167d12-44a8-422c-bf20-40fb82b17196))
(fp_line (start -1.25 2.75) (end 1.25 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f750783c-1254-4edd-a7b1-adde89301897))
(fp_line (start 1.7 -2.3) (end 1.25 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b708c91a-05fb-4cf9-8cfd-0a6bbf7fb1fa))
(fp_line (start 1.7 2.3) (end 1.25 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94ab4d7a-28cf-4c3b-82d7-cc37a8c134fe))
(fp_line (start 2.75 -1) (end 2.75 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8a7761c-80f9-4d9b-b6b5-d20e371b3252))
(fp_line (start -4.25 -3) (end 4.25 -3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1689db1-e95a-4319-ac7a-9b17a4715ddb))
(fp_line (start -4.25 3) (end -4.25 -3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae5421e3-c44d-4aa8-a127-7c29366ec5bf))
(fp_line (start 4.25 -3) (end 4.25 3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f8314dd-84f6-4a0c-a99c-886e1373a91f))
(fp_line (start 4.25 3) (end -4.25 3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0606776f-a110-46d6-ba9a-a1c93751f2f8))
(fp_line (start -3.2 -2.1) (end -3.2 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d1f5be7-9549-44e2-ad0b-7a947582757c))
(fp_line (start -3.2 -1.6) (end -2.2 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7fbefab4-8337-4102-a123-20b7a2c80194))
(fp_line (start -3.2 1.6) (end -2.2 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37cf1be8-d1a8-4ec4-bb7e-c3bdd05e6670))
(fp_line (start -3.2 2.1) (end -3.2 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c0a5a2f-cb93-4eaa-9462-4e7f7e22b13e))
(fp_line (start -2.7 -2.1) (end -2.7 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 253a6bad-5b02-4c23-9fac-d457b4ef5ad5))
(fp_line (start -2.7 2.1) (end -2.7 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6344383-9bb0-45d3-b27d-11386fab3a61))
(fp_line (start -2.6 -1.2) (end -2.6 1.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a28aa1e-5834-4eb0-8fcd-cd28e2cc8167))
(fp_line (start -2.6 1.2) (end -1.2 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e3dd0e1-0402-4ae8-973e-4048a1ea126b))
(fp_line (start -2 -1) (end -1 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4629f48-5975-4976-9d3e-f76e70cb1208))
(fp_line (start -2 1) (end -2 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ab1715b-307d-4f96-bb07-f9c351871116))
(fp_line (start -1.7 -2.1) (end -3.2 -2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bbd9004-aa40-4a99-8792-d68ac06a42eb))
(fp_line (start -1.7 2.1) (end -3.2 2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fac5e36b-0396-4636-9aaf-558f4fc9e9c8))
(fp_line (start -1.2 -2.6) (end -2.6 -1.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a142d0da-c979-42ca-9012-511d9237b66e))
(fp_line (start -1.2 2.6) (end 1.2 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8304ec7c-3a69-4c1f-990d-8e41555216e3))
(fp_line (start -1 -2) (end 1 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b95ede28-5273-4e69-8520-c088ec4be301))
(fp_line (start -1 2) (end -2 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95f4de67-304c-417c-9860-1a606aae52d8))
(fp_line (start 1 -2) (end 2 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f37716dc-3133-4699-8654-e460ff27c4f2))
(fp_line (start 1 2) (end -1 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9219e516-eaaf-454d-8fe8-b52b398e438f))
(fp_line (start 1.2 -2.6) (end -1.2 -2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp da7e430a-349c-44b5-9729-65f328399692))
(fp_line (start 1.2 2.6) (end 2.6 1.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a142f4d-447e-4ef3-ba46-b885ae303504))
(fp_line (start 1.7 -2.1) (end 3.2 -2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 817ee5c0-d38b-4548-aaf5-5023d654020d))
(fp_line (start 1.7 2.1) (end 3.2 2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d459687f-4198-42be-987a-95951cfc600f))
(fp_line (start 2 -1) (end 2 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 889b7b9b-dad2-43f3-9726-baea11ba3685))
(fp_line (start 2 1) (end 1 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7961e7e-2dc0-44b3-bb22-acce1bdc6f48))
(fp_line (start 2.6 -1.2) (end 1.2 -2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1ef8fbe-e700-4d72-a108-0da24a221539))
(fp_line (start 2.6 1.2) (end 2.6 -1.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aec334f2-3404-422d-a805-a6b0467b111f))
(fp_line (start 2.7 -2.1) (end 2.7 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f9de1c45-3d5e-4e44-bebd-f7fa1839e02c))
(fp_line (start 2.7 2.1) (end 2.7 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82716df1-89db-4502-aa38-14a3aea0e9c9))
(fp_line (start 3.2 -2.1) (end 3.2 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4501447-fc07-4a89-8e15-1c73f36cb833))
(fp_line (start 3.2 -1.6) (end 2.2 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62c847e0-2349-4058-bc04-712f39b03656))
(fp_line (start 3.2 1.6) (end 2.2 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b7d6da8-29a8-40b4-b4df-7f3db1acf15c))
(fp_line (start 3.2 2.1) (end 3.2 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 425b904c-24d3-45fd-9f1d-621306fcb085))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 14e1f856-eb29-473f-bbde-7314bcf73d94))
(pad "1" smd rect (at -3.15 -1.9 270) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "A") (pintype "passive") (tstamp bfee5e42-3eb5-4b12-bd49-1a2e050d5c62))
(pad "1" smd rect (at 3.15 -1.9 270) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+3V3") (pinfunction "A") (pintype "passive") (tstamp 156edaa3-3b01-4c77-afa2-5e3f88dcdd6e))
(pad "2" smd rect (at -3.15 1.9 270) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "BOOT0") (pinfunction "B") (pintype "passive") (tstamp 08f148fd-f597-4e55-8f28-8b04067d5f04))
(pad "2" smd rect (at 3.15 1.9 270) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "BOOT0") (pinfunction "B") (pintype "passive") (tstamp 10151095-e5af-4254-82ba-8762bff0c42d))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_TL3342.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-143" (layer "F.Cu")
(tstamp 344ea3f0-08a6-45ef-b721-07cc0ad63f56)
(at 135.8925 74.15 180)
(descr "SOT-143 https://www.nxp.com/docs/en/package-information/SOT143B.pdf")
(tags "SOT-143")
(property "JlcRotOffset" "90")
(property "LCSC" "C2827688")
(property "Sheetfile" "stm32f072_template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Ultra low capacitance double rail-to-rail ESD protection diode, SOT-143")
(property "ki_keywords" "ESD protection diode")
(path "/dcf89681-35c6-49c4-a144-3bc59f05346f")
(attr smd)
(fp_text reference "U2" (at 0.02 -2.38) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e86ff269-98a3-4bbb-9956-31add5189122)
)
(fp_text value "PRTR5V0U2X" (at -0.28 2.48) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc98fc52-fdcd-484a-a244-cff0b1d7d6ea)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 83198300-8684-41fe-9716-19e028d0d9d6)
)
(fp_line (start -0.65 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d265fa53-6532-4887-8c5c-377095da40bb))
(fp_line (start 0.65 -1.56) (end -1.35 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98281f1c-d472-4521-ade6-dc3291bb8a07))
(fp_line (start -1.6 1.7) (end -1.6 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a47c171-528c-4654-ba17-42f5ea98aadf))
(fp_line (start -1.6 1.7) (end 1.6 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8553e82b-9834-40de-93d6-591d5db4b962))
(fp_line (start 1.6 -1.7) (end -1.6 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfb54b4b-7c6e-4b1e-960c-5ee012ed809a))
(fp_line (start 1.6 -1.7) (end 1.6 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6343570f-ed7e-486f-b79b-5fcb2e0481b9))
(fp_line (start -0.65 -0.95) (end -0.15 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2659f7e3-df14-4da2-9563-f801d6f1d21a))
(fp_line (start -0.65 1.45) (end -0.65 -0.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c9d20556-b2b6-4447-9fcd-10c893cfc528))
(fp_line (start -0.15 -1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 161849ce-26f6-41a5-89f8-8fef8dffe461))
(fp_line (start 0.65 -1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb9aa163-8a5f-4499-b50b-bd4e742ea8c7))
(fp_line (start 0.65 1.45) (end -0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4aa30ad5-f5af-4615-8043-a39abbedb839))
(pad "1" smd rect (at -1 -0.75 180) (size 0.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp f7f5bbc9-e6c2-441c-8c51-79abb58ec6fb))
(pad "2" smd rect (at -1 0.95 180) (size 0.7 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "D_N") (pinfunction "I/O1") (pintype "passive") (tstamp 14b25ce6-7f62-4d62-8ded-ec5b0e134a00))
(pad "3" smd rect (at 1 0.95 180) (size 0.7 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "D_P") (pinfunction "I/O2") (pintype "passive") (tstamp 7347cd96-2750-4399-a2a8-d5a05f14344b))
(pad "4" smd rect (at 1 -0.95 180) (size 0.7 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VCC") (pintype "passive") (tstamp b697ee64-e3a5-4b7d-87f0-078be3c81dd5))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-143.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")
(tstamp 351e50cc-bc41-459e-94e1-1fa64c637365)
(at 131.3925 96.15 -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 "JlcRotOffset" "")
(property "LCSC" "C307331")
(property "Sheetfile" "stm32f072_template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/c7f3e0a8-c4b8-4609-8e43-2e6ae45dc54a")
(attr smd)
(fp_text reference "C5" (at 0 1.25 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d432e673-6322-4bc9-a737-64249c7fb03a)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7ca182b-b14b-4e77-b040-39ed43b53cd8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp cd1f42fa-95a9-41d7-924e-3f8cb021c15b)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32f87662-2432-482b-b0e1-f9e97cfae2d5))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34d0e9b6-577e-4086-b4b2-275ed0eda44e))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 971b50b7-c428-4e6f-b814-1385e0463b6e))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3bf60ed3-d672-40e9-8f6c-2a0e5bc211d0))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5e17997-74ed-4c63-baac-3043efa65a45))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3b5427c-a89b-4573-a0bc-a4d91e113207))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b29d92a5-2203-4f5e-b67e-6618d2ee9b49))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4533d9ab-b6e1-422c-8d0d-1a2c2bb46cfc))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e653fe8-b264-4ad4-a869-4cd460d012be))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2df24ce7-40b4-466b-88d3-9b19bfbf960e))
(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 3164d1e9-8144-4ca8-a37a-bde17fc83f85))
(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 3ef136da-670d-48e4-8ad5-2ac4ac75cfae))
(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 "Button_Switch_SMD:SW_SPST_TL3342" (layer "F.Cu")
(tstamp 51ef89b4-e424-454d-8894-1a408ec1689b)
(at 138.8925 108.9 90)
(descr "Low-profile SMD Tactile Switch, https://www.e-switch.com/system/asset/product_line/data_sheet/165/TL3342.pdf")
(tags "SPST Tactile Switch")
(property "Sheetfile" "stm32f072_template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Single Pole Single Throw (SPST) switch")
(property "ki_keywords" "switch lever")
(path "/f0783c77-ca73-4e11-9e81-dfe88fd32809")
(attr smd)
(fp_text reference "RST1" (at -5 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a3790ca-6ace-4232-b210-2228c7d6d2db)
)
(fp_text value "SW_SPST" (at 0 3.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 136851a2-0c98-44f5-b9a2-4676b3552e08)
)
(fp_text user "${REFERENCE}" (at 0 -3.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 841ecc0e-1a77-41a0-949b-9721f47fb236)
)
(fp_line (start -2.75 -1) (end -2.75 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1bf15bf7-8544-47e6-8780-6e6830ae120a))
(fp_line (start -1.7 -2.3) (end -1.25 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd46fa79-f7af-429b-bc12-fb9d921783fc))
(fp_line (start -1.7 2.3) (end -1.25 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e31d6a0-d1e8-40be-97fa-574035c71d82))
(fp_line (start -1.25 -2.75) (end 1.25 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aea06183-0894-42a5-8bd6-00fecc685e77))
(fp_line (start -1.25 2.75) (end 1.25 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45397f0f-6b89-4dd6-8361-66df352327d8))
(fp_line (start 1.7 -2.3) (end 1.25 -2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7a061b7-175c-4715-82a7-59707a9adbab))
(fp_line (start 1.7 2.3) (end 1.25 2.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c491dcbd-5365-4c4f-b900-aabe5b49c517))
(fp_line (start 2.75 -1) (end 2.75 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3158ed8d-9d07-49c2-9e3e-e2bac17a4fbc))
(fp_line (start -4.25 -3) (end 4.25 -3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83111cd8-12b5-4a25-b7a3-3898dc653a7c))
(fp_line (start -4.25 3) (end -4.25 -3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 879f196b-b33f-4c42-9c84-76e9bab17aa4))
(fp_line (start 4.25 -3) (end 4.25 3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13957126-ca80-46fc-a7e6-cd4557f4412e))
(fp_line (start 4.25 3) (end -4.25 3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca6d9717-8384-49ab-a919-a5f9184dd6d9))
(fp_line (start -3.2 -2.1) (end -3.2 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d273c26-7506-4f7d-98ac-d7b3a560cd58))
(fp_line (start -3.2 -1.6) (end -2.2 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7124aed-b648-4260-affd-460ecc43a982))
(fp_line (start -3.2 1.6) (end -2.2 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6426c90a-1cb7-4af2-a91e-9e5f39224e88))
(fp_line (start -3.2 2.1) (end -3.2 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ede561b-14c0-4a13-8355-b1e78c544711))
(fp_line (start -2.7 -2.1) (end -2.7 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 220e8841-cbe5-4bdf-840f-97e9ac6ac120))
(fp_line (start -2.7 2.1) (end -2.7 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 03883d6f-929f-44f1-b64d-bb14ab567369))
(fp_line (start -2.6 -1.2) (end -2.6 1.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1cf899b-5c55-4683-aada-f032289c4c14))
(fp_line (start -2.6 1.2) (end -1.2 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35c586f5-dd3c-4c24-bed9-6145976f3c40))
(fp_line (start -2 -1) (end -1 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55740e63-7c20-412c-bd91-ea4b50eb72a8))
(fp_line (start -2 1) (end -2 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 536e08a7-5797-4ca6-857f-e384fd708a61))
(fp_line (start -1.7 -2.1) (end -3.2 -2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d9aedb1a-8130-48a5-b9cc-b877e3bee02f))
(fp_line (start -1.7 2.1) (end -3.2 2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ca0522c-3aeb-437a-a57b-077e7c45ec0c))
(fp_line (start -1.2 -2.6) (end -2.6 -1.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d41f02f8-4f03-4f84-8d69-3930484f3689))
(fp_line (start -1.2 2.6) (end 1.2 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f606bfa2-835b-4db2-967e-56772ef248fe))
(fp_line (start -1 -2) (end 1 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b7aaf5b-e67c-43a5-82ce-9e372441b031))
(fp_line (start -1 2) (end -2 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d482ab5-7f07-4438-a351-7911f97cc2e6))
(fp_line (start 1 -2) (end 2 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7009c539-53c4-4738-bfbd-9a0a54b7fc77))
(fp_line (start 1 2) (end -1 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c757e5d3-e355-4604-99c0-e6e3126dd6a9))
(fp_line (start 1.2 -2.6) (end -1.2 -2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7664ee75-e736-4e53-b5cb-27b6b323b95e))
(fp_line (start 1.2 2.6) (end 2.6 1.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2dfe3ebc-806b-4f9c-93c7-ab577e0621a2))
(fp_line (start 1.7 -2.1) (end 3.2 -2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7af1506b-7f77-4a4b-bb6a-e78be75ff34e))
(fp_line (start 1.7 2.1) (end 3.2 2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51943c80-cd8f-4a29-950f-387b14c50d9f))
(fp_line (start 2 -1) (end 2 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c6c9e87-57a6-4c75-9677-42fe46d47f52))
(fp_line (start 2 1) (end 1 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8568fd8-0d18-40ce-8112-026556ed23e0))
(fp_line (start 2.6 -1.2) (end 1.2 -2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 060a7d3f-9418-461c-bbef-75156f89697b))
(fp_line (start 2.6 1.2) (end 2.6 -1.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dec9a016-f0fa-4ef0-aee4-8ae229a42a7f))
(fp_line (start 2.7 -2.1) (end 2.7 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ac38b54-37ce-445d-9010-d04d5c9eeb63))
(fp_line (start 2.7 2.1) (end 2.7 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12629a81-79f9-42f8-8cd3-104603c4231d))
(fp_line (start 3.2 -2.1) (end 3.2 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 100d14ff-1a4b-4442-a3c9-565de78fde5f))
(fp_line (start 3.2 -1.6) (end 2.2 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f48b63d3-1100-4551-b701-5ef1444ef9e2))
(fp_line (start 3.2 1.6) (end 2.2 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fafd623c-bbc3-4d18-8612-2e76400802dc))
(fp_line (start 3.2 2.1) (end 3.2 1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1713194-231d-49a6-b111-970d90aaba7c))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 98156387-a07d-4611-9e10-286c57d9ff95))
(pad "1" smd rect (at -3.15 -1.9 90) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "NRST") (pinfunction "A") (pintype "passive") (tstamp dcd1989a-263a-48f5-bf78-355aaa169fd6))
(pad "1" smd rect (at 3.15 -1.9 90) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "NRST") (pinfunction "A") (pintype "passive") (tstamp 64d3a290-7b96-4c56-a0cb-7372bfd0018a))
(pad "2" smd rect (at -3.15 1.9 90) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "B") (pintype "passive") (tstamp f316e411-636a-470b-8b06-626584c0eb24))
(pad "2" smd rect (at 3.15 1.9 90) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "B") (pintype "passive") (tstamp 1f155aa6-5ab0-480b-8526-8ccf7218e64d))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_TL3342.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x20_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 6afd1621-7ea7-4db8-8cd3-e95b2cf3ae24)
(at 127.0025 65.235)
(descr "Through hole straight pin header, 1x20, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x20 2.54mm single row")
(property "Sheetfile" "stm32f072_template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x20, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/343c8b4a-6029-4072-9653-343ac8ed5e23")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 540807a5-f510-4564-a7c8-b225566bcd8a)
)
(fp_text value "Conn_01x20" (at 0 50.59) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d29d643c-b6f6-4420-93d3-e370e4e805a7)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3345c534-3fb6-43d7-ba3f-7cba8dfc2124))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc1bd183-7818-46ae-92f2-0a4cc790ba1e))
(fp_line (start -1.33 1.27) (end -1.33 49.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd5862d7-084b-497c-bd6c-8f7b08118c2c))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31a3dde5-56b4-4731-a328-e64f38382934))
(fp_line (start -1.33 49.59) (end 1.33 49.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac6760cd-b19d-406a-8b69-42041e0e0549))
(fp_line (start 1.33 1.27) (end 1.33 49.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88c9b023-e21e-4d0f-a28f-735c6cc8672e))
(fp_line (start -1.8 -1.8) (end -1.8 50.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 878fa6ed-0632-4878-96b3-59c24bdcce37))
(fp_line (start -1.8 50.05) (end 1.8 50.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86fd3d5c-58f1-40ac-b0d5-a54ac0d81d24))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 60be352e-f0e3-4196-bead-b90d7f9ef623))
(fp_line (start 1.8 50.05) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d38a8348-a614-4f35-a3d0-fefd29166408))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 653df6fa-9f1b-47ed-8907-73d7c16ab271))
(fp_line (start -1.27 49.53) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b55b03ff-8877-4c0b-9fea-66d4f075488b))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cda80ecc-0cff-4e12-b8d5-07ef2b4fe308))
(fp_line (start 1.27 -1.27) (end 1.27 49.53)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a34dd89-935b-4a25-be70-35dac6ea3f40))
(fp_line (start 1.27 49.53) (end -1.27 49.53)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f302cbcc-9dc2-4800-b8d8-0019755c38e6))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "VBUS") (pinfunction "Pin_1") (pintype "passive") (tstamp 2fb6fb1a-a0d6-455f-8bff-d4a394341b77))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp db383134-5607-4499-afbb-2593f8c744ae))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "NRST") (pinfunction "Pin_3") (pintype "passive") (tstamp 0bc4aa9c-e954-492b-be6f-da530e66846d))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "BOOT0") (pinfunction "Pin_4") (pintype "passive") (tstamp 722ddada-64c0-4f11-9e43-d4d89804d214))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+3V3") (pinfunction "Pin_5") (pintype "passive") (tstamp 42b14e66-cfed-4b6f-8072-8da6f1b370cc))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 45 "/A13") (pinfunction "Pin_6") (pintype "passive") (tstamp 768407a0-6c92-4bf5-9b79-4761dba318c7))
(pad "7" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 46 "/A14") (pinfunction "Pin_7") (pintype "passive") (tstamp 2a1bbd07-fcf1-422b-af97-acb75c4f7364))
(pad "8" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "/A15") (pinfunction "Pin_8") (pintype "passive") (tstamp 203d2938-5c92-4b94-af14-a93add996bf8))
(pad "9" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "/B3") (pinfunction "Pin_9") (pintype "passive") (tstamp 0fca5626-e335-4fb8-adc0-558bfe3784cc))
(pad "10" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "/B4") (pinfunction "Pin_10") (pintype "passive") (tstamp 53a8c86e-1c4e-493e-bdda-14e1286cf029))
(pad "11" thru_hole oval (at 0 25.4) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "/B5") (pinfunction "Pin_11") (pintype "passive") (tstamp 4df38517-3827-4c23-9f88-157da42cac69))
(pad "12" thru_hole oval (at 0 27.94) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "/B6") (pinfunction "Pin_12") (pintype "passive") (tstamp f9bd47b2-aece-4769-8632-ac2a37edc572))
(pad "13" thru_hole oval (at 0 30.48) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "/B7") (pinfunction "Pin_13") (pintype "passive") (tstamp b168dc3a-c9a8-4c90-b9bb-1e3df4dffc37))
(pad "14" thru_hole oval (at 0 33.02) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 40 "/B8") (pinfunction "Pin_14") (pintype "passive") (tstamp 1e238ea4-dc0d-4c03-8bea-7e4183e59854))
(pad "15" thru_hole oval (at 0 35.56) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 41 "/B9") (pinfunction "Pin_15") (pintype "passive") (tstamp 453129b6-b774-4899-b657-930ec5b3a84b))
(pad "16" thru_hole oval (at 0 38.1) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/C13") (pinfunction "Pin_16") (pintype "passive") (tstamp f7333087-7897-4203-a786-c134e6c1ef04))
(pad "17" thru_hole oval (at 0 40.64) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/C14") (pinfunction "Pin_17") (pintype "passive") (tstamp 3140704e-035b-4f00-9506-0e1f99e83a8b))
(pad "18" thru_hole oval (at 0 43.18) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/C15") (pinfunction "Pin_18") (pintype "passive") (tstamp 52de77fe-a0b9-4a22-83a0-330385e2f6ea))
(pad "19" thru_hole oval (at 0 45.72) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/F0") (pinfunction "Pin_19") (pintype "passive") (tstamp 35f23093-4e92-4f42-a45b-9dbe667b33f1))
(pad "20" thru_hole oval (at 0 48.26) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "/F1") (pinfunction "Pin_20") (pintype "passive") (tstamp 6a67e9aa-8d0c-46d3-8e03-bb7e2e192b49))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x20_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tstamp 7fef508a-531e-4dc3-90ad-26183034e2f7)
(at 131.6425 81.65)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "JlcRotOffset" "")
(property "LCSC" "C5446")
(property "Sheetfile" "stm32f072_template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "SMD LDO regulator family")
(property "ki_keywords" "LDO voltage regulator")
(path "/633852a7-5bd6-49fd-9b86-8bf6301a4726")
(attr smd)
(fp_text reference "U3" (at -0.75 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c6c569c-56bb-4754-a6ff-d8783bcb3357)
)
(fp_text value "XC6206PxxxMR-Regulator_Linear" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac31e5c3-a6ed-48cb-819a-ce6e8a6aa9e8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp 4c7ad308-85ab-4370-9a30-389537cc00eb)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp feea26e0-5842-46af-a2d8-8d86ab1fe9d2))
(fp_line (start 0 -1.56) (end 0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37344b39-bc45-4b70-b492-fc0d55276395))
(fp_line (start 0 1.56) (end -0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c40e6bf5-aa59-4c90-b5bf-3f422507ef5f))
(fp_line (start 0 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a4e0a2e2-2a0b-433a-b26c-d03c464dbba0))
(fp_line (start -1.92 -1.7) (end -1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04ec76b9-95f8-460e-86aa-703211c5ef7e))
(fp_line (start -1.92 1.7) (end 1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c5534edc-9644-4111-8c19-a612329b1a61))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2e6f306-802c-42f7-92b8-1344e9364ba9))
(fp_line (start 1.92 1.7) (end 1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d27d8569-c2b1-4a9a-b120-60542e5b89b9))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95fe19c6-b601-4acd-b51d-2ff2c6419c54))
(fp_line (start -0.65 1.45) (end -0.65 -1.125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a42530a7-07b2-485f-9477-583c4ccce44b))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d49762b-ea5f-4dea-8bb2-bea4339ae638))
(fp_line (start 0.65 -1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f4f4995-6d33-48c6-9c83-6938396f1cb2))
(fp_line (start 0.65 1.45) (end -0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bd726f6-29b1-4604-b36d-2c9528041197))
(pad "1" smd roundrect (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b110acbe-54de-4d0c-bf13-37ef113bbae6))
(pad "2" smd roundrect (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 52164fda-be9b-4659-9707-94b106b1dd93))
(pad "3" smd roundrect (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp 2ada7c9d-a39e-497a-9d3b-286dce4cd624))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.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")
(tstamp 8a9267c3-cfdd-435b-9334-7949b3773910)
(at 131.8925 97.65 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 "JlcRotOffset" "")
(property "LCSC" "C307331")
(property "Sheetfile" "stm32f072_template.kicad_sch")