-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpy32_dev.kicad_pcb
7948 lines (7906 loc) · 354 KB
/
py32_dev.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "USLetter")
(title_block
(title "py32_dev")
(rev "B")
(company "bit-builder.com")
)
(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.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+3.3V")
(net 2 "GND")
(net 3 "OSCIN")
(net 4 "OSCOUT")
(net 5 "OSC32IN")
(net 6 "OSC32OUT")
(net 7 "MCU_RST")
(net 8 "BOOT0_PRE")
(net 9 "Net-(D1-Pad2)")
(net 10 "Net-(J1-PadB5)")
(net 11 "Net-(J1-PadA5)")
(net 12 "Net-(D2-Pad2)")
(net 13 "BOOT0")
(net 14 "SWDIO")
(net 15 "SWCLK")
(net 16 "/VBUS")
(net 17 "unconnected-(J1-PadS1)")
(net 18 "PB7")
(net 19 "PB6")
(net 20 "PB5")
(net 21 "PB4")
(net 22 "PB3")
(net 23 "PA15")
(net 24 "PA8")
(net 25 "PF3")
(net 26 "PA0")
(net 27 "PA1")
(net 28 "PA2")
(net 29 "PA3")
(net 30 "PA4")
(net 31 "PA5")
(net 32 "PA6")
(net 33 "PA7")
(net 34 "PB0")
(net 35 "PB1")
(net 36 "VDD")
(net 37 "PA12")
(net 38 "PA11")
(footprint "Button_Switch_SMD:SW_Push_1P1T_NO_Vertical_Wuerth_434133025816" (layer "F.Cu")
(tedit 5DB98283) (tstamp 0070c23b-fbe3-4a18-9879-569f65685d88)
(at 174.3 116.125)
(descr "https://katalog.we-online.com/em/datasheet/434133025816.pdf")
(tags "tactile switch Wurth Wuerth")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/dd1e3cc3-afe6-4ceb-99e1-2419a37a1e81")
(attr smd)
(fp_text reference "SW1" (at -4.325 0.325) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7cf55c4-f3fd-41af-b79f-9779de7d385e)
)
(fp_text value "Usr" (at 0 2.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac1ed3ed-e281-4f8c-bdf2-e46d50385a50)
)
(fp_text user "${REFERENCE}" (at 0.05 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34e899fa-1ab4-49e2-b56a-b6298e6dac43)
)
(fp_line (start 2.2 -1.75) (end -2.2 -1.75) (layer "F.SilkS") (width 0.12) (tstamp 0d06dffc-57b2-4a10-b993-853599010cf9))
(fp_line (start -2.2 0.05) (end -2.2 -0.05) (layer "F.SilkS") (width 0.12) (tstamp 309bfc3e-ef62-408c-9d23-69e8556151d0))
(fp_line (start 2.2 0.05) (end 2.2 -0.05) (layer "F.SilkS") (width 0.12) (tstamp 4d80b5dc-beca-4d30-b61d-68c07bc26e3a))
(fp_line (start -2.2 1.75) (end 2.2 1.75) (layer "F.SilkS") (width 0.12) (tstamp b50adc5c-a333-4e16-aa46-a7aff55b1354))
(fp_line (start -2.85 -1.85) (end 2.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 1a235180-5583-45f7-a2aa-9b1c7b94b814))
(fp_line (start -2.85 1.85) (end -2.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 309d24fc-142c-487b-8196-f8f81aa3ae1d))
(fp_line (start 2.85 -1.85) (end 2.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 637982f4-d4a3-4499-92bb-5feec364f457))
(fp_line (start 2.85 1.85) (end -2.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp d1b60410-6ec3-449b-9e50-2ee06dff07c1))
(fp_line (start -2.1 -1.6) (end 2.1 -1.6) (layer "F.Fab") (width 0.1) (tstamp 3d90d591-a3db-43c1-975e-06310c40bf6e))
(fp_line (start -2.1 1.6) (end -2.1 -1.6) (layer "F.Fab") (width 0.1) (tstamp 4b385b42-c179-4b04-a937-b3e938eab76e))
(fp_line (start -2.1 1.1) (end -1.6 1.6) (layer "F.Fab") (width 0.1) (tstamp 4ba286d0-2a95-4194-8773-1cd1b522a2f6))
(fp_line (start 1.6 -1.6) (end 2.1 -1.1) (layer "F.Fab") (width 0.1) (tstamp 73d337ac-d168-4533-a6fb-c88cec621e0d))
(fp_line (start -0.9 -1.1) (end 0.8 -1.1) (layer "F.Fab") (width 0.1) (tstamp 99a627bd-2206-407a-84b4-8d4c6daedde7))
(fp_line (start 1.6 1.6) (end 2.1 1.1) (layer "F.Fab") (width 0.1) (tstamp 9aea7403-2f98-4b2c-9419-ac4c71088ebf))
(fp_line (start 2.1 1.6) (end -2.1 1.6) (layer "F.Fab") (width 0.1) (tstamp 9d8d474e-e28f-4116-a40a-e3d5a183b639))
(fp_line (start -2.1 -1.1) (end -1.6 -1.6) (layer "F.Fab") (width 0.1) (tstamp ad32f7ec-9044-4a3c-9053-e7ffc37bea70))
(fp_line (start 2.1 -1.6) (end 2.1 1.6) (layer "F.Fab") (width 0.1) (tstamp e1df576f-a00b-4157-ae19-548272d87278))
(fp_line (start 0.8 1.1) (end -0.9 1.1) (layer "F.Fab") (width 0.1) (tstamp f65778a0-c3b1-422b-865b-f75af5c10480))
(fp_arc (start -0.9 1.099999) (mid -1.460147 0) (end -0.9 -1.099999) (layer "F.Fab") (width 0.1) (tstamp 29d28b0b-c5ac-48e5-b7fa-4b0960028b50))
(fp_arc (start 0.8 -1.099999) (mid 1.40384 0) (end 0.799999 1.099999) (layer "F.Fab") (width 0.1) (tstamp ef6d2d42-b7c5-4d1a-af29-069b9201aa73))
(pad "1" smd rect (at 2.075 -1.075) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 79e43a56-5950-4306-abe9-688ccf5a2f96))
(pad "1" smd rect (at -2.075 -1.075) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp a8efcc8d-6a45-4ebd-9217-ad2f3730f49e))
(pad "2" smd rect (at -2.075 1.075) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "PA11") (pinfunction "2") (pintype "passive") (tstamp b4df3cd2-500f-40ec-afa3-6c80d33726f0))
(pad "2" smd rect (at 2.05 1.075) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "PA11") (pinfunction "2") (pintype "passive") (tstamp f4d797eb-0b42-4a02-8f72-93eeb908c804))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_Push_1P1T_NO_Vertical_Wuerth_434133025816.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_2.5mm_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 02a62bc2-a91d-43c1-a093-155979cbef06)
(at 186 97)
(descr "Mounting Hole 2.5mm")
(tags "mounting hole 2.5mm")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/bb49f755-1660-4ff3-918b-40edd411c11c")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at -3.55 -2.525) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 088decf1-e48b-4b9a-86d1-b265838349e8)
)
(fp_text value "MountingHole" (at 8.6 -5.275) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 634587f3-6d0b-48c8-925b-b339423fda2a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e3c79cb-9533-4595-8d51-542a88f06c58)
)
(fp_circle (center 0 0) (end 2.5 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 66d99d48-adb1-49d0-a796-47db71148cd6))
(fp_circle (center 0 0) (end 2.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp c394894c-df89-493f-8b16-25e7d87d2904))
(pad "1" thru_hole circle (at 0 0) (size 5 5) (drill 2.5) (layers *.Cu *.Mask) (tstamp d54a2b2a-02fc-4c6c-8cf2-a4d56208e188))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 065f9a24-4241-451b-b2a1-1a8d5c3a7c91)
(at 178.975 116.05 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" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/cada5b00-0c0c-4001-beec-920de1988706")
(attr smd)
(fp_text reference "R4" (at -2.4 0.915 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24a71259-8ba7-43de-82c7-d1900a7c242d)
)
(fp_text value "1.5K" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2da07e05-2eeb-4c96-ae51-37a765ed8111)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d203f167-3260-4881-81d0-178dfa27ee03)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 73a21f70-4048-438d-aa43-e3c6fb352aeb))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 89912735-5c81-46ed-bbd6-faae048face4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 961bdd27-40d7-4a27-8af9-460bc20556c8))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9f66aa17-f3e5-431b-b3b8-7efae6e96777))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c223f6c3-e8b3-4f66-a92f-0613c7cd16ac))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c900b339-1dea-42ef-8ca8-f866caa1ef27))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5c4125dc-6b7c-48bf-9de3-b38c48709aab))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6cf3c4d3-9457-4f3c-af38-51abcc4d6270))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7877a82b-ec3a-42ac-a9d2-fbe618d7c161))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e251068c-df5d-4632-927c-5329f118e377))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "PA11") (pintype "passive") (tstamp 4ec69b8e-3a08-4d5f-8ec0-72c53bf14054))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3V") (pintype "passive") (tstamp 10f58dd8-5caa-4ea7-b7cf-7b052ca12b48))
(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 "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 088a0375-421c-42d4-b136-3cc1ce83c63a)
(at 159.175 100.76)
(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" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/db4e8efe-516f-43a4-a34f-c6ce50eec538")
(attr smd)
(fp_text reference "R7" (at -2.495 -0.5 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95e5a618-3152-4784-97fe-73d2d1340010)
)
(fp_text value "10K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6fb741c-8e0b-46db-b5ef-1a4506eab378)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 61f53758-c50d-4d11-a1cd-7c845149a9b6)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 197b1498-242f-43aa-8b25-b4c86f207c88))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b039f638-fc48-4d5a-866f-aa9bdc2f4725))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 69333243-760c-415e-b043-4b2714e5ec16))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 762838ae-7b88-401f-9328-1189bc83b346))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8993f5ca-ed0b-44d3-b753-34af82b92f0c))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d8c56121-df40-4997-aea0-a72644f0c828))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 01bf1ff3-bfb0-4d57-b055-1b99a4ed34ec))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 09006bb3-fb9d-4203-b4ac-4f241607b007))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9ae4af6f-45be-4e26-a9d3-a114ae2303d4))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp edc7684a-da11-47f0-82bc-9b4fed88c3d6))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "BOOT0_PRE") (pintype "passive") (tstamp 7b5d1e53-93c9-43b8-974c-bbb4ba665f99))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "BOOT0") (pintype "passive") (tstamp ddf3955f-95e6-46a5-a118-4e5a55452a1c))
(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_Push_1P1T_NO_Vertical_Wuerth_434133025816" (layer "F.Cu")
(tedit 5DB98283) (tstamp 08adb9df-90db-4d5f-94f7-9ea90770f4ba)
(at 155 111.625 -90)
(descr "https://katalog.we-online.com/em/datasheet/434133025816.pdf")
(tags "tactile switch Wurth Wuerth")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/947da77a-d677-4005-b4f3-094574221846")
(attr smd)
(fp_text reference "SW2" (at -3.525 0.075 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2226e58-4140-499e-8880-1deb76a939f1)
)
(fp_text value "Reset" (at 0 2.55 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9c38e1d-e1dd-4fa0-bb1b-3c79ed952b73)
)
(fp_text user "${REFERENCE}" (at 0.05 0 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f07d49d6-ed34-4538-b00b-8f191dcf8d38)
)
(fp_line (start -2.2 0.05) (end -2.2 -0.05) (layer "F.SilkS") (width 0.12) (tstamp 5ec4111b-fd8e-49a3-ad46-7b467936a301))
(fp_line (start -2.2 1.75) (end 2.2 1.75) (layer "F.SilkS") (width 0.12) (tstamp 92112dd1-785d-4867-9ea5-7c32518f1743))
(fp_line (start 2.2 -1.75) (end -2.2 -1.75) (layer "F.SilkS") (width 0.12) (tstamp 997cb376-5356-4b55-b95f-b5b21dabd205))
(fp_line (start 2.2 0.05) (end 2.2 -0.05) (layer "F.SilkS") (width 0.12) (tstamp ec17501c-02f7-4f06-b70c-7890bea93149))
(fp_line (start -2.85 -1.85) (end 2.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 5e932f9a-f4d5-4304-bcb7-e6283f8fff2d))
(fp_line (start 2.85 -1.85) (end 2.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 72923a55-3253-421c-9a8d-bbbc4fa6b922))
(fp_line (start 2.85 1.85) (end -2.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 7b8b4238-fa27-492b-b5af-12bb4df61a12))
(fp_line (start -2.85 1.85) (end -2.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp c164ed60-cbb2-4df5-bd1f-e17793d35954))
(fp_line (start 2.1 -1.6) (end 2.1 1.6) (layer "F.Fab") (width 0.1) (tstamp 26af40bb-a5a5-4548-b640-583dd3b78dd7))
(fp_line (start 1.6 1.6) (end 2.1 1.1) (layer "F.Fab") (width 0.1) (tstamp 3267a802-4480-4e20-9882-fb7b0573d6f1))
(fp_line (start 2.1 1.6) (end -2.1 1.6) (layer "F.Fab") (width 0.1) (tstamp 414a0938-b2cd-4471-922e-1b5711150e07))
(fp_line (start -2.1 -1.6) (end 2.1 -1.6) (layer "F.Fab") (width 0.1) (tstamp 79bfc7e6-e86d-4125-8c4e-da4b858e6993))
(fp_line (start 1.6 -1.6) (end 2.1 -1.1) (layer "F.Fab") (width 0.1) (tstamp 97cc6f2e-94e5-4788-a5b9-13fe7f825a18))
(fp_line (start -2.1 1.1) (end -1.6 1.6) (layer "F.Fab") (width 0.1) (tstamp a88b7946-fb43-4c13-baaf-cc4c94d2a848))
(fp_line (start 0.8 1.1) (end -0.9 1.1) (layer "F.Fab") (width 0.1) (tstamp abe27e0e-aee7-49b2-be64-6121548cfbde))
(fp_line (start -2.1 1.6) (end -2.1 -1.6) (layer "F.Fab") (width 0.1) (tstamp b918803f-15af-484c-af4a-08bb7ccbb0ac))
(fp_line (start -0.9 -1.1) (end 0.8 -1.1) (layer "F.Fab") (width 0.1) (tstamp e62c9bac-c13b-48e5-a753-e8bac6aff991))
(fp_line (start -2.1 -1.1) (end -1.6 -1.6) (layer "F.Fab") (width 0.1) (tstamp e9ff18d7-52ce-47e1-b48a-20f2d85c5af7))
(fp_arc (start -0.9 1.099999) (mid -1.460147 0) (end -0.9 -1.099999) (layer "F.Fab") (width 0.1) (tstamp ebfdcb2e-d82e-469f-9c7a-d7d7ef69c345))
(fp_arc (start 0.8 -1.099999) (mid 1.40384 0) (end 0.799999 1.099999) (layer "F.Fab") (width 0.1) (tstamp f30281b7-e5d0-497b-a3b5-86600159b043))
(pad "1" smd rect (at -2.075 -1.075 270) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 291d4b92-9cdb-4177-a8d7-22fd0c2a562b))
(pad "1" smd rect (at 2.075 -1.075 270) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 542e850b-abb0-49da-ab78-a5a9c9a7ef7e))
(pad "2" smd rect (at -2.075 1.075 270) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "MCU_RST") (pinfunction "2") (pintype "passive") (tstamp 11756d18-15c4-4aa3-b047-417a412e957b))
(pad "2" smd rect (at 2.05 1.075 270) (size 1.05 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "MCU_RST") (pinfunction "2") (pintype "passive") (tstamp 4e32e680-a4ca-4808-b1d5-e3a612e478f2))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_Push_1P1T_NO_Vertical_Wuerth_434133025816.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 215236c8-50f4-4c9d-a81e-6b39e505b7a9)
(at 139.725 110.275 180)
(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" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/3a664b79-c79b-43cb-88e0-09697f6ccb74")
(attr smd)
(fp_text reference "C4" (at 2.4 0.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2151b8f2-1179-4d3f-ae0d-1a5ceb5c822f)
)
(fp_text value "0.1uf" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 934e7eb6-0eb2-4d9d-8af8-b2dd82ea3c6d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fa4b3afd-389d-47c8-a826-1c977844e599)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 2038edc1-fd6a-4d44-a865-f1452ddbfb23))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 2a30781e-f006-435e-b739-3b5369386d7f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0a7dfb0f-298c-41b0-89f2-aa52964587d4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 19e0442d-524a-45be-9cfd-66413bd36361))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b5f19322-b2a2-4125-94b0-7b737c923cda))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c4adc7f0-cca9-4240-a25e-de87f3ec51ed))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 062a2b5d-c65a-429a-9392-90a95ede58da))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 15669ef0-289a-498a-abe9-c56380c8a134))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 638dfb98-f824-4dae-b98a-d5cfff5edf2b))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c409f812-6579-4fc7-9bee-0051d5b0e3a6))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3V") (pintype "passive") (tstamp 2c9bb538-f05b-4037-ad9c-23702bb41788))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 114549c4-05cc-44cf-8639-937e78f55146))
(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_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu")
(tedit 5EBA9318) (tstamp 3187df61-745a-4b64-b737-b7ec6df25d0f)
(at 138.7 106.925 180)
(descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
(tags "capacitor tantalum")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(property "Voltage" "35V")
(path "/7fe1f1fd-1083-4579-b1cf-79fbc0254aee")
(attr smd)
(fp_text reference "C2" (at 3.5125 0.9) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1570a15c-0c16-4cce-bee6-57a9be5659d7)
)
(fp_text value "0.33uf" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 26815843-11c4-4a22-bf49-56678cd96fb1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 801363aa-527b-4f33-8dfd-e1587aa0754e)
)
(fp_line (start -2.485 -0.935) (end -2.485 0.935) (layer "F.SilkS") (width 0.12) (tstamp 4ca2ac84-2531-42ca-9d3c-91be34d2aeae))
(fp_line (start 1.6 -0.935) (end -2.485 -0.935) (layer "F.SilkS") (width 0.12) (tstamp 5d812a54-dd67-4c7e-ae3a-018f23c23bbe))
(fp_line (start -2.485 0.935) (end 1.6 0.935) (layer "F.SilkS") (width 0.12) (tstamp 803641e5-d419-401d-92c6-95925b024f80))
(fp_line (start -2.48 -1.05) (end 2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 29c7a0c3-4b9b-4309-8629-a6e90878144b))
(fp_line (start -2.48 1.05) (end -2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 2bf9e474-90bd-4be7-b9b2-64da38a0a7a3))
(fp_line (start 2.48 1.05) (end -2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 3b6beb10-f4af-498a-9e29-6c2f0a29b30f))
(fp_line (start 2.48 -1.05) (end 2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 78a2bcfc-d601-4d99-8f18-f4a797facbe6))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 33ec0ade-0848-47a2-bf0e-ef9358ed572c))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 61b7006e-7df7-43f1-ac21-94d77fa204bc))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 7af5dd50-e14f-4ada-835a-7b90efeb80e1))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 839ba7d2-4904-4302-be64-4c4b2e22e509))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp 87c969ec-d0dc-41ad-a9a7-aae8b4388c68))
(pad "1" smd roundrect (at -1.4375 0 180) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185)
(net 36 "VDD") (pintype "passive") (tstamp ffb6ba46-47ec-4133-8aff-9605d19f42f7))
(pad "2" smd roundrect (at 1.4375 0 180) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185)
(net 2 "GND") (pintype "passive") (tstamp 13986c28-e538-47f9-b620-84eef223c9e6))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x18_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 32a79d15-fe75-4bf6-b2a3-7d95ba1f72b2)
(at 134 97 90)
(descr "Through hole straight pin header, 1x18, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x18 2.54mm single row")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/751b728d-d6b4-47d4-a3b2-e08f84baba7c")
(attr through_hole)
(fp_text reference "J2" (at 0.075 -2.625 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d85b9c8b-eb94-4448-a80d-520c0ce10504)
)
(fp_text value "Conn_01x18" (at 2.75 40.3 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bcdd57a1-bc5a-427b-a51d-80dc4601cd44)
)
(fp_text user "${REFERENCE}" (at 2.3 21.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0468bd0-b66a-4190-bbae-4e0f194e51a9)
)
(fp_line (start -1.33 44.51) (end 1.33 44.51) (layer "F.SilkS") (width 0.12) (tstamp 6b436fd4-adb4-4147-aa94-e81acf398468))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 7ad788c0-2089-4433-b9e8-b41f2ef1b9ac))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7f9dd1b3-e299-4209-828e-5ddd0ea0bfcf))
(fp_line (start 1.33 1.27) (end 1.33 44.51) (layer "F.SilkS") (width 0.12) (tstamp c343759f-b3b1-4a2e-af37-fe66d8f08f97))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d4f5f1a5-d3ea-4d99-8d90-89ad02cfcf05))
(fp_line (start -1.33 1.27) (end -1.33 44.51) (layer "F.SilkS") (width 0.12) (tstamp db7b1a4c-4de4-4eae-b166-a7ef38917dac))
(fp_line (start -1.8 44.95) (end 1.8 44.95) (layer "F.CrtYd") (width 0.05) (tstamp 5cfae305-39ec-403c-b9d1-c70f7c3aed36))
(fp_line (start -1.8 -1.8) (end -1.8 44.95) (layer "F.CrtYd") (width 0.05) (tstamp 7eb2fe7d-a4c1-45c1-87d8-6f257ce3adf8))
(fp_line (start 1.8 44.95) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c22fb2ea-59c7-412e-9f06-c9bfbdd7d7c1))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e373c47e-235e-4412-98a2-2716d990c52b))
(fp_line (start 1.27 -1.27) (end 1.27 44.45) (layer "F.Fab") (width 0.1) (tstamp 01dd76d2-9589-4050-9d86-b2f6fbda80c7))
(fp_line (start -1.27 44.45) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 2b1be571-8b9f-4885-b77c-0d95b35935dd))
(fp_line (start 1.27 44.45) (end -1.27 44.45) (layer "F.Fab") (width 0.1) (tstamp 394a7e7c-851d-4013-96c3-f6ca3347a372))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7906566e-6661-4a42-8041-cca709525a0c))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7de03c39-350e-46f5-b1d2-bfac0b0904d0))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 5ece38ec-e881-4b1d-b1d0-0da697b7774b))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 65e93123-7291-4a9e-9b69-77b79dbc7607))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "+3.3V") (pinfunction "Pin_3") (pintype "passive") (tstamp e8bc2278-fbee-4d58-b408-7b52b0a6d415))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "BOOT0_PRE") (pinfunction "Pin_4") (pintype "passive") (tstamp 2f64cb79-e403-457e-86fc-7802b567c229))
(pad "5" thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 5b42831d-cdc7-48ed-9935-abdf6b158e6a))
(pad "6" thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 9db0bd23-7273-4769-aea9-e5cc570eef53))
(pad "7" thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 954b5f9e-02ed-4471-9bf7-b16685b107b8))
(pad "8" thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 2580d75f-273a-4642-9672-52f1538cd2bc))
(pad "9" thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 7ce40a1e-f377-46f6-8041-b9a0b7b56998))
(pad "10" thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "PB7") (pinfunction "Pin_10") (pintype "passive") (tstamp db51bf99-af2d-47c3-9c09-73f0c15f4f32))
(pad "11" thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "PB6") (pinfunction "Pin_11") (pintype "passive") (tstamp 5fd46f7d-87fa-49f1-ba46-005cc13bb895))
(pad "12" thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "PB5") (pinfunction "Pin_12") (pintype "passive") (tstamp 3e9eae06-598c-4ac3-9099-4292c22ffc54))
(pad "13" thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "PB4") (pinfunction "Pin_13") (pintype "passive") (tstamp 30f5d524-ea53-446a-97c5-756ea6b44f7b))
(pad "14" thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "PB3") (pinfunction "Pin_14") (pintype "passive") (tstamp 64e5344a-dfda-4971-929e-5ffad04a2a34))
(pad "15" thru_hole oval (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "PA15") (pinfunction "Pin_15") (pintype "passive") (tstamp 9154aebe-f400-4e19-a152-084e0272d04a))
(pad "16" thru_hole oval (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 "PA12") (pinfunction "Pin_16") (pintype "passive") (tstamp 5fc7bc11-5b29-4796-a7c3-f53bfb1524bb))
(pad "17" thru_hole oval (at 0 40.64 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 "PA11") (pinfunction "Pin_17") (pintype "passive") (tstamp 881fd374-7c38-4987-9e0d-9f02f0686049))
(pad "18" thru_hole oval (at 0 43.18 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "PA8") (pinfunction "Pin_18") (pintype "passive") (tstamp fa4cd1d3-ba6a-413e-a900-bb6b88964565))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x18_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Crystal:Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm" (layer "F.Cu")
(tedit 5A0FD1B2) (tstamp 370c1d4d-8e82-4e62-ad2e-78ed0dc70bcb)
(at 153.4 102.35 90)
(descr "SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package")
(tags "SMD SMT crystal")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/ac1a6bed-83cc-493f-9ba5-e6cf3feb6eca")
(attr smd)
(fp_text reference "Y1" (at 0.075 2.85 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4464b206-87c1-47d9-8d46-c21fe6402ffb)
)
(fp_text value "24MHz" (at 0 2.45 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eee93776-f9ed-4bf0-b15b-c86f80e9d534)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.105)))
(tstamp e212bc4a-e765-4c99-addc-574411727d5d)
)
(fp_line (start -2 -1.65) (end -2 1.65) (layer "F.SilkS") (width 0.12) (tstamp 301336a8-f21a-4e4f-ab50-1b3ba3256b7e))
(fp_line (start -2 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp 91fa32bb-224c-4094-b3cc-2f149eab6c85))
(fp_line (start -2.1 1.7) (end 2.1 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 576e694e-0068-4b73-aaea-08bcad427631))
(fp_line (start 2.1 1.7) (end 2.1 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp b18174a7-935c-4517-b1f5-f6511e83ff5a))
(fp_line (start -2.1 -1.7) (end -2.1 1.7) (layer "F.CrtYd") (width 0.05) (tstamp d9da30ce-a518-4f12-a335-a2f691b6514c))
(fp_line (start 2.1 -1.7) (end -2.1 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp efbd64cb-d0a4-4a2b-9795-8260112e850a))
(fp_line (start -1.6 0.25) (end -0.6 1.25) (layer "F.Fab") (width 0.1) (tstamp 2ed7ce8f-3db0-4c67-bb92-616fe390c704))
(fp_line (start 1.6 1.25) (end 1.6 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3d4e0353-7325-4c02-aada-3464a2eedeac))
(fp_line (start -1.6 1.25) (end 1.6 1.25) (layer "F.Fab") (width 0.1) (tstamp 6022658b-7dba-488e-9213-3d22dcf90313))
(fp_line (start 1.6 -1.25) (end -1.6 -1.25) (layer "F.Fab") (width 0.1) (tstamp a1a2bf76-ea9c-47e1-aa2d-cddc5b5508ef))
(fp_line (start -1.6 -1.25) (end -1.6 1.25) (layer "F.Fab") (width 0.1) (tstamp a5ad413a-66a9-49b4-8679-ba6622c1f154))
(pad "1" smd rect (at -1.1 0.85 90) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "OSCOUT") (pinfunction "1") (pintype "passive") (tstamp 380a622a-2d6f-4a60-ad78-9e27028a5a20))
(pad "2" smd rect (at 1.1 0.85 90) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp b7094c7c-64f2-456b-96c1-18d7b56ff263))
(pad "3" smd rect (at 1.1 -0.85 90) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "OSCIN") (pinfunction "3") (pintype "passive") (tstamp 6a0e09a3-736d-4553-b862-49a20223241a))
(pad "4" smd rect (at -1.1 -0.85 90) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "4") (pintype "passive") (tstamp c04044a0-3740-42e3-9269-ee4c3af9644e))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu")
(tedit 5EBA9318) (tstamp 37e4d317-d051-4fcc-ac22-37a5e8063649)
(at 132.7625 104.15)
(descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
(tags "capacitor tantalum")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(property "Voltage" "35V")
(path "/3b8dd763-f247-4d68-9245-2c987bf5d643")
(attr smd)
(fp_text reference "C1" (at -0.9125 -1.8) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce0dfa03-19ae-4cf3-ad61-efe2813fb0ff)
)
(fp_text value "0.1uf" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 974cdb25-2d0f-40fe-b108-24f6e77f3ef8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp cec4ca48-5e57-46db-aa55-d0b13af77aed)
)
(fp_line (start -2.485 0.935) (end 1.6 0.935) (layer "F.SilkS") (width 0.12) (tstamp 02b4ce85-c42a-42df-9cda-9c6ec7046c5d))
(fp_line (start -2.485 -0.935) (end -2.485 0.935) (layer "F.SilkS") (width 0.12) (tstamp 098424ea-27b8-4dcf-9bd4-759b9e044668))
(fp_line (start 1.6 -0.935) (end -2.485 -0.935) (layer "F.SilkS") (width 0.12) (tstamp 8377d0d8-ad07-4b44-bd19-51fcaafa6ef8))
(fp_line (start -2.48 1.05) (end -2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 4b08d38d-c005-4c64-aa69-fde274bad31d))
(fp_line (start 2.48 1.05) (end -2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 5fd7626f-a281-41bf-86db-e476768a1725))
(fp_line (start 2.48 -1.05) (end 2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 70c1febc-af47-4541-a82e-656a4ce3272d))
(fp_line (start -2.48 -1.05) (end 2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp fa25b28c-f588-4e1b-ac4f-549939cbe2c6))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 6d826826-08fd-4b51-b046-a6f9223663b7))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 97d45159-4ded-410c-8d5f-1177f78ccb18))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp d2b7c7fc-d2a3-492e-9149-a0896c339165))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp e7a49cbe-c381-497c-aaf4-786c7f6dc154))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp ef76b701-491c-4ff8-b4c1-aeaffd197d10))
(pad "1" smd roundrect (at -1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185)
(net 16 "/VBUS") (pintype "passive") (tstamp aec48f0c-270d-4b02-9584-3f8b9ee64b1b))
(pad "2" smd roundrect (at 1.4375 0) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185)
(net 2 "GND") (pintype "passive") (tstamp 60267f5a-2836-4c78-af41-9353ec870bc4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Fuse:Fuse_Bourns_MF-SM_7.98x5.44mm" (layer "F.Cu")
(tedit 5ABAF57A) (tstamp 5a2ae216-6ad6-4201-bc99-f28ab960d806)
(at 133.1 113.7 -90)
(descr "https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf")
(tags "bourns ptc resettable fuse polyfuse MF-SM MF-SMHT")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/ba3496bb-3b7f-4814-8297-b6c09cbabaac")
(attr smd)
(fp_text reference "F1" (at -6.125 0.025 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp efdebeb6-544d-4b48-9ffe-b7ef105a6ff4)
)
(fp_text value "Polyfuse" (at 0.275 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa859841-b4f7-4cca-8383-e901eaacedd4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a55d729-ada2-454d-8d10-4325d0ee4f6c)
)
(fp_line (start -4.1 2.83) (end 4.1 2.83) (layer "F.SilkS") (width 0.12) (tstamp 061dffc1-2d19-47ec-a982-2a311d8787b2))
(fp_line (start -4.1 -2.83) (end 4.1 -2.83) (layer "F.SilkS") (width 0.12) (tstamp 0b86976a-82ed-428d-8af5-e080a52e0526))
(fp_line (start -4.1 2.83) (end -4.1 2.05) (layer "F.SilkS") (width 0.12) (tstamp 6126ce1a-d992-4278-b953-ebd3b6ca563d))
(fp_line (start 4.1 2.83) (end 4.1 2.05) (layer "F.SilkS") (width 0.12) (tstamp 8ab52407-1a56-45a1-b9fc-4c2af5d732dd))
(fp_line (start -4.1 -2.83) (end -4.1 -2.05) (layer "F.SilkS") (width 0.12) (tstamp a86c521d-1c02-4c94-acfe-ef3eebebccb1))
(fp_line (start 4.1 -2.83) (end 4.1 -2.05) (layer "F.SilkS") (width 0.12) (tstamp bfaa67b6-e6cf-44b7-8c26-0ce59e4a870d))
(fp_line (start 5.1 2.97) (end -5.1 2.97) (layer "F.CrtYd") (width 0.05) (tstamp 2989bcb9-3e73-4750-b7d6-d5abc36294f1))
(fp_line (start -5.1 -2.97) (end 5.1 -2.97) (layer "F.CrtYd") (width 0.05) (tstamp 2edee662-217d-48b2-af2d-1fff6c066e27))
(fp_line (start 5.1 -2.97) (end 5.1 2.97) (layer "F.CrtYd") (width 0.05) (tstamp 973a693b-4789-4746-b7a9-30eb85665b99))
(fp_line (start -5.1 2.97) (end -5.1 -2.97) (layer "F.CrtYd") (width 0.05) (tstamp dbc1cc0e-0486-46fd-a150-b41fbfc4020b))
(fp_line (start -3.99 2.72) (end -3.99 -2.72) (layer "F.Fab") (width 0.1) (tstamp 4d61ff38-8312-4416-a2ca-465b9dcfb35e))
(fp_line (start -3.99 -2.72) (end 3.99 -2.72) (layer "F.Fab") (width 0.1) (tstamp 7bd2f1e1-7748-4cb4-97bd-4efd13275e8a))
(fp_line (start 3.99 -2.72) (end 3.99 2.72) (layer "F.Fab") (width 0.1) (tstamp 9d51c68d-b552-4037-bd6a-010aa949e2c6))
(fp_line (start 3.99 2.72) (end -3.99 2.72) (layer "F.Fab") (width 0.1) (tstamp cf3c6560-b469-4f1c-83da-f9c4da278d65))
(pad "1" smd rect (at -3.7 0 270) (size 2.3 3.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/VBUS") (pintype "passive") (tstamp 6ae03123-c016-4546-a387-36e25094843e))
(pad "2" smd rect (at 3.7 0 270) (size 2.3 3.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "VDD") (pintype "passive") (tstamp 182cec63-0572-4b76-a267-d77b2c607f0e))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_Bourns_MF-SM_7.98x5.44mm.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 5dc3dd6a-2e7d-4bfe-83db-461945c90526)
(at 141.45 115.85 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" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/4d7f70ba-6eee-438b-872b-64c263e2e011")
(attr smd)
(fp_text reference "R1" (at 0.65 -1.625) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49f87963-e993-44b2-84a3-f02fb05ed751)
)
(fp_text value "470" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2dd36ac-4d80-4c10-bfaf-313afdf73959)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 58f7fdb6-c767-4b69-a8ef-a89e5efb0d82)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 152faab1-ae6a-40f1-b028-94bc028ab322))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 618e6f95-0643-4f45-9a5e-50ecb98a5bdb))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 053c092d-6b01-433b-93eb-0261f11596ab))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 058d3a0b-4aef-41d4-9b2a-d81d7d0acc0a))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 22cea2b6-b10a-4fe4-98a6-7356e261cde2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 77a8fb48-3399-4269-9a8a-907923c3614d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 41d87d57-75ab-4dbb-8a5a-960f517fcc21))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 5e6d896e-fb03-468b-81c0-c7986e86b01e))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 6e4f53f2-1eaa-4812-bca7-2072c3200bed))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 86e8d20e-99da-4f32-8c74-7ccea71db547))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3V") (pintype "passive") (tstamp f386a4d7-b576-4b26-bae9-557b2381af5f))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(D1-Pad2)") (pintype "passive") (tstamp 7e90941d-f1ce-4ea7-b255-0dc36e3d9aec))
(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 "Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm_NumberLabels" (layer "F.Cu")
(tedit 5A3F6CCC) (tstamp 6fb65739-152e-4e19-ae3f-6fe5f0de0c8b)
(at 143.83 102.2 180)
(descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open, labeled with numbers")
(tags "solder jumper open")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/8437b21e-2d35-4d37-9d5e-ac00391bd7dc")
(attr exclude_from_pos_files)
(fp_text reference "JP5" (at 0.14 -1.97 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7f1836e-a95e-431c-95e8-ec7b0f64f28e)
)
(fp_text value "Boot" (at 0.14 3.13) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8d5bcd7-7aa8-4283-8b02-e2e52151c17f)
)
(fp_text user "3" (at 1.86 1.93 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0636ccea-56bd-4925-acd3-13f4e60df710)
)
(fp_text user "1" (at -1.92 1.97 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52166013-cee3-4ab0-af46-6d3014d4cf2d)
)
(fp_line (start 2.05 -1) (end 2.05 1) (layer "F.SilkS") (width 0.12) (tstamp 34e15951-4b4e-4a08-b58e-bcb82b01e223))
(fp_line (start 2.05 1) (end -2.05 1) (layer "F.SilkS") (width 0.12) (tstamp 72a7f78b-c4cb-48fc-9c0b-63047056e238))
(fp_line (start -2.05 -1) (end 2.05 -1) (layer "F.SilkS") (width 0.12) (tstamp 793bbb9c-3512-44c5-afcd-a67ae6dc7bf6))
(fp_line (start -2.05 1) (end -2.05 -1) (layer "F.SilkS") (width 0.12) (tstamp 95e65f66-9500-4758-acd6-063656bfd3da))
(fp_line (start -2.3 -1.25) (end -2.3 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 0f8a1ce3-15ec-4f0c-bb35-addcad8de195))
(fp_line (start 2.3 1.25) (end -2.3 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 157e34c1-5a2c-480c-bc5f-a5e54a2a9c93))
(fp_line (start 2.3 1.25) (end 2.3 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp be4f3ec9-0ccb-4416-8ea1-550611c536a8))
(fp_line (start -2.3 -1.25) (end 2.3 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp f62041af-5a12-453c-8b67-d92dfce2f0f0))
(pad "1" smd rect (at -1.3 0 180) (size 1 1.5) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 49977a42-6c9a-4e98-a45c-3b7d215cbbc2))
(pad "2" smd rect (at 0 0 180) (size 1 1.5) (layers "F.Cu" "F.Mask")
(net 8 "BOOT0_PRE") (pinfunction "C") (pintype "passive") (tstamp 3f7d1edc-35da-431d-8bf2-6da913f8cfa5))
(pad "3" smd rect (at 1.3 0 180) (size 1 1.5) (layers "F.Cu" "F.Mask")
(net 1 "+3.3V") (pinfunction "B") (pintype "passive") (tstamp 7dc671c8-53cb-4b85-a55d-d4c8d1613451))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 7e2fa97d-8a24-404c-892a-b1a46082e034)
(at 145.725 115.825 180)
(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" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/35beea88-0ffe-4fdc-a83b-6e631a07e0bb")
(attr smd)
(fp_text reference "C11" (at -0.5 1.375) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e7d7f56-87de-4b0c-98cf-6a3303752fd9)
)
(fp_text value "0.1uf" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a52ae5b7-dbcd-442e-9b60-1b4ceb317097)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 65565921-98fc-42ec-8ef7-9234a9838f7d)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 10c7fcdd-2ee0-4a1c-87f0-54368ccc122a))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 7ebbfb73-4fa1-4b44-8e2f-dbe8e7549a22))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 924eb0e0-a5e9-4532-8920-4035c27a0c43))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b5b13ec0-cfa7-4941-9e3d-ff6bf9debf3f))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e302a8c9-2a9e-4d6e-b1f3-bd26cb7d71ea))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp eee3b13c-51b4-4466-b285-84ee25d8ce3a))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5a294b14-9f6f-4205-8c1d-d516f34f5f5d))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5aecc4ad-5aa2-4e8a-bbe5-eb70e9028380))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5cda1284-7765-4105-9df1-d9c8e914a88e))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c1045991-162a-405e-97b9-01b385f7a076))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "MCU_RST") (pintype "passive") (tstamp f9dc1221-ed2f-4fbc-ac92-c6c080e2ebe3))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp eb870030-0359-4cba-a5d4-e8960d0bef40))
(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 "Crystal:Crystal_DS15_D1.5mm_L5.0mm_Horizontal" (layer "F.Cu")
(tedit 5A0FD1B2) (tstamp 8c220601-ab06-4f94-80e3-f9481d11cbb0)
(at 172.35 107.45 90)
(descr "Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf")
(tags "['DS15']")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/1bfe61f3-7663-4734-a2bc-b1fdd4bdf372")
(attr through_hole)
(fp_text reference "Y2" (at 0.875 3.975) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f8aadbb-c4ac-48c5-9649-eb832f7db6f6)
)
(fp_text value "32.768KHz" (at 3.12 1.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4dd0cb44-a002-4ada-b88f-e258275596ab)
)
(fp_text user "${REFERENCE}" (at 1 4) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp f15709cd-51e7-465d-bbad-b1a2c5fe31e4)
)
(fp_line (start 0.6 1.3) (end 0 0.7) (layer "F.SilkS") (width 0.12) (tstamp 0ccef6fa-9b88-4ceb-8c81-bf111bb2ee68))
(fp_line (start 1.7 0.7) (end 1.7 0.7) (layer "F.SilkS") (width 0.12) (tstamp 16dedb4b-60ad-42b6-8af8-f4d29e7cfca4))
(fp_line (start 1.8 1.3) (end -0.1 1.3) (layer "F.SilkS") (width 0.12) (tstamp 245a34ac-49a8-4c8e-9f9c-fe0ce32e7a41))
(fp_line (start 1.1 1.3) (end 1.7 0.7) (layer "F.SilkS") (width 0.12) (tstamp 28a74e01-9d4d-4354-a502-9cd4cc176c14))
(fp_line (start -0.1 6.7) (end 1.8 6.7) (layer "F.SilkS") (width 0.12) (tstamp 49b7d4a1-a8d9-4966-9a3e-b451c67a7443))
(fp_line (start 1.8 6.7) (end 1.8 1.3) (layer "F.SilkS") (width 0.12) (tstamp 8481df65-12c2-42a7-8932-80002226a208))
(fp_line (start -0.1 1.3) (end -0.1 6.7) (layer "F.SilkS") (width 0.12) (tstamp 94ec441e-949a-4e47-ad4c-f06b3b4b60b0))
(fp_line (start 0 0.7) (end 0 0.7) (layer "F.SilkS") (width 0.12) (tstamp bb3236b8-427f-4552-8b8d-e81141b19754))
(fp_line (start -0.8 -0.8) (end -0.8 7.3) (layer "F.CrtYd") (width 0.05) (tstamp 759803f1-794d-4b7a-b9ae-6ad7e86f6c15))
(fp_line (start 2.5 7.3) (end 2.5 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp 8163eae4-4234-4de7-948d-99aea5580ebc))
(fp_line (start 2.5 -0.8) (end -0.8 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp 9fa46cef-a86c-4c1c-b0b4-b02364908d52))
(fp_line (start -0.8 7.3) (end 2.5 7.3) (layer "F.CrtYd") (width 0.05) (tstamp dcdc754d-19b1-4f84-93cf-fecdac4635fc))
(fp_line (start 1.6 6.5) (end 1.6 1.5) (layer "F.Fab") (width 0.1) (tstamp 03c39128-b12a-4dc9-8d1f-8485c719ac05))
(fp_line (start 0.1 6.5) (end 1.6 6.5) (layer "F.Fab") (width 0.1) (tstamp 5425a20c-71fa-4bed-af85-270ebcd652ac))
(fp_line (start 1.7 0.75) (end 1.7 0) (layer "F.Fab") (width 0.1) (tstamp 59a23e96-7697-4bc4-b084-c4abb945337d))
(fp_line (start 1.1 1.5) (end 1.7 0.75) (layer "F.Fab") (width 0.1) (tstamp 5dce014d-bafc-4b37-b13b-09992029d811))
(fp_line (start 0.6 1.5) (end 0 0.75) (layer "F.Fab") (width 0.1) (tstamp a6379866-5b21-4869-a693-25b8fd51e083))
(fp_line (start 0 0.75) (end 0 0) (layer "F.Fab") (width 0.1) (tstamp ac31985e-eacf-483d-bc0e-247b2509a389))
(fp_line (start 1.6 1.5) (end 0.1 1.5) (layer "F.Fab") (width 0.1) (tstamp cbe90375-0019-480a-a7ca-f3162e163dbf))
(fp_line (start 0.1 1.5) (end 0.1 6.5) (layer "F.Fab") (width 0.1) (tstamp dbcf6ecb-e6b0-4809-95a8-cf475080e838))
(pad "1" thru_hole circle (at 0 0 90) (size 1 1) (drill 0.5) (layers *.Cu *.Mask)
(net 6 "OSC32OUT") (pinfunction "1") (pintype "passive") (tstamp 4ec053f9-67fa-4c21-8e51-1fd5c675ef9c))
(pad "2" thru_hole circle (at 1.7 0 90) (size 1 1) (drill 0.5) (layers *.Cu *.Mask)
(net 5 "OSC32IN") (pinfunction "2") (pintype "passive") (tstamp 4ae97780-2833-468c-a39c-1a19a93882bd))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_DS15_D1.5mm_L5.0mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_QFP:LQFP-32_7x7mm_P0.8mm" (layer "F.Cu")
(tedit 5D9F72AF) (tstamp 8d1a4bdf-c635-4c1f-ac69-d36b596c27e5)
(at 163.825 108.475)
(descr "LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT358-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "LQFP QFP")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(path "/675ac880-19d6-4388-a8f7-627b877bfd65")
(attr smd)
(fp_text reference "U2" (at 0 -5.88) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3704a46e-3e87-4a96-a285-6d283917eb60)
)
(fp_text value "PY32F030K1xT" (at -2.65 6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b360384-97e5-4ab1-a385-702f02c0f11a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 086b27ac-a6ba-4924-9fbc-5df56f32419f)
)
(fp_line (start -3.61 -3.61) (end -3.61 -3.31) (layer "F.SilkS") (width 0.12) (tstamp 1ca10f52-fd2b-410d-b692-a2c7c4188cb4))
(fp_line (start -3.61 -3.31) (end -4.925 -3.31) (layer "F.SilkS") (width 0.12) (tstamp 27d05c36-cf12-4b75-b6eb-f3b8c5656990))
(fp_line (start -3.31 -3.61) (end -3.61 -3.61) (layer "F.SilkS") (width 0.12) (tstamp 7308bcc0-4b9d-4732-adc0-4daf632a1a1d))
(fp_line (start 3.31 -3.61) (end 3.61 -3.61) (layer "F.SilkS") (width 0.12) (tstamp 74c6431b-01e6-4900-ac36-fd022560cd3e))
(fp_line (start 3.61 -3.61) (end 3.61 -3.31) (layer "F.SilkS") (width 0.12) (tstamp 81c44bd4-deb2-4235-baa6-097fcb1b58ab))
(fp_line (start -3.31 3.61) (end -3.61 3.61) (layer "F.SilkS") (width 0.12) (tstamp 913dba8d-b991-4bc1-8eff-8c25c522b54e))
(fp_line (start 3.61 3.61) (end 3.61 3.31) (layer "F.SilkS") (width 0.12) (tstamp 980b3cba-485c-4b0c-ab36-f5d6ac0ca551))
(fp_line (start 3.31 3.61) (end 3.61 3.61) (layer "F.SilkS") (width 0.12) (tstamp cea51d85-0234-476f-a92d-36590bb96724))
(fp_line (start -3.61 3.61) (end -3.61 3.31) (layer "F.SilkS") (width 0.12) (tstamp e97a9cd3-1230-4e57-b567-6f54b160eb92))
(fp_line (start -3.75 3.3) (end -5.18 3.3) (layer "F.CrtYd") (width 0.05) (tstamp 0cce5aac-d341-4245-a952-3c86b199d06b))
(fp_line (start -3.3 5.18) (end -3.3 3.75) (layer "F.CrtYd") (width 0.05) (tstamp 16154580-b68a-4048-aa82-8fe3011bbe71))
(fp_line (start 3.3 -5.18) (end 3.3 -3.75) (layer "F.CrtYd") (width 0.05) (tstamp 164018e9-3b3e-46e0-94fc-2a0ae66991e1))
(fp_line (start 3.3 5.18) (end 3.3 3.75) (layer "F.CrtYd") (width 0.05) (tstamp 2bb13226-b679-4270-9891-6480ab32b75b))
(fp_line (start -3.75 -3.75) (end -3.75 -3.3) (layer "F.CrtYd") (width 0.05) (tstamp 2d76b1b8-2e8f-420f-946a-5c16d835c6c2))
(fp_line (start 0 5.18) (end -3.3 5.18) (layer "F.CrtYd") (width 0.05) (tstamp 30d2b26e-cd6e-4f4b-bdbd-1e5ebab250aa))
(fp_line (start 3.3 -3.75) (end 3.75 -3.75) (layer "F.CrtYd") (width 0.05) (tstamp 41b483e9-654e-435c-8b24-9702689815ff))
(fp_line (start 0 5.18) (end 3.3 5.18) (layer "F.CrtYd") (width 0.05) (tstamp 4a6651cc-ca5f-47d2-8776-d5d1d2cbc1c8))
(fp_line (start 5.18 -3.3) (end 5.18 0) (layer "F.CrtYd") (width 0.05) (tstamp 4cc7d5e6-5d5d-4eb1-b535-9032956cb4aa))
(fp_line (start -5.18 3.3) (end -5.18 0) (layer "F.CrtYd") (width 0.05) (tstamp 5886a002-7599-4332-a9d6-c55e8f6f991d))
(fp_line (start 5.18 3.3) (end 5.18 0) (layer "F.CrtYd") (width 0.05) (tstamp 5a8d43dd-eb5b-4ad1-bb9b-7f5270b1281c))
(fp_line (start 3.3 3.75) (end 3.75 3.75) (layer "F.CrtYd") (width 0.05) (tstamp 600716ff-4791-4a5b-a96d-08bf93b6565a))
(fp_line (start -3.75 -3.3) (end -5.18 -3.3) (layer "F.CrtYd") (width 0.05) (tstamp 6415602f-1a93-4ca4-910a-963b7e696b4c))
(fp_line (start -3.75 3.75) (end -3.75 3.3) (layer "F.CrtYd") (width 0.05) (tstamp 821ba60d-5065-48e8-9c78-46ef96456274))
(fp_line (start -3.3 -3.75) (end -3.75 -3.75) (layer "F.CrtYd") (width 0.05) (tstamp 8ef15622-fb8f-4243-b9cb-f2d1fb77ff7c))
(fp_line (start -5.18 -3.3) (end -5.18 0) (layer "F.CrtYd") (width 0.05) (tstamp 9c687114-3edf-4c69-a60b-8ba1a8b09696))
(fp_line (start 3.75 -3.75) (end 3.75 -3.3) (layer "F.CrtYd") (width 0.05) (tstamp c22770c6-1284-434d-834c-cbd97764763c))
(fp_line (start 3.75 3.3) (end 5.18 3.3) (layer "F.CrtYd") (width 0.05) (tstamp d55df896-f6e7-45fa-b8e1-149e688f547a))
(fp_line (start -3.3 3.75) (end -3.75 3.75) (layer "F.CrtYd") (width 0.05) (tstamp ded8de74-e745-44a8-9a33-ed3607aedcb2))
(fp_line (start 3.75 -3.3) (end 5.18 -3.3) (layer "F.CrtYd") (width 0.05) (tstamp e897a4d8-a049-4630-951f-b39c96759bb8))
(fp_line (start 0 -5.18) (end -3.3 -5.18) (layer "F.CrtYd") (width 0.05) (tstamp ec057f0c-4ecc-4d59-8cd8-d9a78e83e51d))
(fp_line (start 3.75 3.75) (end 3.75 3.3) (layer "F.CrtYd") (width 0.05) (tstamp ecefe4e7-ffac-4cc3-9362-881d476525ba))
(fp_line (start -3.3 -5.18) (end -3.3 -3.75) (layer "F.CrtYd") (width 0.05) (tstamp ed298999-9cd1-428b-b692-11647d43bb20))
(fp_line (start 0 -5.18) (end 3.3 -5.18) (layer "F.CrtYd") (width 0.05) (tstamp fbbf5fd9-91fc-481b-a726-a81539efc36c))
(fp_line (start 3.5 -3.5) (end 3.5 3.5) (layer "F.Fab") (width 0.1) (tstamp 41a59c95-a992-4361-926f-1ebeebc6c1b0))
(fp_line (start -3.5 -2.5) (end -2.5 -3.5) (layer "F.Fab") (width 0.1) (tstamp 81c782ee-ed5f-4e77-8824-4bfc6826a672))
(fp_line (start -2.5 -3.5) (end 3.5 -3.5) (layer "F.Fab") (width 0.1) (tstamp ac848f24-d183-4efb-aef2-c9ffa602c0ce))
(fp_line (start -3.5 3.5) (end -3.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp b463dd30-afa9-44c1-a1fc-ad61257a92f8))
(fp_line (start 3.5 3.5) (end -3.5 3.5) (layer "F.Fab") (width 0.1) (tstamp cc39a7ce-3f53-49d7-9158-94fa5a75d328))
(pad "1" smd roundrect (at -4.175 -2.8) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 058e8f49-941e-4682-858d-0ca05626dde2))
(pad "2" smd roundrect (at -4.175 -2) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "OSCIN") (pinfunction "OSCIN-PF0") (pintype "input") (tstamp f68bcad5-0943-43b8-a039-4a4b4e8d352b))
(pad "3" smd roundrect (at -4.175 -1.2) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "OSCOUT") (pinfunction "OSCOUT-PF1") (pintype "output") (tstamp da331f9e-6290-4a27-8202-a8351641cb96))
(pad "4" smd roundrect (at -4.175 -0.4) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "MCU_RST") (pinfunction "PF2-NRST") (pintype "input") (tstamp 4ec3db94-7d8c-489c-bc41-81ba7ab146a2))
(pad "5" smd roundrect (at -4.175 0.4) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "PF3") (pinfunction "PF3") (pintype "bidirectional") (tstamp e695bb01-263f-46b8-899f-1402f2881602))
(pad "6" smd roundrect (at -4.175 1.2) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "PA0") (pinfunction "PA0") (pintype "bidirectional") (tstamp 7924b116-f6c4-47b6-8117-3f787ae6d8f9))
(pad "7" smd roundrect (at -4.175 2) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "PA1") (pinfunction "PA1") (pintype "bidirectional") (tstamp 56600fb1-5b41-46a4-a592-22e48ee37df9))
(pad "8" smd roundrect (at -4.175 2.8) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "PA2") (pinfunction "PA2") (pintype "bidirectional") (tstamp cad28ef1-ef28-4b51-9514-f5feb4eb6dae))
(pad "9" smd roundrect (at -2.8 4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "PA3") (pinfunction "PA3") (pintype "bidirectional") (tstamp 0a563e59-44ed-4a92-8014-61aefea11b6b))
(pad "10" smd roundrect (at -2 4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "PA4") (pinfunction "PA4") (pintype "bidirectional") (tstamp 4de6ad71-3c4c-4931-b5ac-2ed79a1d6135))
(pad "11" smd roundrect (at -1.2 4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "PA5") (pinfunction "PA5") (pintype "bidirectional") (tstamp d131f5ac-ae6c-424b-abd9-0ae9de9019d8))
(pad "12" smd roundrect (at -0.4 4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "PA6") (pinfunction "PA6") (pintype "bidirectional") (tstamp 4b641bd3-bcbd-458f-8f84-91c63ffda735))
(pad "13" smd roundrect (at 0.4 4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "PA7") (pinfunction "PA7") (pintype "bidirectional") (tstamp 1425ed51-807d-4594-b874-dc66da6d8334))
(pad "14" smd roundrect (at 1.2 4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "PB0") (pinfunction "PB0") (pintype "bidirectional") (tstamp 15117c36-61b8-45a1-a92a-aedb1803b29b))
(pad "15" smd roundrect (at 2 4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "PB1") (pinfunction "PB1") (pintype "bidirectional") (tstamp 15f24bdd-05ec-46b1-b787-e8cf83e65f3b))
(pad "16" smd roundrect (at 2.8 4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "VSS") (pintype "passive") (tstamp 0a197f9a-5c5f-4952-9380-dfcc80f72d0c))
(pad "17" smd roundrect (at 4.175 2.8) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3V") (pinfunction "VCC") (pintype "power_in") (tstamp 8fc51ea5-34d9-49ce-93cc-a538f6f88181))
(pad "18" smd roundrect (at 4.175 2) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "PA8") (pinfunction "PA8") (pintype "bidirectional") (tstamp 288529c0-f011-48d1-b495-61a7ba433e25))
(pad "19" smd roundrect (at 4.175 1.2) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "OSC32OUT") (pinfunction "PA9-OSC32OUT") (pintype "bidirectional") (tstamp db369ae4-8081-448d-b1c7-53e1274e82d2))
(pad "20" smd roundrect (at 4.175 0.4) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "OSC32IN") (pinfunction "PA10-OSC32IN") (pintype "bidirectional") (tstamp e9282a70-fec6-413f-aa99-7d9554c92fd1))
(pad "21" smd roundrect (at 4.175 -0.4) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "PA11") (pinfunction "PA11") (pintype "bidirectional") (tstamp 16660581-6680-48e2-a898-961c3b0d2335))
(pad "22" smd roundrect (at 4.175 -1.2) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "PA12") (pinfunction "PA12") (pintype "bidirectional") (tstamp efc58f1d-c439-43fa-b9c8-fcb8b77719ba))
(pad "23" smd roundrect (at 4.175 -2) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "SWDIO") (pinfunction "PA13") (pintype "bidirectional") (tstamp 7e6b84ac-70b9-46c3-8f44-cf751d368bb7))
(pad "24" smd roundrect (at 4.175 -2.8) (size 1.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "SWCLK") (pinfunction "PA14") (pintype "bidirectional") (tstamp 5d41ab59-f28e-4b35-b726-ee3e5cf63966))
(pad "25" smd roundrect (at 2.8 -4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "PA15") (pinfunction "PA15") (pintype "bidirectional") (tstamp a3ac96ec-fa2e-4a4f-aa2f-d1dd0b18767b))
(pad "26" smd roundrect (at 2 -4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "PB3") (pinfunction "PB3") (pintype "bidirectional") (tstamp d004e14c-801c-4188-a261-ed42db2ab735))
(pad "27" smd roundrect (at 1.2 -4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "PB4") (pinfunction "PB4") (pintype "bidirectional") (tstamp dd7a2f83-a2db-423b-bfd9-a49aba9f38a8))
(pad "28" smd roundrect (at 0.4 -4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "PB5") (pinfunction "PB5") (pintype "bidirectional") (tstamp e3df3342-e66a-4642-ac0a-a48027565987))
(pad "29" smd roundrect (at -0.4 -4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "PB6") (pinfunction "PB6") (pintype "bidirectional") (tstamp 68cc838c-42da-4247-9885-c0bf3c7461da))
(pad "30" smd roundrect (at -1.2 -4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "PB7") (pinfunction "PB7") (pintype "bidirectional") (tstamp 8c336425-8be7-4d80-9372-816923430282))
(pad "31" smd roundrect (at -2 -4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "BOOT0") (pinfunction "PF4-BOOT0") (pintype "input") (tstamp 0ebabf62-60d8-4382-9efc-a5e949703bf0))
(pad "32" smd roundrect (at -2.8 -4.175) (size 0.5 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "VSS") (pintype "passive") (tstamp 530c9bcc-26ed-48d8-8b4c-58f7a9d3cdc4))
(model "${KICAD6_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-32_7x7mm_P0.8mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu")
(tedit 5EBA9318) (tstamp 98961307-e20e-4677-9040-cfe657dd2bf3)
(at 138.65 113.15 180)
(descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
(tags "capacitor tantalum")
(property "Sheetfile" "py32_dev.kicad_sch")
(property "Sheetname" "")
(property "Voltage" "10V")
(path "/d75c4519-14ff-4f7f-ae45-537b30c041af")
(attr smd)
(fp_text reference "C3" (at 1.61 1.87) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 502d755d-8e1f-4f6e-a021-d569048a63ea)
)
(fp_text value "10uf" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85c78f42-e9c7-4a95-820b-0c6a8c25a429)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp a0ea24b5-b049-4d55-9820-02b8bacc0b43)
)
(fp_line (start 1.6 -0.935) (end -2.485 -0.935) (layer "F.SilkS") (width 0.12) (tstamp 5fe9c825-588e-4417-a1b2-79c5440625cc))
(fp_line (start -2.485 0.935) (end 1.6 0.935) (layer "F.SilkS") (width 0.12) (tstamp b80965dd-e4c4-4c4d-9c9e-561a2c94daa1))
(fp_line (start -2.485 -0.935) (end -2.485 0.935) (layer "F.SilkS") (width 0.12) (tstamp edfe6c5e-8733-4ae8-8a97-3c90699249b8))
(fp_line (start -2.48 1.05) (end -2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 243457df-f47f-432d-b94a-578dc94e927f))
(fp_line (start -2.48 -1.05) (end 2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 4501cfdb-de24-4afe-b96f-82c57143422f))
(fp_line (start 2.48 1.05) (end -2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 88bf25d0-da4f-4148-af60-0f0f443bf29f))
(fp_line (start 2.48 -1.05) (end 2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp f62184e9-4177-491a-9d9b-dd38e4779e8b))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 1743f16d-e8c3-4364-9d66-99076e01cf27))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 6bd7c8dd-b2dd-4eb9-8884-1d250a9ce33a))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 8ec86763-3fae-43ad-ad1a-3cd6d5044e70))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp b7229b31-19ee-4ce9-a726-f07d7afc2945))