-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCH32V003-USB-DevBoard.kicad_pcb
4848 lines (4816 loc) · 239 KB
/
CH32V003-USB-DevBoard.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal "Front")
(31 "B.Cu" signal "Back")
(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")
(50 "User.1" user)
(51 "User.2" 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)
(grid_origin 100 50)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+3V3")
(net 3 "Net-(J1-CC1)")
(net 4 "USB_DP")
(net 5 "USB_DN")
(net 6 "unconnected-(J1-SBU1-PadA8)")
(net 7 "Net-(J1-CC2)")
(net 8 "unconnected-(J1-SBU2-PadB8)")
(net 9 "PA1")
(net 10 "PA2")
(net 11 "PC0")
(net 12 "PC1")
(net 13 "PC2")
(net 14 "PC3")
(net 15 "PC4")
(net 16 "PC5")
(net 17 "PC6")
(net 18 "PC7")
(net 19 "PD0")
(net 20 "SWIO")
(net 21 "PD6")
(net 22 "PD7")
(net 23 "VBUS")
(net 24 "PD5")
(net 25 "Net-(J1-D+-PadA6)")
(net 26 "Net-(J1-D--PadA7)")
(net 27 "DPU")
(net 28 "PA1_H")
(net 29 "PA2_H")
(net 30 "Net-(D1-A)")
(net 31 "Net-(D2-A)")
(net 32 "unconnected-(J1-SHIELD-PadS1)")
(footprint "Button_Switch_SMD:SW_SPST_B3U-1000P-B" (layer "F.Cu")
(tstamp 1a4dc65d-3205-4ac1-acc6-11299f9c9501)
(at 149.1132 113.0976 180)
(descr "Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, with Boss")
(tags "Tactile Switch")
(property "LCSC" "C2905188")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/c64feabf-7ed5-4334-9dab-42953bf3b6fb")
(attr smd)
(fp_text reference "SW1" (at 0 -2.5 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f243a7a3-0037-45e2-b817-edd090177fbf)
)
(fp_text value "SW_Push" (at 0 2.5 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eeb46287-e0d9-409a-b172-cb6462f0afc4)
)
(fp_text user "${REFERENCE}" (at 0 -2.5 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44ebb440-5bdf-4b9c-8602-7e1ac255691a)
)
(fp_line (start -1.65 -1.4) (end 1.65 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb2c4c12-f407-4bc4-992a-7625f29ce4f0))
(fp_line (start -1.65 -1.1) (end -1.65 -1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb9391d7-2fcc-4c33-914b-dfd3312b0bbb))
(fp_line (start -1.65 1.1) (end -1.65 1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f30f32ff-0a23-4c57-8c85-90bcede6c285))
(fp_line (start -1.65 1.4) (end 1.65 1.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc237aad-a0e1-4bd7-bcd3-36c363d22ffc))
(fp_line (start 1.65 -1.4) (end 1.65 -1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d57de82e-6e9d-4c04-87eb-d433cadb6c8b))
(fp_line (start 1.65 1.4) (end 1.65 1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65bc411b-efb7-499e-b52c-95dcdf507d84))
(fp_line (start -2.4 -1.65) (end -2.4 1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fa41d5a-6518-4d2a-9ed0-07f4cc4d6687))
(fp_line (start -2.4 1.65) (end 2.4 1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 566236dc-2dbd-4f2e-b1b5-4badb3b1777d))
(fp_line (start 2.4 -1.65) (end -2.4 -1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp edd7c8b3-1d97-441c-9c95-97a91690b2c1))
(fp_line (start 2.4 1.65) (end 2.4 -1.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c8bcc4f-4c4a-4af5-bd86-452e88260964))
(fp_line (start -1.5 -1.25) (end 1.5 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f19b745b-4c99-49b4-b44b-f02d9714b032))
(fp_line (start -1.5 1.25) (end -1.5 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed0b31c7-4cd7-4b7c-bd9b-c34f486850f2))
(fp_line (start 1.5 -1.25) (end 1.5 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ec8cce1-1267-4337-bd75-a8fe1e9e2ebc))
(fp_line (start 1.5 1.25) (end -1.5 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0f98a7f-f0a7-4eee-a0b2-163a1cf9e098))
(fp_circle (center 0 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e4cbb212-aa3c-44e7-86af-e00f7c914f8b))
(pad "" np_thru_hole circle (at 0 0 180) (size 0.8 0.8) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 7173ae9c-def9-4b20-92fe-f46a1a4364ca))
(pad "1" smd rect (at -1.7 0 180) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "1") (pintype "passive") (tstamp 1f9941a0-584d-43bd-bc23-6c5cfb7ae418))
(pad "2" smd rect (at 1.7 0 180) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "PD7") (pinfunction "2") (pintype "passive") (tstamp 32026607-cb5e-4d82-96cd-46778fcea272))
(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 "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 2020c2e2-a4f4-46c9-8910-dd03ffa8eece)
(at 145.0152 108.33)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C2941937")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/cf7de206-171d-487f-81ae-fc51d925746b")
(attr smd)
(fp_text reference "C5" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd72ec98-103e-4cc0-a449-11ff9fa0969c)
)
(fp_text value "20p" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fdfb2982-410d-45ce-be51-932af3e02e29)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 84dbd3c6-cf70-4134-bd06-3215d97e8d68)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe86a5ac-5350-4c1d-bd6d-6ed028dacd3f))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e3c2c4f-3f75-404f-ad73-27ac94b0daed))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f97407de-bd69-4f1a-b76b-440d4d1d2ef6))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9c0dd32-3500-4367-b0f2-9428b2684c74))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a38ff38-913e-4f25-b750-acec94c0d914))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 431ebc07-a486-4e2a-afce-fd123e4cfa9a))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c7d58429-5f65-44b8-8b52-7d2419528bc7))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 386869e3-0ec5-434e-93e3-4f4a44714a67))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 27799fda-0e6d-4ec1-9897-4e0bd9161105))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp a5b08465-d2ee-412f-95f4-8d7a07dafbf5))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "PA1") (pintype "passive") (tstamp 0125fbbc-fb06-4b52-a604-459383028c43))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 32ed08cc-0a39-4e58-b44f-b5cc6d2f921b)
(at 147.6066 100.3586 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C325524")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/c7486aa0-2efe-4f1d-99fd-c8c413d9fca1")
(attr smd)
(fp_text reference "R3" (at -0.1016 -0.0762 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39506eef-fdab-41e4-9e38-91d95e53d874)
)
(fp_text value "5k1" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 854edc7f-8220-495b-bdf5-81b4cee1a0e5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp ec29beee-c1b9-4961-bb1f-44b83b6065d3)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef0f90e6-f5dd-4611-8c84-dc1bacb37fd7))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3b1a621-aa90-49d5-9128-691a1b81be83))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29e5d1e3-5a11-4e64-9a9f-fb8921a15fc8))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec0d1e91-585a-4c8a-979e-1bc715e0f55c))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bcf9283a-ca8c-455d-a1d1-5a26087767e3))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 91af0c49-f88c-4cc2-b760-0f46ca61c48f))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d24da068-58fb-42dc-9926-3338d7164cef))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f39c5f36-7329-4a89-911b-792b184ade5c))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7993b4cd-9e0d-4d84-8afb-a91c03ccb2b0))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40108a83-a747-44c0-9062-dd1012921ea0))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(J1-CC2)") (pintype "passive") (tstamp 1dfe8ffb-f9fb-4dc6-9f79-31926911d744))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp defd4801-79aa-4361-94de-e9456381ad59))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 3685b9ff-6fdc-4dc1-8d6a-37da0ac892cb)
(at 147.2932 115.3226 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C203112")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/aa54bf91-fed7-49d7-8156-787e7590d761")
(attr smd)
(fp_text reference "R8" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ebc2d77-ba41-4b18-a67d-4e52b54f8203)
)
(fp_text value "120R" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0153ef6-3e2d-4ecd-b020-fd466c128b66)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp dba7542c-bbb3-4768-a0a2-320733f3e370)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8111c5a5-4ad4-401d-abd2-895ebd8267c0))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40f2a4dc-77a1-4c04-a36e-8065b083995d))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 738c2d44-6390-4fc1-888e-66e16beaf6f1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d9fd5a5-ffbe-47af-8f2f-c16d9cf1dcc2))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 332ec56c-8461-4ddb-8e56-53255a5bfba2))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d157070e-9c11-4852-96a9-1bc7308c7e41))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1216ca94-6ff6-4652-b3dc-c1683464dcaf))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d48b627-fcdc-4288-8409-17bc6bed0ad7))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0540926-11e1-46d1-bbf1-0d6e7f4aa7d9))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b1ef52e-a2c6-43b8-a0e1-27db62ba60a0))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp a0eb6293-f51a-4d14-a183-fe7a11ff8054))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "Net-(D1-A)") (pintype "passive") (tstamp 37365d67-e9fd-4d0e-acf1-ecb2d3b5eed1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 38288581-6930-447a-96e6-d5f5a5bb04bf)
(at 150.6546 100.3586 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C325524")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/c27f18aa-5039-425c-9da6-f50874415c15")
(attr smd)
(fp_text reference "R2" (at 1.9558 -0.2794 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 064abf7c-df9b-4e49-be8c-c3b5e7e15fbe)
)
(fp_text value "5k1" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0559e0f7-e24c-4d73-b63e-048060385a46)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 6a6cff9a-0c3b-4806-8571-aa03fae99f1f)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d2b7115-21ed-4b12-920b-bf75eb3de037))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e9e9991-192c-4d80-9cec-3b2c923e18e6))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d4be0ac-9bc9-40e3-9582-259d8e1db597))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d83454d-bf13-4b77-905c-7a000520938f))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ed9ae95-9c6b-4299-817e-38aa5adc3a3a))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2798c23-8326-46ae-8f9c-4552419e9f27))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c63ddc89-1e53-4819-99e6-151b403d4009))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e67140b-1300-4c6b-bee5-5dd13849bd68))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af824ae4-7fb4-455c-b02c-ea8694a3b207))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8089a0a-5ce8-4378-a027-9a2d5b074dd6))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(J1-CC1)") (pintype "passive") (tstamp bf135fb6-870b-4042-aa3d-528dde7cb0e0))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp cc9ab4c1-7272-4edb-9638-51aac2eb5e9c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 4738237d-1b1f-48d2-8c08-481e5c62a1cb)
(at 150.8532 115.3226)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C203112")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/25fd9b1f-36fb-46d3-ae04-effb26c0fee5")
(attr smd)
(fp_text reference "R9" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a5d996c-7ed6-4ca5-b7a4-1d56be5dd3fb)
)
(fp_text value "120R" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d2ee2ec-37a5-4aee-9138-fb0e45abea77)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 1e383726-1c34-4e9b-998f-d0b322b014a7)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ddebb42-0122-4778-83e3-44fd227971a5))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0410b4de-5d11-4b55-b7cd-13d543396eff))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 46f265af-99f6-40b4-8a7e-7e84168c52b0))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48d67d99-982c-437b-82b5-536626715575))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f1339d9-5c4c-408d-86d1-04a01b9a30ca))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84502f25-d44f-4e6c-a518-27b7ce4a280c))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10a4d449-d2d0-4935-b038-4e7621be797d))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19e2f792-e7d5-4651-8e78-c5677d9d77a4))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7a3a5fb-ff50-4443-b0c7-697d006108b8))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92ca3bb3-1954-47cc-a522-4d12a19099c1))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp b88eefe0-3249-4394-80d1-8d4726fe96c8))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(D2-A)") (pintype "passive") (tstamp 19bffd3a-b44b-44a6-a1c3-a0d25d147503))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 4e4c9d9c-2bd9-4497-bb84-ef2be24a1f6d)
(at 145.0152 109.35)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C2941937")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/94e7e3e7-5291-4999-831a-0a2f92922658")
(attr smd)
(fp_text reference "C4" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c995e75e-d66d-407c-a60c-356f59cc7bb1)
)
(fp_text value "20p" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00501370-b303-4670-9519-c5670481ff2a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp b27b99bf-677f-4a3c-94a1-0b50018436dd)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5eed9835-f876-4aeb-a9d3-d58a9a5f7655))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 07df7430-d763-4678-a797-370c58331973))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aafe9b79-eafc-48b9-a364-c70e5dbba53f))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 543156c4-2c88-423f-8272-e86dda03fffd))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1b4a448-040e-4c83-bcf9-093d298bba71))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 606471b2-2c6f-4c38-aa1f-9e5ac519a1ec))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28e0526e-4530-4058-b7ac-dee4008fa475))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74360dc2-71a4-4ccb-bb3a-4ded2cfefb2f))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fe6ac52b-e7e3-40bf-bd73-eead3a25bb3e))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp f6750d87-60d1-4cf6-a16d-5f8eafd536b1))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "PA2") (pintype "passive") (tstamp 2a97e9a7-0783-4375-86e1-313fed8b8679))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 5583cb35-6f39-41cf-afb9-7295c885f07e)
(at 148.59 100.35 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25105")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/2ce23a20-3fc0-41cd-a978-6f59ae9f7e9c")
(attr smd)
(fp_text reference "R4" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e40cdf95-fe1b-4579-8761-beb303bac2ee)
)
(fp_text value "33R" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36d9a375-093d-43ad-b175-d6433b2db0f9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp b53fcad0-3d17-4f8b-9975-0d5484f1cb18)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12347f5c-bde8-4cf4-9eb6-77a8fb5bb244))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d6c727f-9cf6-4bc9-b738-f8a52da90308))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d0d4e1d-c4a8-422f-b1d3-cea6bde91178))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14d1c706-9389-4b40-86e4-3e7f60eb8916))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a993f95-3488-4e21-b9c2-cfb77756556c))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c386217-a77b-4650-b2b0-f7cb88d5677d))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d523fc5e-239f-44fc-b592-d03ed72b1dd1))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 076cc0c3-7190-4eae-9117-848f174f6a04))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a945428-1582-4a6c-b1d3-f4b181208b5a))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a5b93bf-f908-4d60-b750-accbe79c5ca4))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(J1-D--PadA7)") (pintype "passive") (tstamp a45f1670-0ca9-452a-99bc-2b93a6ece9c5))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "USB_DN") (pintype "passive") (tstamp 25537f6c-a0ed-4c2e-b1a7-501848fa1b2c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 605cc494-af81-4368-916a-192ff09dcf25)
(at 145.9232 105.7426 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C52923")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/aba6c3ff-d192-4e25-b7b0-e3d97406d54b")
(attr smd)
(fp_text reference "C2" (at 1.4732 0 90) (layer "F.SilkS") hide
(effects (font (size 0.75 0.75) (thickness 0.15)))
(tstamp d6d89cbb-e699-4f9b-bc3e-63e50a267c9b)
)
(fp_text value "1u" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ccc778f3-c6dc-4e85-9124-1ad2df326f10)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp dc317d71-1dfa-488d-8384-18a86361018b)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2cf954bc-274f-4998-9f0b-30f938598f2f))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3bdc3973-2bb9-4b01-b24e-a09673365628))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 85433f01-c2b8-45c4-8ee6-771fbaa20eef))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp acf061bc-c199-4d84-9664-20573d6038ce))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 461d6688-1187-4085-9d7b-b6d4604d00f6))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fdfee23f-c4bc-4c95-a564-eda56527c97b))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a7e8b8c-5337-4d2e-ba74-f49e45cce84f))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 999e0dd4-ceb6-404f-bfdd-c03fe72df024))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e75a798d-1777-4086-9c0e-61247870431e))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8fd683be-08d5-4ce2-983a-3aeca1a6762b))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pintype "passive") (tstamp 4dec1217-64b1-4887-9688-1b032ed97523))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp b249e050-2dae-4180-ac7b-f301c423a269))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-3" (layer "F.Cu")
(tstamp 61e8637c-0235-46dd-a781-5e55676a7e88)
(at 146.0132 103.1726 90)
(descr "SOT, 3 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178D.PDF inferred 3-pin variant), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC" "C168807")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(path "/82e56a62-425e-4aea-ba9a-bd102acab661")
(attr smd)
(fp_text reference "U1" (at -1.016 0.0508 90) (layer "F.SilkS") hide
(effects (font (size 0.75 0.75) (thickness 0.153)))
(tstamp 1b971124-6d44-4b23-a5ca-a5888a443cd4)
)
(fp_text value "ME6211A33M3G-N" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2aaf5e4f-0dcf-48ab-b10f-0fd297534e2f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fb81d7f1-5d94-4a61-845a-14844ca1105c)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d572462e-2a16-45fa-af6b-1164ddd420cc))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 191cbc17-8f05-4e5c-a512-1d43335cb595))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d5c0376-72fb-4301-b2e6-757b1621a5cf))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff2c37fe-83b3-4437-b95f-0e33ebdcba06))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c114f5bc-e03f-45a6-8f47-c4a8c073c6e3))
(fp_line (start -2.05 1.7) (end 1 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8f20ecd6-5507-411a-a765-67e8cac9d3f5))
(fp_line (start 1 -1.7) (end -2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f6869cd6-ce2a-42b3-8d15-db866a8e9c84))
(fp_line (start 1 -0.5) (end 1 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b6fbe61-e75f-4275-b206-6bec62fb0849))
(fp_line (start 1 -0.5) (end 2 -0.498013)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d82a6654-8279-4a98-8423-24ceb2e33fce))
(fp_line (start 1 1.7) (end 1 0.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e6e6a27-7b35-4faf-95e6-d26febc779eb))
(fp_line (start 2 0.5) (end 1 0.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f42f0cff-9860-48dd-b345-a096c95d7384))
(fp_line (start 2 0.5) (end 2 -0.498013)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 842a9301-6dec-44fd-89a4-0393b2ddd056))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dcff05ac-855a-477b-b848-1f243d2ec14c))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f486fa5b-acc6-43b7-a56a-4a1311b885d9))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3fec930-7c01-4e5e-b90b-d3b49eb07a7b))
(fp_line (start 0.8 -1.45) (end 0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dd08d6c5-d147-4f09-a018-66697055c9a5))
(fp_line (start 0.8 1.45) (end -0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92813d88-0879-4b08-b9c6-a21bfc5d33af))
(pad "1" smd roundrect (at -1.1375 -0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp b85a38a6-fddc-4ab9-902e-88a02e985b50))
(pad "2" smd roundrect (at -1.1375 0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+3V3") (pinfunction "VOUT") (pintype "power_out") (tstamp 7a438b15-e8b7-4072-9d26-564962ac5fd7))
(pad "3" smd roundrect (at 1.1375 0 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "VBUS") (pinfunction "VIN") (pintype "power_in") (tstamp b698d294-2648-48fd-bdc7-d1917e9949aa))
(model "${KICAD7_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:SolderJumper_0402" (layer "F.Cu")
(tstamp 7a4930d8-2e9a-4e9a-a317-f4fb81eb9d10)
(at 145.015 107.05 180)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Solder Jumper, 2-pole, open")
(property "ki_keywords" "solder jumper SPST")
(path "/3f1a1fd9-e346-4a3a-8254-cf05d687308a")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "JP1" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5549e005-ea16-49a2-a9be-fc6fbe4c10bb)
)
(fp_text value "SolderJumper_2_Open" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f811c3d6-a9a3-4696-a3a1-10c0abe6f5d5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 90b8e1de-d275-4b8a-8ff1-71ebb7c9ee71)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e04d042d-7351-4c6a-993e-8508c039b3f4))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34db7eb3-2a2f-4361-aa01-93b10c05300f))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 93682007-52c8-422b-8075-812141a3d886))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68a6ec35-7e5b-4003-8045-a2e6dd59a23a))
(pad "1" smd rect (at -0.465 0 180) (size 0.63 0.64) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "PA1") (pinfunction "A") (pintype "passive") (tstamp c6917e47-be53-4c13-89d0-4940ae5b9dc6))
(pad "2" smd rect (at 0.465 0 180) (size 0.63 0.64) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "PA1_H") (pinfunction "B") (pintype "passive") (tstamp f8a36bb4-4558-4dec-9e74-dc72cffa7328))
)
(footprint "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (layer "F.Cu")
(tstamp 7c75e251-b54b-4af1-bd5f-a667c1849668)
(at 149.0582 92.945 180)
(descr "USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf")
(tags "usb usb-c 2.0 pd")
(property "LCSC" "C2927039")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB 2.0-only Type-C Receptacle connector")
(property "ki_keywords" "usb universal serial bus type-C USB2.0")
(path "/7a164891-20ad-4f35-ac45-37a7101ad11d")
(attr smd)
(fp_text reference "J1" (at -6.4 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fb18519-c3c2-4699-bc88-2c0fdbcad135)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 0 5.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c7d16fd-24d0-4668-800b-6eb7be74572f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0675dc4-6be8-44c3-9ffa-82ba3c6b2475)
)
(fp_line (start -4.7 -1.9) (end -4.7 0.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 403740c2-ffd5-4fb7-bc76-ffc8e4ed83ce))
(fp_line (start 4.7 -1.9) (end 4.7 0.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75eeed99-c4ce-4446-b1fc-fab6eea43196))
(fp_line (start -5.32 -5.27) (end -5.32 4.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3491bb2f-c917-40b4-8503-9a9229bc2739))
(fp_line (start -5.32 -5.27) (end 5.32 -5.27)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f0eaa472-a288-47dc-a0b1-7d57e3af8637))
(fp_line (start -5.32 4.15) (end 5.32 4.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c51f32ba-4dff-48a3-a314-d51028514b8d))
(fp_line (start 5.32 -5.27) (end 5.32 4.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58ae1a7a-ce9e-4ad8-b3b8-51b1ba277534))
(fp_line (start -4.47 -3.65) (end -4.47 3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3f291db-df42-4c1f-8677-31b7373171a5))
(fp_line (start -4.47 -3.65) (end 4.47 -3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e3f6300e-2e03-4996-81ed-a5d415294153))
(fp_line (start -4.47 3.65) (end 4.47 3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4db83fd-d28b-4ebe-9c14-1a772e401d2f))
(fp_line (start 4.47 -3.65) (end 4.47 3.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f595f4a7-cf23-482d-8b80-e2be696d767c))
(pad "" np_thru_hole circle (at -2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers "*.Cu" "*.Mask") (tstamp 4a644bfc-9817-4487-b19c-66fed00f8e8b))
(pad "" np_thru_hole circle (at 2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers "*.Cu" "*.Mask") (tstamp 132af756-d7eb-49ad-992f-65a0f117f54d))
(pad "A1" smd rect (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 76ed870a-2bce-447e-ba92-f6ace4ab0dec))
(pad "A4" smd rect (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 38518f0f-db84-442e-bcf7-3908cdcd1e12))
(pad "A5" smd rect (at -1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(J1-CC1)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 875f4ee6-cf49-4e2c-8e3a-376f05c582b9))
(pad "A6" smd rect (at -0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(J1-D+-PadA6)") (pinfunction "D+") (pintype "bidirectional") (tstamp 51fc0ee7-4d99-4641-bdb4-e4c511541196))
(pad "A7" smd rect (at 0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "Net-(J1-D--PadA7)") (pinfunction "D-") (pintype "bidirectional") (tstamp 8400f1fd-f45e-4f0b-bf9a-f39b3704225e))
(pad "A8" smd rect (at 1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "unconnected-(J1-SBU1-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp 36f1d9e7-8fe8-47ca-bd60-283e8c412608))
(pad "A9" smd rect (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 2e70bc1b-d4cf-4a66-903d-27b2c82c14aa))
(pad "A12" smd rect (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp c8061b15-f250-430f-957d-1d49e5d0bcaa))
(pad "B1" smd rect (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 7c610013-0ca6-4326-aa5e-dd9fabb4fbeb))
(pad "B4" smd rect (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp b4922196-71de-4a74-aadc-4ecad07396aa))
(pad "B5" smd rect (at 1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(J1-CC2)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 3a740459-e626-4ab7-a65f-7f4c9e19ff0a))
(pad "B6" smd rect (at 0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(J1-D+-PadA6)") (pinfunction "D+") (pintype "bidirectional") (tstamp 4156263c-9509-421a-9db0-10e1adb4b0bc))
(pad "B7" smd rect (at -0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "Net-(J1-D--PadA7)") (pinfunction "D-") (pintype "bidirectional") (tstamp 72001465-8f4c-43f9-8ca4-1257f959d8f7))
(pad "B8" smd rect (at -1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "unconnected-(J1-SBU2-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp 704edee6-a136-4138-a886-900cb75c9f35))
(pad "B9" smd rect (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp d204cd2d-d8df-4df1-8a50-66b1fb21796d))
(pad "B12" smd rect (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 9b8fe065-fa16-462b-aea3-7b0df471be23))
(pad "S1" thru_hole oval (at -4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(J1-SHIELD-PadS1)") (pinfunction "SHIELD") (pintype "passive+no_connect") (tstamp 07709de2-6bd6-4d07-98f2-b2abfc30fb1d))
(pad "S1" thru_hole oval (at -4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(J1-SHIELD-PadS1)") (pinfunction "SHIELD") (pintype "passive+no_connect") (tstamp 4bbf94b0-b081-4008-aa25-a1ea02edf25b))
(pad "S1" thru_hole oval (at 4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(J1-SHIELD-PadS1)") (pinfunction "SHIELD") (pintype "passive+no_connect") (tstamp 3c2670a4-3e85-44d2-939f-a3a4c003b554))
(pad "S1" thru_hole oval (at 4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(J1-SHIELD-PadS1)") (pinfunction "SHIELD") (pintype "passive+no_connect") (tstamp 22f8d7f5-927e-4ebc-9ef0-bf98ee6db0ee))
(model "${KICAD7_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 "Crystal:Crystal_SMD_2016-4Pin_2.0x1.6mm" (layer "F.Cu")
(tstamp 7d9b344e-b391-472b-89f9-39ead78df966)
(at 147.5132 108.3226 90)
(descr "SMD Crystal SERIES SMD2016/4 http://www.q-crystal.com/upload/5/2015552223166229.pdf, 2.0x1.6mm^2 package")
(tags "SMD SMT crystal")
(property "LCSC" "C2875241")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Four pin crystal, GND on pins 2 and 4, small symbol")
(property "ki_keywords" "quartz ceramic resonator oscillator")
(path "/f402f450-0689-4163-84f7-a933117a6a0c")
(attr smd)
(fp_text reference "Y1" (at 0 -2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 474cb23a-bdf7-4b82-8ec6-430e7542a6a0)
)
(fp_text value "24MHz" (at 0 2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 393482e3-48b2-41b0-8430-22ad8fbcf84f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 3cc7bc0c-6dbb-4c1f-862c-edf921e399d8)
)
(fp_line (start -1.35 -1.15) (end -1.35 1.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 39452ace-b009-47a2-b72c-2d32e002e68d))
(fp_line (start -1.35 1.15) (end 1.35 1.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df2e0d91-0f02-456d-90e7-65ffaa73bd7e))
(fp_line (start -1.4 -1.3) (end -1.4 1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f07f320-0399-46d5-8f36-bfcb592ed2db))
(fp_line (start -1.4 1.3) (end 1.4 1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63d97c2a-1f09-4b29-8391-7fa1a6d2d8e2))
(fp_line (start 1.4 -1.3) (end -1.4 -1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 118ae755-7567-4905-a0a1-26330ad6da78))
(fp_line (start 1.4 1.3) (end 1.4 -1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 851ec8f5-e389-4787-b0d6-2e75f10bb413))
(fp_line (start -1 -0.7) (end -0.9 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3fc05a54-9f7e-4e6d-92f2-336b27b191a0))
(fp_line (start -1 0.3) (end -0.5 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff539914-af35-4eac-a26d-2b23f8fe0106))
(fp_line (start -1 0.7) (end -1 -0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7a2fca8-1093-4627-b2f5-d50284dc6bf9))
(fp_line (start -0.9 -0.8) (end 0.9 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 392b6a03-a906-485b-ab49-e25a522cfd2a))
(fp_line (start -0.9 0.8) (end -1 0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a0c29bf-754a-4b7c-a9a4-a73aa1574acc))
(fp_line (start 0.9 -0.8) (end 1 -0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0c0c61f-cbbf-4e28-ab43-6e97faf99c02))
(fp_line (start 0.9 0.8) (end -0.9 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44751a70-1da8-452e-8f33-1fb4f2357e24))
(fp_line (start 1 -0.7) (end 1 0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2fd26a50-5cef-4a6a-bb73-cc87ca2f8a5d))
(fp_line (start 1 0.7) (end 0.9 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fceebf1e-52db-4c2b-bb8b-da1da10c8eb3))
(pad "1" smd rect (at -0.7 0.55 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "PA2") (pinfunction "1") (pintype "passive") (tstamp 2bdfa7bc-c8fc-412b-b8d9-783bbc5ece63))
(pad "2" smd rect (at 0.7 0.55 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "2") (pintype "passive") (tstamp a4ff77b4-d686-41d2-a550-ed677092b5ae))
(pad "3" smd rect (at 0.7 -0.55 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "PA1") (pinfunction "3") (pintype "passive") (tstamp 4f7033df-66fb-4ed1-8ce4-7aad46bc1458))
(pad "4" smd rect (at -0.7 -0.55 90) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "4") (pintype "passive") (tstamp ad7767a6-c4de-423c-9dd5-8e16344fef48))
(model "${KICAD7_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
(tstamp 80c1cc04-0e02-4168-bb65-97bab1eefaa6)
(at 152.8132 115.3226 180)
(descr "LED SMD 0402 (1005 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 "LCSC" "C165980")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode, small symbol")
(property "ki_keywords" "LED diode light-emitting-diode")
(path "/57d53e80-e9a1-49ba-97af-e3a69c2ebef3")
(attr smd)
(fp_text reference "D2" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 227316ed-2132-48d6-ab88-e7b2c161c6eb)
)
(fp_text value "LED_Small" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73d26e1a-022d-406e-a26f-61d9d2f09188)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 8dd69f0e-13ce-49fa-8a72-77394076145f)
)
(fp_circle (center -1.09 0) (end -1.04 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2839172d-a5a5-471c-844e-c5dfaa8395d0))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b2d4cd5-212e-4137-9252-d74e7fcf81f2))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 810b734d-d23d-4a78-867d-9863c9911363))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2cb3dd39-26a0-4ff9-970e-94c6ea138b7d))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d19ee198-b256-44b0-b50a-2091ffaf77b5))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7856a7be-d644-4b9b-8774-c44d5796efa3))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a0b8fc5-587f-4be4-8880-1dbe2981a900))
(fp_line (start -0.4 0.25) (end -0.4 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9eec77e4-7743-4bbe-acc0-9dee226dad9f))
(fp_line (start -0.3 0.25) (end -0.3 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea3201e6-d576-4fa0-992c-8e2f0af33109))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff7d6fd6-c2a2-4498-b16e-b4d5f9a9c067))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5cc06560-8495-43f5-b98c-4894bfe64b2a))
(pad "1" smd roundrect (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "K") (pintype "passive") (tstamp 811aa434-6c01-4c0e-8ab6-cd7dc7361ff9))
(pad "2" smd roundrect (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(D2-A)") (pinfunction "A") (pintype "passive") (tstamp 05d19f65-ab8d-4d80-9381-85d09487bfc8))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:TestPoint_01x02" (layer "F.Cu")
(tstamp 88a02012-ef08-4348-a81d-7313c6eefcc8)
(at 152.0902 100.8786 -90)
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/a9eb1a09-93f2-44b0-b7d4-28d491cbd5a2")
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "J4" (at 0 -0.5 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 153be116-0831-4654-a434-834a9ff8d0bc)
)
(fp_text value "Conn_01x01" (at 0 1 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 155c446d-f29a-4a87-b0f2-dfac46ef4939)
)
(fp_text user "${REFERENCE}" (at 0 2.5 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9208bcb-2e4c-4fae-96f3-143f7e803c36)
)
(pad "1" thru_hole circle (at -1 0 270) (size 1.3 1.3) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 4 "USB_DP") (pinfunction "Pin_1") (pintype "passive") (tstamp a6de77e6-a16f-4709-9bc4-56061dfea039))
(pad "2" thru_hole circle (at 0.8 0 270) (size 1.3 1.3) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 5 "USB_DN") (pinfunction "Pin_2") (pintype "passive") (tstamp a6b6e08b-a9d9-4090-8699-7e69631aeb12))
)
(footprint "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
(tstamp b5e8e41c-2a51-47ce-838b-5072df59059c)
(at 145.3332 115.3226)
(descr "LED SMD 0402 (1005 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 "LCSC" "C165980")
(property "Sheetfile" "CH32V003-USB-DevBoard.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode, small symbol")
(property "ki_keywords" "LED diode light-emitting-diode")
(path "/115ee274-231f-4733-94ee-272737c56def")
(attr smd)
(fp_text reference "D1" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 396aaa16-e0b0-4c91-942b-dee82d8033f1)
)
(fp_text value "LED_Small" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8132ac64-636b-41fb-bb39-f94f64cd8661)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 3326e4ab-9b81-446a-a180-b2ab98ee371b)
)
(fp_circle (center -1.09 0) (end -1.04 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp c8e9cad3-5f71-4da5-a3c0-d8749f046f89))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c16795d-2722-425e-9204-0eba2c56a405))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ddcaf47c-caf8-4bd1-9321-05f6789ed5b0))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28e1b350-272d-49b5-921d-0b3aaf68fbd7))