-
Notifications
You must be signed in to change notification settings - Fork 0
/
stm32f042_board.kicad_pcb
10293 lines (10258 loc) · 435 KB
/
stm32f042_board.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 "USLetter")
(title_block
(date "2021-02-08")
)
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" power)
(2 "In2.Cu" power)
(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)
)
(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 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VBUS")
(net 3 "+3V3")
(net 4 "NRST")
(net 5 "USB_VBUS")
(net 6 "Net-(D1-Pad2)")
(net 7 "Net-(D2-Pad2)")
(net 8 "PA4")
(net 9 "PA3")
(net 10 "PA2")
(net 11 "PA1")
(net 12 "PA0")
(net 13 "PF1")
(net 14 "PF0")
(net 15 "BOOT0")
(net 16 "PA5")
(net 17 "PA6")
(net 18 "PA7")
(net 19 "USB-")
(net 20 "USB+")
(net 21 "USB_D-")
(net 22 "USB_D+")
(net 23 "SWDIO")
(net 24 "SWCLK")
(net 25 "unconnected-(J5-Pad6)")
(net 26 "unconnected-(J5-Pad7)")
(net 27 "Net-(JP1-Pad2)")
(net 28 "LED_USER")
(net 29 "unconnected-(J5-Pad8)")
(net 30 "unconnected-(U2-Pad4)")
(net 31 "unconnected-(J3-PadA8)")
(net 32 "unconnected-(J3-PadB8)")
(net 33 "Net-(J3-PadA5)")
(net 34 "Net-(J3-PadB5)")
(net 35 "Net-(J3-PadS1)")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060221e14)
(at 161.525 67.35 -90)
(descr "Capacitor SMD 0603 (1608 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" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006032179f")
(attr smd)
(fp_text reference "C4" (at 0 0 180) (layer "F.SilkS")
(effects (font (size 0.381 0.381) (thickness 0.08)))
(tstamp c26b67d4-2b40-41c4-98c8-b12eabdafab1)
)
(fp_text value "0.1u" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd0cab2e-3b9f-4bdd-8e35-c0cbaf24c34a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 44cb79b8-bef2-4be3-ba90-ac5b69253c0b)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp a753c682-f22e-45c4-895e-b3c49ffdc122))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp c4e8e7dc-391d-44ee-b612-a88b5e0eef3a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4941f56f-a680-458c-bb15-a84c53af6dc2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5c9a3af5-6d99-416f-bf60-18b4904e1bf0))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a8ed6f30-7d25-44ce-a35e-5c85efd7a387))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e8140c87-9e3a-475c-b287-098c927cd27d))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 0a444391-0587-4db4-9ca2-414476693f45))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4c853ca2-63c2-4b01-9e50-41f8fe22115e))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 639e6106-570c-4bac-abfe-d3e392789e8f))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 749f48a8-2f3c-4c4c-93d6-ce0f80b2519a))
(pad "1" smd roundrect locked (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pintype "passive") (tstamp 88e755b0-1c41-4a1b-99ac-da3cd45e9de2))
(pad "2" smd roundrect locked (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp e407b363-4545-4320-953f-8749e9d6895f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.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 00000000-0000-0000-0000-000060221e7a)
(at 174.25 73.85 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" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000600aa840")
(attr smd)
(fp_text reference "C10" (at 0 0) (layer "F.SilkS")
(effects (font (size 0.381 0.381) (thickness 0.08)))
(tstamp 373989dc-29e1-4019-a059-5007e9d43d7d)
)
(fp_text value "0.1u" (at 0 1.68 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75e8729a-3ff3-4e1e-8151-671103950fce)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 892db121-ee8c-4490-aa68-792d5b4c1822)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 93dda5e7-5182-47b4-b631-b522f5817bfb))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp d9dd9013-a0e2-4bce-a319-bf8de4b3fb6e))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 64afa768-e35e-4ad7-a72c-2d66814c21dc))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 7402405b-bef7-4413-9745-2a19dd327d58))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 8fdbb081-cb86-429d-af65-7652f15afbc0))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp db11318a-dbc5-4e1e-877d-3293cd684285))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 3ad284dc-bad1-4635-a9f2-067f74d874ac))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 5f0a6db3-63c7-4141-9bcf-7695ce041063))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 7e93df0b-f6fc-49d0-b380-84521c86970a))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp bb9aed73-812d-4660-9134-1d9bcb20ebd3))
(pad "1" smd roundrect locked (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VBUS") (pintype "passive") (tstamp e45faa88-bdc8-438f-a131-fa8ff0ed818d))
(pad "2" smd roundrect locked (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp a1c0b67e-5f1c-4696-964a-0a62d89d7bf0))
(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 "Inductor_SMD:L_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEF0) (tstamp 00000000-0000-0000-0000-000060221ed9)
(at 176.1 73.8 90)
(descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "Sheetfile" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060145bda")
(attr smd)
(fp_text reference "FB1" (at 0 0 90) (layer "F.SilkS")
(effects (font (size 0.381 0.381) (thickness 0.08)))
(tstamp c47388b4-bb40-4e45-a421-c63990c6d552)
)
(fp_text value "BK0603HS330-T" (at 0 1.55 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b5cbb4c-1ad3-4011-8e4b-b6d8da4fccd2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 920d8ff9-ea04-45d4-a56e-7ba33d3f2d63)
)
(fp_line (start -0.399622 -0.56) (end 0.399622 -0.56) (layer "F.SilkS") (width 0.12) (tstamp 73528b8c-594e-4996-ab3c-b22ace392cfb))
(fp_line (start -0.399622 0.56) (end 0.399622 0.56) (layer "F.SilkS") (width 0.12) (tstamp cb523607-bab8-4bd0-bcb4-5a31741beb47))
(fp_line (start 1.75 -0.85) (end 1.75 0.85) (layer "F.CrtYd") (width 0.05) (tstamp 4c7ad34b-6633-473e-832c-6d324cd33a57))
(fp_line (start -1.75 -0.85) (end 1.75 -0.85) (layer "F.CrtYd") (width 0.05) (tstamp 90fa0b71-dbc9-486c-a1f2-dd2130ad350a))
(fp_line (start -1.75 0.85) (end -1.75 -0.85) (layer "F.CrtYd") (width 0.05) (tstamp d0b061f3-80c3-4ee2-b16f-27418a8c16c4))
(fp_line (start 1.75 0.85) (end -1.75 0.85) (layer "F.CrtYd") (width 0.05) (tstamp e2138936-ae3b-4507-a9d0-647ad31aad57))
(fp_line (start -1 0.45) (end -1 -0.45) (layer "F.Fab") (width 0.1) (tstamp 609b5dc8-c054-4ce1-9e7b-9f30123331e7))
(fp_line (start -1 -0.45) (end 1 -0.45) (layer "F.Fab") (width 0.1) (tstamp 8199a097-23b3-4079-a046-f3f1d5dd2c64))
(fp_line (start 1 0.45) (end -1 0.45) (layer "F.Fab") (width 0.1) (tstamp a83cab15-1ff6-4a50-9f24-b423c3b9a86d))
(fp_line (start 1 -0.45) (end 1 0.45) (layer "F.Fab") (width 0.1) (tstamp a918e530-af62-4e84-95b5-2678c7cb5fc5))
(pad "1" smd roundrect locked (at -1.0625 0 90) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VBUS") (pintype "passive") (tstamp 33b3ec42-17d7-4496-bdb7-485991c7c149))
(pad "2" smd roundrect locked (at 1.0625 0 90) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "USB_VBUS") (pintype "passive") (tstamp 1d5877fd-96b7-4c98-8ffe-df0e23a9d488))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x12_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A41D) (tstamp 00000000-0000-0000-0000-000060221f39)
(at 143.002 74.168 90)
(descr "Through hole straight socket strip, 1x12, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x12 2.54mm single row")
(property "Sheetfile" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060080583")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.77 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dac54102-2c9a-4996-b9f2-524b10922ee9)
)
(fp_text value "Conn_01x12_Female" (at 0 30.71 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 818af9a4-a85e-4644-8fc7-38aa6ee2408a)
)
(fp_text user "${REFERENCE}" (at 0 13.97) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 680b0dae-9275-4f6f-988a-5a792c87bdf1)
)
(fp_line (start -1.33 1.27) (end -1.33 29.27) (layer "F.SilkS") (width 0.12) (tstamp 428e1319-3273-470f-a97b-a089feedbb4c))
(fp_line (start 1.33 1.27) (end 1.33 29.27) (layer "F.SilkS") (width 0.12) (tstamp 4f98af38-915d-4a73-b715-2692cc91a797))
(fp_line (start -1.33 29.27) (end 1.33 29.27) (layer "F.SilkS") (width 0.12) (tstamp 81718970-92a3-43d7-bdac-980815d1a1e9))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c98e78f7-a3b1-44b0-82d4-cb7a610aabdd))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp f35aef17-51f1-4472-b3f3-502eadf9349d))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp fa869273-2e40-4878-af4e-8c75fc4c02a9))
(fp_line (start 1.75 29.7) (end -1.8 29.7) (layer "F.CrtYd") (width 0.05) (tstamp 00e4f24f-7204-4344-9ec0-8365016c99af))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 11b30ac9-81c5-4a76-b034-6ae6959a888a))
(fp_line (start -1.8 29.7) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6f020040-103d-4f6b-a173-dc00e364e96b))
(fp_line (start 1.75 -1.8) (end 1.75 29.7) (layer "F.CrtYd") (width 0.05) (tstamp d8747085-337d-4aa2-9ecd-e9cf66de6621))
(fp_line (start -1.27 29.21) (end -1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 07ceaff5-cd6c-4a3e-a7c0-ffd7bf334230))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 097d4be5-0c83-4e01-ae84-f7fcddd815f5))
(fp_line (start 1.27 -0.635) (end 1.27 29.21) (layer "F.Fab") (width 0.1) (tstamp 1ea3cbe7-bee2-4771-8b1a-806e649ec9b1))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 31eb4504-1e79-4928-b74c-befe8fabccf0))
(fp_line (start 1.27 29.21) (end -1.27 29.21) (layer "F.Fab") (width 0.1) (tstamp 4d95b134-2d9b-45ff-9c77-363b874743bd))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "VBUS") (pinfunction "Pin_1") (pintype "passive") (tstamp 6c7a95b4-d61e-46ed-b6ab-8b0fb578fb45))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp be801ec8-586f-466c-a4c7-83cba533cf58))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "SWCLK") (pinfunction "Pin_3") (pintype "passive") (tstamp d6f5a377-4a20-45f7-81c9-412f81a5b2d6))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "SWDIO") (pinfunction "Pin_4") (pintype "passive") (tstamp ff772e4c-07db-4286-9221-3ae7026911bb))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "USB+") (pinfunction "Pin_5") (pintype "passive") (tstamp 1dc60a43-44ba-449d-8f3f-95478b725cc5))
(pad "6" thru_hole oval locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "USB-") (pinfunction "Pin_6") (pintype "passive") (tstamp c8ef9d6c-810e-40e4-9761-aeed70d66298))
(pad "7" thru_hole oval locked (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_7") (pintype "passive") (tstamp 9d9a4501-18bb-41f9-93ee-3d88d4e74a85))
(pad "8" thru_hole oval locked (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 9589cf7b-4694-426e-a9bb-f562c76e60cb))
(pad "9" thru_hole oval locked (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "LED_USER") (pinfunction "Pin_9") (pintype "passive") (tstamp fc616b0a-4c3e-43b8-9620-57c3de5d90dd))
(pad "10" thru_hole oval locked (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "PA7") (pinfunction "Pin_10") (pintype "passive") (tstamp 078dd971-7ad8-45fc-bc77-64949a306491))
(pad "11" thru_hole oval locked (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "PA6") (pinfunction "Pin_11") (pintype "passive") (tstamp a26560b1-f78a-470b-8c5b-0686a6f6acef))
(pad "12" thru_hole oval locked (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "PA5") (pinfunction "Pin_12") (pintype "passive") (tstamp 782dde25-ab80-44ab-89fa-a527d83e29bd))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x12_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal" (layer "F.Cu")
(tedit 0) (tstamp 00000000-0000-0000-0000-000060221f62)
(at 179.05 66.3 90)
(descr "USB 2.0 Type C Receptacle, GCT, 16P, top mounted, horizontal, 5A: https://gct.co/files/drawings/usb4105.pdf")
(tags "USB C Type-C Receptacle SMD USB 2.0 16P 16C USB4105-15-A USB4105-15-A-060 USB4105-15-A-120 USB4105-GF-A USB4105-GF-A-060 USB4105-GF-A-120")
(property "Sheetfile" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/61a08fcb-1217-477d-9101-11a428258df8")
(attr smd)
(fp_text reference "J3" (at 0 -5.5 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1eafdd7-c045-4b6a-8b02-2d3bfc85a059)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 0 5 90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48c21d44-3e1b-4cad-b998-1c13cc1c49aa)
)
(fp_text user "PCB Edge" (at 0 3.1 90 unlocked) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp ce60c8a2-e1e6-4f77-bc51-e90741739381)
)
(fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88aa990b-da12-4774-a970-e2c5b5cf34d2)
)
(fp_line (start -4.67 0) (end -4.67 -1.8) (layer "F.SilkS") (width 0.12) (tstamp 1418d6e6-0ace-4f65-8be7-40a1f8907550))
(fp_line (start -4.67 2.1) (end -4.67 3.25) (layer "F.SilkS") (width 0.12) (tstamp 323f7dd0-584d-4a22-9e5e-b750fb2cca85))
(fp_line (start 4.67 2.1) (end 4.67 3.25) (layer "F.SilkS") (width 0.12) (tstamp d4457790-f3ea-439a-a83a-7e974aaf4caf))
(fp_line (start 4.67 0) (end 4.67 -1.8) (layer "F.SilkS") (width 0.12) (tstamp e321669c-3423-431b-b305-f83d94928dc9))
(fp_line (start 5 3.675) (end -5 3.675) (layer "Dwgs.User") (width 0.1) (tstamp 175d0dda-bcfa-42b5-bb24-0555b7ef0f58))
(fp_rect (start -5.32 -4.76) (end 5.32 4.18) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 9dd9afaa-b311-4dbd-9e47-8479bbe67343))
(fp_rect (start -4.47 -3.675) (end 4.47 3.675) (layer "F.Fab") (width 0.1) (fill none) (tstamp e8d4037e-f6d1-4de2-adf8-23b77265335c))
(pad "" np_thru_hole circle (at -2.89 -2.605 90) (size 0.65 0.65) (drill 0.65) (layers F&B.Cu *.Mask) (tstamp 7eb5fa31-38ff-4e7e-b4f8-5d456c1c5034))
(pad "" np_thru_hole circle (at 2.89 -2.605 90) (size 0.65 0.65) (drill 0.65) (layers F&B.Cu *.Mask) (tstamp b16ee7cf-7760-42e3-b8c4-e63569ff7ce1))
(pad "A1" smd rect (at -3.2 -3.68 90) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp c5ebf8ec-0380-4d1d-93bd-68aed2f8e9e9))
(pad "A4" smd rect (at -2.4 -3.68 90) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "USB_VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 2018fcd7-b8e5-4e1f-8ec2-e6129c40e0aa))
(pad "A5" smd rect (at -1.25 -3.68 90) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "Net-(J3-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp ac627695-e4d9-4e7d-a331-2cc3e4895155))
(pad "A6" smd rect (at -0.25 -3.68 90) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "USB_D+") (pinfunction "D+") (pintype "bidirectional") (tstamp d01b0732-42bd-4430-9816-34e5b68ba42c))
(pad "A7" smd rect (at 0.25 -3.68 90) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "USB_D-") (pinfunction "D-") (pintype "bidirectional") (tstamp acf42490-35ed-437b-a40b-a4e6ee3f20d4))
(pad "A8" smd rect (at 1.25 -3.68 90) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "unconnected-(J3-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp d5a7e4c9-c394-4f30-822c-c4f1af4ac6db))
(pad "A9" smd rect (at 2.4 -3.68 90) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "USB_VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp a7491fbb-440a-40a8-9402-5c4669d48bd9))
(pad "A12" smd rect (at 3.2 -3.68 90) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 62244231-a5ff-46e6-8f18-a7badf6dec43))
(pad "B1" smd rect (at 3.2 -3.68 90) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 791cd625-a423-44a2-b813-fa61478f8dd9))
(pad "B4" smd rect (at 2.4 -3.68 90) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "USB_VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp ddab8b47-f24e-4849-ac3f-df2f09e6aadd))
(pad "B5" smd rect (at 1.75 -3.68 90) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "Net-(J3-PadB5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 9333b0cb-8fed-451e-ab82-9c72d5b0c92d))
(pad "B6" smd rect (at 0.75 -3.68 90) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "USB_D+") (pinfunction "D+") (pintype "bidirectional") (tstamp 23ec1bfc-020f-47d1-bc36-94ea0a02aaca))
(pad "B7" smd rect (at -0.75 -3.68 90) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "USB_D-") (pinfunction "D-") (pintype "bidirectional") (tstamp d444caba-78a8-4e2c-9d52-c75b55af4ab4))
(pad "B8" smd rect (at -1.75 -3.68 90) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "unconnected-(J3-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp b95aecae-07e0-4daf-aa97-6fb9465de0a3))
(pad "B9" smd rect (at -2.4 -3.68 90) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "USB_VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 574731b5-ff68-42d7-af29-e45a2996e139))
(pad "B12" smd rect (at -3.2 -3.68 90) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 2d5436ec-49b1-484c-9135-a43177144c9d))
(pad "S1" thru_hole oval (at 4.32 -3.105 90) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 35 "Net-(J3-PadS1)") (pinfunction "SHIELD") (pintype "passive") (tstamp 2a6e8002-0a48-468b-a171-58e7b13b44e7))
(pad "S1" thru_hole oval (at -4.32 1.075 90) (size 1 1.8) (drill oval 0.6 1.4) (layers *.Cu *.Mask)
(net 35 "Net-(J3-PadS1)") (pinfunction "SHIELD") (pintype "passive") (tstamp 70766ff6-f42a-4622-96d8-c2ead61dc652))
(pad "S1" thru_hole oval (at 4.32 1.075 90) (size 1 1.8) (drill oval 0.6 1.4) (layers *.Cu *.Mask)
(net 35 "Net-(J3-PadS1)") (pinfunction "SHIELD") (pintype "passive") (tstamp 79b73ae6-0623-4498-859b-d11d96b7c038))
(pad "S1" thru_hole oval (at -4.32 -3.105 90) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 35 "Net-(J3-PadS1)") (pinfunction "SHIELD") (pintype "passive") (tstamp a621d227-a41b-4482-8b68-05a529472025))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_1.27mm:PinHeader_2x05_P1.27mm_Vertical" (layer "F.Cu")
(tedit 59FED6E3) (tstamp 00000000-0000-0000-0000-000060221fb1)
(at 142.748 64.008)
(descr "Through hole straight pin header, 2x05, 1.27mm pitch, double rows")
(tags "Through hole pin header THT 2x05 1.27mm double row")
(property "Sheetfile" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000602c3736")
(attr through_hole)
(fp_text reference "J5" (at 0.635 -1.695) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6069adc4-3730-4e88-8ad1-2ed6fa360118)
)
(fp_text value "JTAG/SWD" (at 0.635 6.775) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5deecd7c-a55e-483b-8a84-809ba7943992)
)
(fp_text user "${REFERENCE}" (at 0.635 2.54 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32424106-62d2-44d7-a50c-f58da0590a07)
)
(fp_line (start -1.13 0.76) (end -1.13 5.775) (layer "F.SilkS") (width 0.12) (tstamp 2cc21508-a89e-40b1-a448-85e8bcaf586f))
(fp_line (start 0.30753 5.775) (end 0.96247 5.775) (layer "F.SilkS") (width 0.12) (tstamp 45425f62-a2fa-4e74-bd1a-6f400dd07c30))
(fp_line (start 0.563471 0.76) (end 0.706529 0.76) (layer "F.SilkS") (width 0.12) (tstamp 542d7b08-1f7a-4a4c-b770-f28fddd8f9b3))
(fp_line (start -1.13 5.775) (end -0.30753 5.775) (layer "F.SilkS") (width 0.12) (tstamp 54debdfd-b9ff-4c88-a39d-0b48a1f05b35))
(fp_line (start 1.57753 5.775) (end 2.4 5.775) (layer "F.SilkS") (width 0.12) (tstamp 5d3f19c6-048b-4c03-810b-67c2f4cdb759))
(fp_line (start -1.13 -0.76) (end 0 -0.76) (layer "F.SilkS") (width 0.12) (tstamp 62e417ea-bae2-48ca-842c-2e6d9c754dee))
(fp_line (start -1.13 0) (end -1.13 -0.76) (layer "F.SilkS") (width 0.12) (tstamp 873c5ea2-0393-4691-849e-f464ff453ceb))
(fp_line (start 1.57753 -0.695) (end 2.4 -0.695) (layer "F.SilkS") (width 0.12) (tstamp 91068eaf-8388-43b0-be86-76ec68dde896))
(fp_line (start 0.76 0.706529) (end 0.76 0.563471) (layer "F.SilkS") (width 0.12) (tstamp 96f34c16-2f84-4e30-98d9-ed5f13a4eab5))
(fp_line (start 2.4 -0.695) (end 2.4 5.775) (layer "F.SilkS") (width 0.12) (tstamp ce9a0dfd-3a54-4304-ac6a-e49d3c211b44))
(fp_line (start 0.76 -0.563471) (end 0.76 -0.695) (layer "F.SilkS") (width 0.12) (tstamp d10d75a7-fe81-4bdf-941b-482c0b8059ac))
(fp_line (start 0.76 -0.695) (end 0.96247 -0.695) (layer "F.SilkS") (width 0.12) (tstamp e4fd5b8f-05bb-4b38-b4ee-1541472445f1))
(fp_line (start -1.13 0.76) (end -0.563471 0.76) (layer "F.SilkS") (width 0.12) (tstamp f44f4358-194d-45ff-9e51-4a3294938197))
(fp_line (start 2.85 -1.15) (end -1.6 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 11b8e579-d475-429d-a68d-ec8183464fa4))
(fp_line (start 2.85 6.25) (end 2.85 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 13a2bc3d-82bc-4e57-a073-48e5d3768b9d))
(fp_line (start -1.6 6.25) (end 2.85 6.25) (layer "F.CrtYd") (width 0.05) (tstamp 7fdb9790-2d40-4eee-9821-2fc196203a4b))
(fp_line (start -1.6 -1.15) (end -1.6 6.25) (layer "F.CrtYd") (width 0.05) (tstamp d13918b0-4ee8-4fe9-84a5-06ffe412e3de))
(fp_line (start -0.2175 -0.635) (end 2.34 -0.635) (layer "F.Fab") (width 0.1) (tstamp 06fb4757-c297-4042-8c96-a27be432e910))
(fp_line (start 2.34 5.715) (end -1.07 5.715) (layer "F.Fab") (width 0.1) (tstamp 485d4005-a477-41fe-9fab-e219346f7435))
(fp_line (start 2.34 -0.635) (end 2.34 5.715) (layer "F.Fab") (width 0.1) (tstamp ba87cfab-1285-4d0f-9469-2f283112f685))
(fp_line (start -1.07 0.2175) (end -0.2175 -0.635) (layer "F.Fab") (width 0.1) (tstamp efd481d4-d963-4f1d-9071-6c517556cc82))
(fp_line (start -1.07 5.715) (end -1.07 0.2175) (layer "F.Fab") (width 0.1) (tstamp fc512b35-a556-40f4-89e7-83600feaa542))
(pad "1" thru_hole rect locked (at 0 0) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp 137cb44c-91ad-4e19-8754-2c789c44905d))
(pad "2" thru_hole oval locked (at 1.27 0) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 23 "SWDIO") (pinfunction "Pin_2") (pintype "passive") (tstamp d07330cc-8a32-443e-8450-77cf16cbac06))
(pad "3" thru_hole oval locked (at 0 1.27) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 1d80e5d8-49e6-4f3e-9790-95ffaa62f829))
(pad "4" thru_hole oval locked (at 1.27 1.27) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 24 "SWCLK") (pinfunction "Pin_4") (pintype "passive") (tstamp 10040906-ffd2-4724-93dd-7cce45d5f865))
(pad "5" thru_hole oval locked (at 0 2.54) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 1a726183-1999-4de6-927f-673859c26a34))
(pad "6" thru_hole oval locked (at 1.27 2.54) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 25 "unconnected-(J5-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp 7e368a91-715b-4668-aa22-1dee51e61b6d))
(pad "7" thru_hole oval locked (at 0 3.81) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 26 "unconnected-(J5-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp ba78f9e2-8bc4-40f2-bed9-e5474bb81ce1))
(pad "8" thru_hole oval locked (at 1.27 3.81) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 29 "unconnected-(J5-Pad8)") (pinfunction "Pin_8") (pintype "passive+no_connect") (tstamp 8688ab4e-53aa-46b0-8a43-e065b1f40f70))
(pad "9" thru_hole oval locked (at 0 5.08) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 5a242a46-46d6-420e-8ed3-fe82e86e3c47))
(pad "10" thru_hole oval locked (at 1.27 5.08) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 4 "NRST") (pinfunction "Pin_10") (pintype "passive") (tstamp 8575d30a-41f8-4caf-89ae-ead6f575b931))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_2x05_P1.27mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060221fe7)
(at 151.638 62.992 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006008f156")
(attr smd)
(fp_text reference "R3" (at 0 0) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 9815e776-5e5b-4ac5-9a64-e3558cfd8899)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6b657fc-c05c-4c64-9dc6-f5f6acc43c46)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a6c44657-78b8-42eb-a75e-1c3fb98dde5b)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 49ea752e-8826-492e-a111-928a0e7ad722))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 5cf6695b-539d-455c-9a06-f94e9cc4cb24))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 21981bb4-900b-49b7-934f-8a2bc28339d7))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 54654f84-e411-4add-903f-92b70547f571))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b359b09b-3a2f-482a-8177-3cf8f772a841))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp bbede997-d52c-49af-b26a-5717262add46))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 48305bf6-7549-49d7-a278-d2c793cf28b1))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5f601d9f-4014-4053-803e-3d80feaf9fc7))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7c5d4ce1-f814-495d-adaf-a05ed9aeded5))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp f120fce4-a782-4121-b945-bf20786b9ed9))
(pad "1" smd roundrect locked (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(JP1-Pad2)") (pintype "passive") (tstamp 8044b824-6806-4111-a2f7-c6147fd156c4))
(pad "2" smd roundrect locked (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "BOOT0") (pintype "passive") (tstamp 30b2c768-16eb-4c5a-b1b1-6eb6371d54db))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_B3U-1000P-B" (layer "F.Cu")
(tedit 5A02FC95) (tstamp 00000000-0000-0000-0000-000060222020)
(at 148.082 63.246)
(descr "Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, with Boss")
(tags "Tactile Switch")
(property "Sheetfile" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006003ea33")
(attr smd)
(fp_text reference "Reset1" (at 0 -2.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0733f63d-baf4-44e4-a393-edf8d1956bcf)
)
(fp_text value "SW_Push" (at 0 2.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 268d1e49-f231-487e-9a2a-2bc4a3fb66e9)
)
(fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72a54c8a-5759-40f4-8050-e786f1bf678e)
)
(fp_line (start -1.65 -1.4) (end 1.65 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 1827b1ab-5532-45ab-8e4b-5a1621c64e70))
(fp_line (start -1.65 1.1) (end -1.65 1.4) (layer "F.SilkS") (width 0.12) (tstamp 5f6f0c6e-8b46-4e42-9e5a-2e50d678f741))
(fp_line (start 1.65 -1.4) (end 1.65 -1.1) (layer "F.SilkS") (width 0.12) (tstamp 685d21e9-eab5-4e89-b80f-b36e0033c86b))
(fp_line (start -1.65 1.4) (end 1.65 1.4) (layer "F.SilkS") (width 0.12) (tstamp 7d63f97b-9f9d-4a0f-8109-f37e2c2416b6))
(fp_line (start 1.65 1.4) (end 1.65 1.1) (layer "F.SilkS") (width 0.12) (tstamp acdcecda-951d-41f2-838e-eb6dad93e8b5))
(fp_line (start -1.65 -1.1) (end -1.65 -1.4) (layer "F.SilkS") (width 0.12) (tstamp e57d29fc-d727-4630-a91b-e4e00b2721a3))
(fp_line (start -2.4 -1.65) (end -2.4 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 3675dd2b-bb22-46d7-b8eb-14f66f0737a8))
(fp_line (start 2.4 -1.65) (end -2.4 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 4c975aa5-c964-4221-b95b-7b5c859d60d1))
(fp_line (start -2.4 1.65) (end 2.4 1.65) (layer "F.CrtYd") (width 0.05) (tstamp bcf81526-4a72-45ae-b6e2-7c795b00d23c))
(fp_line (start 2.4 1.65) (end 2.4 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp ec8c60ef-c7e2-40dc-8fb2-c599ff3c5bac))
(fp_line (start -1.5 1.25) (end -1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 076e3428-eac3-4e9f-96da-2aad8f52a2d4))
(fp_line (start 1.5 1.25) (end -1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp 6ff6e0b4-3e9b-4e72-a86f-58673a204412))
(fp_line (start -1.5 -1.25) (end 1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 77f5d6d5-a124-43c1-95e7-9db0739d879f))
(fp_line (start 1.5 -1.25) (end 1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp c2a66550-2173-47d3-9691-e1bd9fa435a9))
(fp_circle (center 0 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 690a5d15-ae9e-4aaa-8f1d-ee6066d54908))
(pad "" np_thru_hole circle locked (at 0 0) (size 0.8 0.8) (drill 0.8) (layers *.Cu *.Mask) (tstamp 5c263852-5e97-4af1-bcf4-7ed63ec13c42))
(pad "1" smd rect locked (at -1.7 0) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "NRST") (pinfunction "1") (pintype "passive") (tstamp a5c0763a-0238-41a3-8b6c-a4da3ba99dd6))
(pad "2" smd rect locked (at 1.7 0) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp 567090cb-e3b3-4c4b-b3b4-8f7035348d86))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_B3U-1000P-B.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm" (layer "F.Cu")
(tedit 5E476F32) (tstamp 00000000-0000-0000-0000-000060222046)
(at 156.641001 66.263001)
(descr "TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "TSSOP SO")
(property "Sheetfile" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060049814")
(attr smd)
(fp_text reference "U1" (at 0.076999 -0.223001) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 3b8bd830-d850-4b22-890c-24f652a23bf8)
)
(fp_text value "STM32F042F6Px" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f917ce4-aa75-4963-b44e-af32181d67ec)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ead7405-461e-4a4d-a703-cab89dbf2f85)
)
(fp_line (start 0 3.385) (end 2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp 5d867c40-acb7-40c0-9eb8-ad821fd69148))
(fp_line (start 0 -3.385) (end -3.6 -3.385) (layer "F.SilkS") (width 0.12) (tstamp ad63a658-c428-4827-bb1b-c4c2548d9005))
(fp_line (start 0 -3.385) (end 2.2 -3.385) (layer "F.SilkS") (width 0.12) (tstamp cdc37129-70bd-44e6-88dc-fea547d60efd))
(fp_line (start 0 3.385) (end -2.2 3.385) (layer "F.SilkS") (width 0.12) (tstamp ff7378f7-0f2b-455a-ac98-1edb2309b62f))
(fp_line (start -3.85 3.5) (end 3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp 00958958-a35a-415c-b6a6-0c21e66a244e))
(fp_line (start 3.85 3.5) (end 3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp 8197f6b2-cc08-4045-85e7-154ea46891da))
(fp_line (start 3.85 -3.5) (end -3.85 -3.5) (layer "F.CrtYd") (width 0.05) (tstamp cfd6261b-6b3a-484b-8f37-4228532c8b4a))
(fp_line (start -3.85 -3.5) (end -3.85 3.5) (layer "F.CrtYd") (width 0.05) (tstamp e4d2db5d-3bd8-4b8a-9a57-35edea5e2041))
(fp_line (start -1.2 -3.25) (end 2.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp 2f3ac8ce-a276-4659-bc77-beddc7398216))
(fp_line (start -2.2 -2.25) (end -1.2 -3.25) (layer "F.Fab") (width 0.1) (tstamp 323d1a94-5033-4735-ae8a-925601f7982d))
(fp_line (start 2.2 3.25) (end -2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp 3318a92b-199c-4734-8e49-04059d1dfb78))
(fp_line (start -2.2 3.25) (end -2.2 -2.25) (layer "F.Fab") (width 0.1) (tstamp 9717937f-70b5-4f76-be90-f29e164db728))
(fp_line (start 2.2 -3.25) (end 2.2 3.25) (layer "F.Fab") (width 0.1) (tstamp f43dd813-9368-4c71-9011-6dd98082f102))
(pad "1" smd roundrect locked (at -2.8625 -2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "BOOT0") (pinfunction "PB8") (pintype "bidirectional") (tstamp e3bde4a1-b6a1-43b7-b80e-2181e440a842))
(pad "2" smd roundrect locked (at -2.8625 -2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "PF0") (pinfunction "PF0") (pintype "input") (tstamp 070eb84f-3287-47a2-b0e5-4b915dcf4d04))
(pad "3" smd roundrect locked (at -2.8625 -1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "PF1") (pinfunction "PF1") (pintype "input") (tstamp 360f8542-345a-4f1f-b92a-9a98fa0932a4))
(pad "4" smd roundrect locked (at -2.8625 -0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "NRST") (pinfunction "NRST") (pintype "input") (tstamp 95ae105b-b59e-406f-b821-941c18725bad))
(pad "5" smd roundrect locked (at -2.8625 -0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "VDDA") (pintype "power_in") (tstamp 63b2c808-bb36-49d8-8249-ecd8502a52ce))
(pad "6" smd roundrect locked (at -2.8625 0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "PA0") (pinfunction "PA0") (pintype "bidirectional") (tstamp 220029ad-b0f0-4a35-bb5a-2096ac762059))
(pad "7" smd roundrect locked (at -2.8625 0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "PA1") (pinfunction "PA1") (pintype "bidirectional") (tstamp b2e28ea5-9563-4660-b6db-28e6b29fdee2))
(pad "8" smd roundrect locked (at -2.8625 1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "PA2") (pinfunction "PA2") (pintype "bidirectional") (tstamp 0e93b36b-6b41-4085-a01a-a28f2e2edade))
(pad "9" smd roundrect locked (at -2.8625 2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "PA3") (pinfunction "PA3") (pintype "bidirectional") (tstamp c68314f0-1389-413d-939f-2bd5e679ef6a))
(pad "10" smd roundrect locked (at -2.8625 2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "PA4") (pinfunction "PA4") (pintype "bidirectional") (tstamp 3667ed7b-1585-44fb-bd24-0c63983bd2a0))
(pad "11" smd roundrect locked (at 2.8625 2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "PA5") (pinfunction "PA5") (pintype "bidirectional") (tstamp 678e1935-24b8-4c84-b8d1-c9bbedd934f7))
(pad "12" smd roundrect locked (at 2.8625 2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "PA6") (pinfunction "PA6") (pintype "bidirectional") (tstamp a2779892-7015-45e4-a0c7-d7654fd6f620))
(pad "13" smd roundrect locked (at 2.8625 1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "PA7") (pinfunction "PA7") (pintype "bidirectional") (tstamp a44d1f8b-5934-4acd-939c-0516ba6ed65f))
(pad "14" smd roundrect locked (at 2.8625 0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "LED_USER") (pinfunction "PB1") (pintype "bidirectional") (tstamp 68d68f6e-2483-40dc-bfac-fc65c4301deb))
(pad "15" smd roundrect locked (at 2.8625 0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 0e6c3169-53a9-49e7-80d8-a10792d3db8c))
(pad "16" smd roundrect locked (at 2.8625 -0.325) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 72868262-d8ef-4f3b-9fbf-6cab68b645f1))
(pad "17" smd roundrect locked (at 2.8625 -0.975) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "USB-") (pinfunction "PA9/PA11") (pintype "bidirectional") (tstamp 233b96f1-1e0e-4ad4-be06-4097068e9095))
(pad "18" smd roundrect locked (at 2.8625 -1.625) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "USB+") (pinfunction "PA10/PA12") (pintype "bidirectional") (tstamp 967a1dba-1c7d-4add-98bf-f3abe224f041))
(pad "19" smd roundrect locked (at 2.8625 -2.275) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "SWDIO") (pinfunction "PA13") (pintype "bidirectional") (tstamp bdf2b498-826a-4112-b6a6-07f5599d4426))
(pad "20" smd roundrect locked (at 2.8625 -2.925) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "SWCLK") (pinfunction "PA14") (pintype "bidirectional") (tstamp 8cbc9497-d165-40e3-9913-78fb0a120677))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/TSSOP-20_4.4x6.5mm_P0.65mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-6" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000060222071)
(at 172.15 65.8 180)
(descr "6-pin SOT-23 package")
(tags "SOT-23-6")
(property "Sheetfile" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006011f5a9")
(attr smd)
(fp_text reference "U3" (at 0 1.016) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp cb41b3f1-5430-4518-a428-b27ad5406845)
)
(fp_text value "USBLC6-2SC6" (at 0 2.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 092b9287-e149-413a-9803-265ad5faa2cb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp db33850f-0f68-4d00-a6da-1aede8ee6f30)
)
(fp_line (start -0.9 1.61) (end 0.9 1.61) (layer "F.SilkS") (width 0.12) (tstamp 216a38ec-3d35-4b39-9d23-7963dce4d3fb))
(fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer "F.SilkS") (width 0.12) (tstamp c6dc5ae3-3a80-47c9-a12e-c7d079861c6d))
(fp_line (start -1.9 -1.8) (end -1.9 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 046c5b56-fd05-4e43-bb34-3015811e9949))
(fp_line (start 1.9 1.8) (end 1.9 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 075a1e25-86e2-45f4-8d5d-1d3f610c898c))
(fp_line (start -1.9 1.8) (end 1.9 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 473097ac-4464-456a-ae40-246137044395))
(fp_line (start 1.9 -1.8) (end -1.9 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d8018d9a-57a0-468b-bf94-e465eb793e78))
(fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp 4ed1e707-dd83-4a40-98f4-37f5744697d9))
(fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 69ac9281-24e0-4cb5-89fa-c7ff8ffc5d63))
(fp_line (start 0.9 1.55) (end -0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp 98ed4041-e1a8-4f6f-8c72-b0c9322ff15a))
(fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer "F.Fab") (width 0.1) (tstamp c20f5d5f-4cf4-496c-8b77-bbfc52bd5fa8))
(fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer "F.Fab") (width 0.1) (tstamp dacafd0a-c389-4112-8c45-af42c0d2088d))
(pad "1" smd rect locked (at -1.1 -0.95 180) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "USB_D-") (pinfunction "I/O1") (pintype "passive") (tstamp 81ace0e4-0e1a-4a28-a5a1-b3d4e009d8e2))
(pad "2" smd rect locked (at -1.1 0 180) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 2c3c8b5c-0c4c-424d-b918-ff02cc6f663b))
(pad "3" smd rect locked (at -1.1 0.95 180) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "USB_D+") (pinfunction "I/O2") (pintype "passive") (tstamp 68bc94af-b162-4a6e-b976-d3a9a970d889))
(pad "4" smd rect locked (at 1.1 0.95 180) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "USB+") (pinfunction "I/O2") (pintype "passive") (tstamp 59caa65e-0018-4aeb-9eed-2d96c402036e))
(pad "5" smd rect locked (at 1.1 0 180) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "USB_VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp a1c1dca7-901d-482b-b552-fe31aebc2040))
(pad "6" smd rect locked (at 1.1 -0.95 180) (size 1.06 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "USB-") (pinfunction "I/O1") (pintype "passive") (tstamp 06ce0217-0de5-40b5-aa36-d1495b0bb856))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060222c17)
(at 177.95 73.85 -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" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000600a3f83")
(attr smd)
(fp_text reference "C9" (at 0 0) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2f8334ff-17cd-4fb4-ad91-e7d15c6e9c4f)
)
(fp_text value "0.01u" (at 0 1.68 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7397364-7987-4b48-b8dd-609865040992)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d0597245-c181-4d3e-a065-6a72d197468a)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 1ead50d3-740d-4772-b280-768e9768595f))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 60696b38-c16e-4126-a449-608496896ce5))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 4f9b199a-540a-4682-bdc9-2a9af4552573))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 694158e3-cad9-4fcf-93ae-3b8340e0303b))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp baa8b881-4c2c-4d65-8b34-fcb1ad522312))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp c461348f-eec3-45d5-bf1a-a008131a0dfa))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 52e12f95-4793-41e5-89f8-f8e20d6a5547))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 8d51dadf-a36d-4452-9d5e-35efc3d3c5b6))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp a3a3939f-7bb5-4d36-8f8d-94689ea072ae))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp f2c05e52-031a-4093-8536-7d878b71a761))
(pad "1" smd roundrect locked (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "USB_VBUS") (pintype "passive") (tstamp 9840bbd1-75d0-48c8-901b-6739349db699))
(pad "2" smd roundrect locked (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp ddbf3b13-979b-4495-9954-d683563a0262))
(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 "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 00000000-0000-0000-0000-000060224c3c)
(at 149.352 67.31 -90)
(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" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606ec478")
(attr smd)
(fp_text reference "D1" (at 0 0 180) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 78fef375-0a5e-4250-a854-00decc908283)
)
(fp_text value "LED_USER" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9b98a5d-61f2-4329-8afc-5f14c20e8057)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4f81114f-33b3-4c6d-82a1-4a781b927a12)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 1bff7861-da29-4e42-8d17-228e246b9772))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 89fd3769-3b66-41ca-bf66-846c1822986f))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp c395f6b1-1d6e-4786-9794-9a3ea7b27941))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3b56515f-c377-4bdf-9d07-99189038e052))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4fe7d5ac-c60d-4885-905a-66f961ec5cc8))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5b4a8d34-35a0-4e84-bcc5-d12efa031abc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a6a64290-7783-4617-8eb2-607c8749835e))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 2918044b-6d13-4140-a83a-bfcae073c32e))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a861f938-b76e-4d81-a8a5-234e93ed7698))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ad1d9161-df6c-460c-984b-41ca7eda815e))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp c54ee0ce-3933-497e-9820-c1fedd0f3fff))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp fbf7ac75-6608-4943-bc8d-535decafa677))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 6eefa2b0-40a0-4c48-a9b0-00d9b6265074))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 67072adf-e9cf-49bb-bd49-a3a8ff76f2bb))
(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 "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 00000000-0000-0000-0000-000060224c72)
(at 147.32 67.31 -90)
(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" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000606f626a")
(attr smd)
(fp_text reference "D2" (at 0 0 180) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 69856237-4ad4-4992-ac30-a0293c5f1d26)
)
(fp_text value "PWR" (at 0 1.43 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee735a25-8cd9-4d9f-94fc-ee6d8e13615e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 84e99ac2-0784-49c0-8cc0-4931c866b291)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp ae6310fa-27ec-4bb7-b284-ffc321dfb332))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp b8d9a8d4-260e-49c8-b9eb-749397a2c3b5))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp bcf8f316-2f36-4155-87b7-f45e4010542b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 37e1c321-f694-45fd-94da-ce6131962d00))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 59354804-7f9a-49f5-a200-b856e15396b0))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a8d367b4-8847-4628-ba87-689087c5066b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e9d761b0-4545-488e-a0b6-433941004d77))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 00dd0221-ab1d-4491-b7b7-e3a774276b1c))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 03c27d57-3e65-4795-9850-42a968aee2c1))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 0551f459-3ea2-4aea-a389-063da8ff1214))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1c7f6377-5dbf-4905-b9ca-d78811dd05bd))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4546e614-d0f5-4c78-b184-f5482182d16e))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 736f1a3a-115c-4622-9910-4541545ebd29))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 83f27175-112e-4ffc-8f7d-82755700f5b2))
(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 "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060224cd6)
(at 150.305 70.358 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060090d90")
(attr smd)
(fp_text reference "R4" (at 0 0 270) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 3b6c9c71-a4b5-4b1b-b50a-0872c1d8c430)
)
(fp_text value "1k" (at 0 1.43) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 114a270d-e6bc-4905-bd1d-074f6333423e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 15eb318b-469a-485c-8273-46b19eebd6b6)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp cd13ca41-3108-4d5e-b08a-6374a6cb7a6f))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp fdfe5147-d908-4b74-aabc-e237dff8b176))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 37aba558-0a71-4d32-bd07-e7e322ac34bc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 566d833a-bbdb-4b86-a5b6-5b1036ff8a8f))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 917fb8e8-3f92-42c8-b14e-777c7bc6659e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp a27945cd-1e2d-4f0e-90df-5b089566768e))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 56aa22d1-6330-4a54-a1e4-aaa103bdea6c))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6ff37dba-2a2b-47c2-8e82-efbd62d8fb55))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 89ebed49-3e41-4dad-89db-ddee27d0963f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp aeaaea5c-7344-4d81-8044-baa68b281431))
(pad "1" smd roundrect locked (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "LED_USER") (pintype "passive") (tstamp 745ade87-9cac-4439-9eb1-d473421c9c02))
(pad "2" smd roundrect locked (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D1-Pad2)") (pintype "passive") (tstamp 738b9c96-2e4a-4bc3-8115-088a30875fb0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x12_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A41D) (tstamp 00000000-0000-0000-0000-0000602255a0)
(at 143.002 58.928 90)
(descr "Through hole straight socket strip, 1x12, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x12 2.54mm single row")
(property "Sheetfile" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006007cfca")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.794 270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b128038-7008-412f-a170-894976e4080f)
)
(fp_text value "Conn_01x12_Female" (at 0 30.71 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe9539fc-f4e0-4043-a409-aa19f0569759)
)
(fp_text user "${REFERENCE}" (at 0 13.97) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b6aa911-dcbf-4554-be29-e17c2e418521)
)
(fp_line (start 1.33 1.27) (end 1.33 29.27) (layer "F.SilkS") (width 0.12) (tstamp 099f4adf-0d1a-45ce-b6c6-b20eea3859f9))
(fp_line (start -1.33 29.27) (end 1.33 29.27) (layer "F.SilkS") (width 0.12) (tstamp 31414581-fa95-43d0-8d10-3611fc30b980))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 48ca5357-a8cc-4801-b491-c0aa03a53a3d))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5b28cb68-b765-4a51-aaac-059ffb47dde0))
(fp_line (start -1.33 1.27) (end -1.33 29.27) (layer "F.SilkS") (width 0.12) (tstamp 6e82e5a2-5a63-4384-9a95-e3fae9175e7e))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 8a052163-43fe-4627-aee6-97b22526b12b))
(fp_line (start 1.75 29.7) (end -1.8 29.7) (layer "F.CrtYd") (width 0.05) (tstamp 07accce7-a062-4a9c-9bbc-d7a59443c4b0))
(fp_line (start 1.75 -1.8) (end 1.75 29.7) (layer "F.CrtYd") (width 0.05) (tstamp 305a4927-d7d3-4467-87c8-8df8e8c44bde))
(fp_line (start -1.8 29.7) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5bdd1c5d-7c50-4135-8d7d-f991b4601dc0))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp f0763c3d-ba6f-4b0c-a744-fb2ddf617fbc))
(fp_line (start 1.27 -0.635) (end 1.27 29.21) (layer "F.Fab") (width 0.1) (tstamp 138041e4-2512-4654-abb6-4cafa8f728a8))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9303745f-2285-4f43-af35-cef9cc263916))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp a6915180-5a09-4893-bd08-aed0e30d2e78))
(fp_line (start 1.27 29.21) (end -1.27 29.21) (layer "F.Fab") (width 0.1) (tstamp c3c677c2-eb3a-4803-8b54-27790eab0951))
(fp_line (start -1.27 29.21) (end -1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp de94686e-1169-402b-8d28-06f3c91a6cbb))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp 296c9223-0c4a-48ba-8649-41f90ce94e1d))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 46347478-2151-4e05-80f6-ef20e0569e2b))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "BOOT0") (pinfunction "Pin_3") (pintype "passive") (tstamp fdcc04af-3d9f-480d-9b49-88fc5824d3e5))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "PF0") (pinfunction "Pin_4") (pintype "passive") (tstamp 69c93cb0-0b36-440d-84b1-90658e5fb43a))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "PF1") (pinfunction "Pin_5") (pintype "passive") (tstamp 114acf17-bd8f-4e79-a8f3-d1e35de55e9c))
(pad "6" thru_hole oval locked (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "NRST") (pinfunction "Pin_6") (pintype "passive") (tstamp 58d7026a-8b23-467d-b098-135ebfc2b93e))
(pad "7" thru_hole oval locked (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "+3V3") (pinfunction "Pin_7") (pintype "passive") (tstamp 94a09a24-4c54-4c4c-a703-c60c93bfdd66))
(pad "8" thru_hole oval locked (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "PA0") (pinfunction "Pin_8") (pintype "passive") (tstamp bec3a1cf-c29f-404d-b977-8ff9f208218e))
(pad "9" thru_hole oval locked (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "PA1") (pinfunction "Pin_9") (pintype "passive") (tstamp 47f50d38-5e4c-43b9-8ba0-f38da02d6b49))
(pad "10" thru_hole oval locked (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "PA2") (pinfunction "Pin_10") (pintype "passive") (tstamp 7e643d84-b2c1-46ff-9f7a-17d4ccfa6ed3))
(pad "11" thru_hole oval locked (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "PA3") (pinfunction "Pin_11") (pintype "passive") (tstamp d7583cb5-9020-44b0-a62b-2cb836af8d81))
(pad "12" thru_hole oval locked (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "PA4") (pinfunction "Pin_12") (pintype "passive") (tstamp baa2e89d-78aa-4a7f-aa57-0c19fd4ce233))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x12_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 00000000-0000-0000-0000-000060225734)
(at 171.65 69.5 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" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060bac5f5")
(attr smd)
(fp_text reference "C1" (at 0 0) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d29ec3df-b3ec-40b0-a28a-52b8a805c3d2)
)
(fp_text value "1u" (at 0 1.68 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25cc551f-f9d5-4bb7-997d-1bbc09ca24d8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f8d90401-2486-4bba-baf1-bb30e6eac11f)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 73b46f40-b2da-45b6-b756-0fd4290c834e))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 95d109de-a448-4131-94c0-8ee1057a1601))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 532b1a3d-28f4-4d3c-8902-89efab21ed94))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 5ecebfc7-c2ab-47e3-a362-fdfae84a6104))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 8e9a4876-493d-4501-8330-404410c5f070))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp bf3fb479-a09a-43f8-9121-439beccab95a))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 03c248b4-a721-49af-acd1-cf486896e19c))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp d0c052b5-88d1-43b9-bfb1-9ebfb724a180))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp d2a7e58a-1163-459b-b2de-767da59d18ec))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp d2d050e1-6924-4dc2-9a4d-4d449edd85b9))
(pad "1" smd roundrect locked (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VBUS") (pintype "passive") (tstamp 7974e9d5-6be8-4ee1-bc9e-2248071dcc2b))
(pad "2" smd roundrect locked (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp f07305ff-7c71-4743-a309-510c17b93935))
(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_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000060225764)
(at 163.452 69.5 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" "stm32f042_board.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060b844d9")
(attr smd)
(fp_text reference "C5" (at 0 0) (layer "F.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2f3ab4c8-aaec-4f9e-a285-c9efa359f2f8)
)
(fp_text value "1u" (at 0 1.68 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44b161eb-a5e0-4b46-b118-7a1d1935e80c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 3f35f5ac-981c-4fec-a7dc-18989332f066)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 7c1156f9-4f0e-4c9b-aedc-cf034034c3dc))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp a3bb20cd-8d49-4fef-bcb3-a3ce3e882b90))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 21e3e274-f90c-4595-812a-848e356db36d))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 6641a516-4d48-486f-89cd-693636c5c36c))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 87156b29-a686-40d8-8cd7-357bf27d18cb))