-
Notifications
You must be signed in to change notification settings - Fork 1
/
USB-C-FUSB302-PI.kicad_pcb
18284 lines (18213 loc) · 789 KB
/
USB-C-FUSB302-PI.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)
(1 "In1.Cu" signal)
(2 "In2.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 "prepreg") (thickness 0.1) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "core") (thickness 1.24) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "prepreg") (thickness 0.1) (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 85)
(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 4)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "docs")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/USB-C + PP/VBUS")
(net 3 "Net-(J1-CC1)")
(net 4 "Net-(J1-CC2)")
(net 5 "Net-(U2-VCC)")
(net 6 "Net-(U2-BOOT)")
(net 7 "Net-(U2-NC{slash}SW)")
(net 8 "unconnected-(U2-PG-Pad8)")
(net 9 "Net-(U2-FB)")
(net 10 "+3V3")
(net 11 "/USB-C + PP/SBU2")
(net 12 "/USB-C + PP/SBU1")
(net 13 "Net-(U302-VREG_VOUT)")
(net 14 "Net-(C312-Pad1)")
(net 15 "Net-(U302-XIN)")
(net 16 "/RP2040 CPU/RUN")
(net 17 "/RP2040 CPU/D+")
(net 18 "Net-(U302-USB_DP)")
(net 19 "/RP2040 CPU/D-")
(net 20 "Net-(U302-USB_DM)")
(net 21 "Net-(U301-~{CS})")
(net 22 "Net-(R305-Pad1)")
(net 23 "Net-(U302-XOUT)")
(net 24 "Net-(U301-DO(IO1))")
(net 25 "Net-(U301-IO2)")
(net 26 "Net-(U301-DI(IO0))")
(net 27 "Net-(U301-CLK)")
(net 28 "Net-(U301-IO3)")
(net 29 "/RP2040 CPU/I2C0_SDA")
(net 30 "/RP2040 CPU/I2C0_SCL")
(net 31 "/RP2040 CPU/I2C1_SDA")
(net 32 "/RP2040 CPU/I2C1_SCL")
(net 33 "unconnected-(U302-GPIO15-Pad18)")
(net 34 "unconnected-(U302-TESTEN-Pad19)")
(net 35 "unconnected-(U302-GPIO16-Pad27)")
(net 36 "unconnected-(U302-GPIO17-Pad28)")
(net 37 "unconnected-(U302-GPIO18-Pad29)")
(net 38 "unconnected-(U302-GPIO19-Pad30)")
(net 39 "/RP2040 CPU/GPIO22")
(net 40 "/RP2040 CPU/GPIO23")
(net 41 "/RP2040 CPU/GPIO24")
(net 42 "/RP2040 CPU/GPIO25")
(net 43 "/RP2040 CPU/ADC0")
(net 44 "/RP2040 CPU/ADC1")
(net 45 "/RP2040 CPU/ADC2")
(net 46 "/RP2040 CPU/ADC3")
(net 47 "/RP2040 CPU/GPIO2")
(net 48 "/RP2040 CPU/GPIO5")
(net 49 "/RP2040 CPU/GPIO4")
(net 50 "/RP2040 CPU/GPIO3")
(net 51 "/RP2040 CPU/GPIO21")
(net 52 "/RP2040 CPU/GPIO20")
(net 53 "/RP2040 CPU/GPIO10")
(net 54 "/RP2040 CPU/GPIO9")
(net 55 "/RP2040 CPU/GPIO8")
(net 56 "Net-(D301-A)")
(net 57 "Net-(D302-A)")
(net 58 "Net-(D303-A)")
(net 59 "Net-(D304-A)")
(net 60 "Net-(U302-GPIO11)")
(net 61 "Net-(U302-GPIO12)")
(net 62 "Net-(U302-GPIO13)")
(net 63 "Net-(U302-GPIO14)")
(net 64 "Net-(J301-Pin_1)")
(net 65 "Net-(J301-Pin_3)")
(footprint "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
(tstamp 01f318d8-ce15-4c5a-8b56-a8ee809d464d)
(at 151.5 91.5 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 "Sheetfile" "RP2040.kicad_sch")
(property "Sheetname" "RP2040 CPU")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/e8ca10c9-2e4e-44f2-bb9f-a1133a0760fa/40dbdad0-145a-4eb5-abb3-4672f9e1c7ef")
(attr smd)
(fp_text reference "D301" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ca19c2f-26db-4a70-9c5a-f7e507d3b0f4)
)
(fp_text value "TZ-P2-0402GTIA1-0.45T" (at 0 1.17) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89cc492b-4f1f-4e5d-88d6-54e71768c431)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 5ec7e867-b6da-4d1d-b492-743344c2c751)
)
(fp_circle (center -1.09 0) (end -1.04 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 944a2059-3ff3-4a65-bb64-14e16005a6c7))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7670d1c6-29c8-493f-b0ee-803d853eae25))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e220a8b7-44d6-49cc-979a-1ebdff30dece))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b45365f5-ecfb-40f1-a827-993910e1c890))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2b65aec-daf9-415f-bd25-611a8f92a106))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4e54fbe-bdd7-489b-be75-4103df96deb7))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6af8105d-d0a3-4205-b3c1-2a4e26417a6d))
(fp_line (start -0.4 0.25) (end -0.4 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca64c4a5-e7c9-4529-86f9-2bbe113261a6))
(fp_line (start -0.3 0.25) (end -0.3 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08c0f0b5-44cd-4713-b35a-89c43eef779b))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d772d5a6-b8fa-4af4-8f2b-98b447d3c3ea))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5031c953-c4c3-4e70-b8cc-67db636421c8))
(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 0aa6519f-6874-4c74-ad53-b43fef67fd17))
(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 56 "Net-(D301-A)") (pinfunction "A") (pintype "passive") (tstamp 53354a09-ded9-4402-8311-65a50baec44b))
(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 "Package_DFN_QFN:QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm" (layer "F.Cu")
(tstamp 080b33cb-88e6-4a9a-95cd-069fa467494a)
(at 147.2 85 90)
(descr "QFN, 56 Pin (https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#page=634), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "QFN NoLead")
(property "Sheetfile" "RP2040.kicad_sch")
(property "Sheetname" "RP2040 CPU")
(property "ki_description" "A microcontroller by Raspberry Pi")
(property "ki_keywords" "RP2040 ARM Cortex-M0+ USB")
(path "/e8ca10c9-2e4e-44f2-bb9f-a1133a0760fa/7fffc91f-4524-4af8-9b90-5deb11cc22d8")
(attr smd)
(fp_text reference "U302" (at 0 -4.82 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d128bf33-00b3-4661-bfbf-9c2c9eeda72f)
)
(fp_text value "RP2040" (at 0 4.82 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1045e53c-3534-4ae7-a975-6f5fe1e7195d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f486bbc-3ae1-4223-9466-4fff249bef43)
)
(fp_line (start -3.61 3.61) (end -3.61 2.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 961e9386-3fed-402d-95c8-ab3f32873ee5))
(fp_line (start -2.96 -3.61) (end -3.61 -3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee1cba10-70d8-4b7d-a23d-cb4f2d37d4a6))
(fp_line (start -2.96 3.61) (end -3.61 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3626f1c9-7fc8-48c5-94fa-4a4c9cfa1fa2))
(fp_line (start 2.96 -3.61) (end 3.61 -3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa1aa3d6-3e32-4cd8-ab11-0b1d4549706b))
(fp_line (start 2.96 3.61) (end 3.61 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4549c9e-aba6-4f26-96b3-84d24d19bb1e))
(fp_line (start 3.61 -3.61) (end 3.61 -2.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41db625c-d751-4176-b11d-00f9a65aa9d4))
(fp_line (start 3.61 3.61) (end 3.61 2.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84f8c040-2766-4ea8-a1c7-06af17d080c3))
(fp_line (start -4.12 -4.12) (end -4.12 4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36d83125-c198-4781-aeb0-a06e422a05ec))
(fp_line (start -4.12 4.12) (end 4.12 4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f237a6d-c8d4-415a-b0ef-56b81739c48b))
(fp_line (start 4.12 -4.12) (end -4.12 -4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed90f623-fcb6-4dd2-8443-06d977156948))
(fp_line (start 4.12 4.12) (end 4.12 -4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 765d80cb-078a-43a1-82cc-0a631d5bb389))
(fp_line (start -3.5 -2.5) (end -2.5 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c11ff303-2d42-4398-a9d0-d2481cac0c95))
(fp_line (start -3.5 3.5) (end -3.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64da0738-31a0-4325-9c6a-b79c91519cfd))
(fp_line (start -2.5 -3.5) (end 3.5 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68e7aec4-0d1a-42f7-accd-9a2cc898face))
(fp_line (start 3.5 -3.5) (end 3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3adef71d-e421-476c-a03f-2c775f8b8410))
(fp_line (start 3.5 3.5) (end -3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8f66431-3744-4eab-878e-7b2c17c6532e))
(pad "" smd roundrect (at -0.8 -0.8 90) (size 1.29 1.29) (layers "F.Paste") (roundrect_rratio 0.1937976744) (tstamp 0cd4e12a-d45b-40d7-b0a3-b5b9a4b64dd3))
(pad "" smd roundrect (at -0.8 0.8 90) (size 1.29 1.29) (layers "F.Paste") (roundrect_rratio 0.1937976744) (tstamp 9760ca74-62d4-4e96-ab96-1929e3b69fa5))
(pad "" smd roundrect (at 0.8 -0.8 90) (size 1.29 1.29) (layers "F.Paste") (roundrect_rratio 0.1937976744) (tstamp caec9e5c-dbbb-4459-b880-d66732bea181))
(pad "" smd roundrect (at 0.8 0.8 90) (size 1.29 1.29) (layers "F.Paste") (roundrect_rratio 0.1937976744) (tstamp 7d046cbb-af48-47a8-967b-4673d5d6d98d))
(pad "1" smd roundrect (at -3.4375 -2.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pinfunction "IOVDD") (pintype "power_in") (tstamp 583b80ab-dd7e-400a-a40e-ac1c2168ac4b))
(pad "2" smd roundrect (at -3.4375 -2.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "/RP2040 CPU/I2C0_SDA") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp a565026f-99a9-46f4-ae1b-3baf71903968))
(pad "3" smd roundrect (at -3.4375 -1.8 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/RP2040 CPU/I2C0_SCL") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp 0c6cb6eb-a21f-4aa0-9ab6-7c8ee951d6ba))
(pad "4" smd roundrect (at -3.4375 -1.4 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 47 "/RP2040 CPU/GPIO2") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp f07bd299-6704-477d-a1b5-d6a3d45ffec2))
(pad "5" smd roundrect (at -3.4375 -1 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "/RP2040 CPU/GPIO3") (pinfunction "GPIO3") (pintype "bidirectional") (tstamp a9ea3bcc-14d5-4452-81b8-56444f80b37f))
(pad "6" smd roundrect (at -3.4375 -0.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "/RP2040 CPU/GPIO4") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp 99da1ced-0634-4810-b7f7-3cf915cd9bbe))
(pad "7" smd roundrect (at -3.4375 -0.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "/RP2040 CPU/GPIO5") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 595be18a-bb4b-4090-9024-e0eecceb5045))
(pad "8" smd roundrect (at -3.4375 0.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "/RP2040 CPU/I2C1_SDA") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp d0466039-468c-4fe1-a408-07ab3e92eae8))
(pad "9" smd roundrect (at -3.4375 0.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "/RP2040 CPU/I2C1_SCL") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp 53d411e3-573c-45e0-af18-15a45b689f5e))
(pad "10" smd roundrect (at -3.4375 1 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pinfunction "IOVDD") (pintype "passive") (tstamp 4f7bf05f-89f5-4114-ac1b-9bca720e6232))
(pad "11" smd roundrect (at -3.4375 1.4 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 55 "/RP2040 CPU/GPIO8") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp 5ff2daea-63ba-4dba-a652-e335df3c6d8b))
(pad "12" smd roundrect (at -3.4375 1.8 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 54 "/RP2040 CPU/GPIO9") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp 39038328-79fa-497a-98d5-5475e2615161))
(pad "13" smd roundrect (at -3.4375 2.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 53 "/RP2040 CPU/GPIO10") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp 03efcd63-9c45-4fab-8da8-e4c5509e2a41))
(pad "14" smd roundrect (at -3.4375 2.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 60 "Net-(U302-GPIO11)") (pinfunction "GPIO11") (pintype "bidirectional") (tstamp 7296a12d-fe22-456c-89e6-d75ccc03b40c))
(pad "15" smd roundrect (at -2.6 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 61 "Net-(U302-GPIO12)") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp b7c3f441-a705-442c-8cb0-a2d9865a69d7))
(pad "16" smd roundrect (at -2.2 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 62 "Net-(U302-GPIO13)") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp a54eb804-fe7b-44da-af92-e64a3b1cd9fd))
(pad "17" smd roundrect (at -1.8 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 63 "Net-(U302-GPIO14)") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp 56389e1b-a52c-4508-ae8f-b2f1014b5114))
(pad "18" smd roundrect (at -1.4 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "unconnected-(U302-GPIO15-Pad18)") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp f6d65087-e6da-4e9c-95ed-b2d144173b98))
(pad "19" smd roundrect (at -1 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "unconnected-(U302-TESTEN-Pad19)") (pinfunction "TESTEN") (pintype "input") (tstamp 4e4ba0d8-7214-45df-aa12-1917c2c20bc3))
(pad "20" smd roundrect (at -0.6 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(U302-XIN)") (pinfunction "XIN") (pintype "input") (tstamp 305f2aea-bd64-42d7-ae8e-4c2305ec047e))
(pad "21" smd roundrect (at -0.2 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(U302-XOUT)") (pinfunction "XOUT") (pintype "passive") (tstamp 7c1a16b4-01b8-43aa-8b8d-cce8d3b934d2))
(pad "22" smd roundrect (at 0.2 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pinfunction "IOVDD") (pintype "passive") (tstamp 215ab786-5fbf-417b-a9bf-c09aaa35d74f))
(pad "23" smd roundrect (at 0.6 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(U302-VREG_VOUT)") (pinfunction "DVDD") (pintype "power_in") (tstamp 48b01568-23aa-4e98-a31a-4409a67efbe7))
(pad "24" smd roundrect (at 1 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 64 "Net-(J301-Pin_1)") (pinfunction "SWCLK") (pintype "input") (tstamp 7aed0245-483c-44e4-9735-5b8b8a7e5d60))
(pad "25" smd roundrect (at 1.4 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 65 "Net-(J301-Pin_3)") (pinfunction "SWD") (pintype "bidirectional") (tstamp 7bdb432f-912e-4e93-8d36-0e086977bc4e))
(pad "26" smd roundrect (at 1.8 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/RP2040 CPU/RUN") (pinfunction "RUN") (pintype "input") (tstamp 7e166ffe-68c6-4501-8d50-9d530eb31b89))
(pad "27" smd roundrect (at 2.2 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "unconnected-(U302-GPIO16-Pad27)") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp 3906d037-56b9-4c5e-a3ff-863aa6ca719c))
(pad "28" smd roundrect (at 2.6 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "unconnected-(U302-GPIO17-Pad28)") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp 196b8021-b178-49b1-9537-030a5a0247c7))
(pad "29" smd roundrect (at 3.4375 2.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "unconnected-(U302-GPIO18-Pad29)") (pinfunction "GPIO18") (pintype "bidirectional") (tstamp 968174f4-6699-46d7-9595-bffc9375a19d))
(pad "30" smd roundrect (at 3.4375 2.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "unconnected-(U302-GPIO19-Pad30)") (pinfunction "GPIO19") (pintype "bidirectional") (tstamp 7ab5c855-e75e-4ab1-a496-acfb0376a3cb))
(pad "31" smd roundrect (at 3.4375 1.8 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 52 "/RP2040 CPU/GPIO20") (pinfunction "GPIO20") (pintype "bidirectional") (tstamp a34a6062-93ad-41ab-aef5-9a7a8eb2c5fb))
(pad "32" smd roundrect (at 3.4375 1.4 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 51 "/RP2040 CPU/GPIO21") (pinfunction "GPIO21") (pintype "bidirectional") (tstamp 189cbae2-91ca-48f4-962a-9df6cc2f8c10))
(pad "33" smd roundrect (at 3.4375 1 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pinfunction "IOVDD") (pintype "passive") (tstamp e6c8e0e3-2ef9-4466-b551-d48de9a1c2e6))
(pad "34" smd roundrect (at 3.4375 0.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "/RP2040 CPU/GPIO22") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp 6e63adac-ac35-4878-b76f-bd0a97301d79))
(pad "35" smd roundrect (at 3.4375 0.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "/RP2040 CPU/GPIO23") (pinfunction "GPIO23") (pintype "bidirectional") (tstamp 574df5e1-92dd-4570-b4cb-00986fe4ae00))
(pad "36" smd roundrect (at 3.4375 -0.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "/RP2040 CPU/GPIO24") (pinfunction "GPIO24") (pintype "bidirectional") (tstamp 49eed194-b63d-4011-bd97-4c12fecad453))
(pad "37" smd roundrect (at 3.4375 -0.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "/RP2040 CPU/GPIO25") (pinfunction "GPIO25") (pintype "bidirectional") (tstamp 4692cecc-daf3-4f6a-b0d6-dc4007839087))
(pad "38" smd roundrect (at 3.4375 -1 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "/RP2040 CPU/ADC0") (pinfunction "GPIO26_ADC0") (pintype "bidirectional") (tstamp e543eb49-d7f5-40a6-b5bf-969994e78e78))
(pad "39" smd roundrect (at 3.4375 -1.4 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "/RP2040 CPU/ADC1") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (tstamp 1bf34399-408b-4b07-b91d-e9923e638c8d))
(pad "40" smd roundrect (at 3.4375 -1.8 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "/RP2040 CPU/ADC2") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (tstamp 9949dfcc-d611-4f4a-b260-d31b1f470186))
(pad "41" smd roundrect (at 3.4375 -2.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "/RP2040 CPU/ADC3") (pinfunction "GPIO29_ADC3") (pintype "bidirectional") (tstamp b440fe74-71a3-46f4-95e9-87f16c77c3c9))
(pad "42" smd roundrect (at 3.4375 -2.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pinfunction "IOVDD") (pintype "passive") (tstamp 0feb943a-8a3f-453b-a366-ce4c6bc3a189))
(pad "43" smd roundrect (at 2.6 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pinfunction "ADC_AVDD") (pintype "power_in") (tstamp 01bf48ae-b2fd-47f5-9b7f-ab7191951700))
(pad "44" smd roundrect (at 2.2 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pinfunction "VREG_IN") (pintype "power_in") (tstamp a150424a-f723-43f6-a81a-db9b0e1f6baa))
(pad "45" smd roundrect (at 1.8 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(U302-VREG_VOUT)") (pinfunction "VREG_VOUT") (pintype "power_out") (tstamp 5c3c52dd-8bf7-46ef-86c2-ed52e9b28d60))
(pad "46" smd roundrect (at 1.4 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(U302-USB_DM)") (pinfunction "USB_DM") (pintype "bidirectional") (tstamp 1ee3e824-9960-4939-9eb4-6e68feb5a7c3))
(pad "47" smd roundrect (at 1 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(U302-USB_DP)") (pinfunction "USB_DP") (pintype "bidirectional") (tstamp 41d73c3f-0245-4423-a75d-2b6767ca50ae))
(pad "48" smd roundrect (at 0.6 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pinfunction "USB_VDD") (pintype "power_in") (tstamp 898acf90-6079-440c-bcf3-8823852fd5fb))
(pad "49" smd roundrect (at 0.2 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pinfunction "IOVDD") (pintype "passive") (tstamp dc067b46-7e3c-409c-bbda-148652620183))
(pad "50" smd roundrect (at -0.2 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(U302-VREG_VOUT)") (pinfunction "DVDD") (pintype "passive") (tstamp da93ef1c-7f99-46a8-9631-bdd8d65e662c))
(pad "51" smd roundrect (at -0.6 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(U301-IO3)") (pinfunction "QSPI_SD3") (pintype "bidirectional") (tstamp a4f26dfd-0846-4c96-a6e9-2920f2041e0c))
(pad "52" smd roundrect (at -1 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(U301-CLK)") (pinfunction "QSPI_SCLK") (pintype "output") (tstamp e8d3fdf0-5c58-49c9-aed8-2145c79f46a7))
(pad "53" smd roundrect (at -1.4 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(U301-DI(IO0))") (pinfunction "QSPI_SD0") (pintype "bidirectional") (tstamp bdb0690a-d0ad-4c53-9915-7ad791a8997c))
(pad "54" smd roundrect (at -1.8 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "Net-(U301-IO2)") (pinfunction "QSPI_SD2") (pintype "bidirectional") (tstamp 34191ac9-4e1d-4d06-b28f-29975a4f6653))
(pad "55" smd roundrect (at -2.2 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "Net-(U301-DO(IO1))") (pinfunction "QSPI_SD1") (pintype "bidirectional") (tstamp ab34eecf-f987-4867-9356-c5dea5bb8b1c))
(pad "56" smd roundrect (at -2.6 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "Net-(U301-~{CS})") (pinfunction "QSPI_SS") (pintype "bidirectional") (tstamp eca74f0b-0ea2-4c13-8d15-cc15ef1aac91))
(pad "57" smd rect (at 0 0 90) (size 3.2 3.2) (layers "F.Cu" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 09e7db2d-450f-4843-b59c-1f2982d8d673))
(model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0201_0603Metric" (layer "F.Cu")
(tstamp 0902aa43-6eb7-4680-bf6d-c0a477f819ee)
(at 153.6 84.8 180)
(descr "Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "RP2040.kicad_sch")
(property "Sheetname" "RP2040 CPU")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/e8ca10c9-2e4e-44f2-bb9f-a1133a0760fa/ee3564cd-64df-4719-a9a3-4ca06a07e890")
(attr smd)
(fp_text reference "R306" (at 0 -1.05) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4855b26-f8a6-4220-a491-5eba344a094a)
)
(fp_text value "1K" (at 0 1.05) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb736401-f4b7-4c86-8c41-c2f2a7bfed1f)
)
(fp_text user "${REFERENCE}" (at 0 -0.68) (layer "F.Fab") hide
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp c5aadf65-27f5-457e-97e8-bb1a070b29aa)
)
(fp_line (start -0.7 -0.35) (end 0.7 -0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7ad1bb3-078c-4dca-9d1b-ceade0fbe101))
(fp_line (start -0.7 0.35) (end -0.7 -0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 410314d7-83f6-43d5-ad83-016d0885a92a))
(fp_line (start 0.7 -0.35) (end 0.7 0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9aa8b74d-eb3e-4c89-91ae-dce0337cdae1))
(fp_line (start 0.7 0.35) (end -0.7 0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9648108-d4e6-47ce-8e5d-9470ebfdcb78))
(fp_line (start -0.3 -0.15) (end 0.3 -0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fa80360-5281-4db9-92d4-d855bb6f48ba))
(fp_line (start -0.3 0.15) (end -0.3 -0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b289432e-7649-4397-ab6d-ac3d7608eafe))
(fp_line (start 0.3 -0.15) (end 0.3 0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94e0f685-a84c-45f8-9a01-41e2c54419ef))
(fp_line (start 0.3 0.15) (end -0.3 0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a643c51b-dbf2-4c30-b41d-fd7fe0f01b35))
(pad "" smd roundrect (at -0.345 0 180) (size 0.318 0.36) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 29e29cd9-c58d-4854-8cb2-3d22e7ddcca3))
(pad "" smd roundrect (at 0.345 0 180) (size 0.318 0.36) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp bc460487-9e0f-4892-998d-27ac3822b1ab))
(pad "1" smd roundrect (at -0.32 0 180) (size 0.46 0.4) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(C312-Pad1)") (pintype "passive") (tstamp 9855d6b8-7eac-4867-8515-753f433a441d))
(pad "2" smd roundrect (at 0.32 0 180) (size 0.46 0.4) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(U302-XOUT)") (pintype "passive") (tstamp b5ab82ff-a6a1-4d59-87cd-f7bdc293cd7e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0201_0603Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 09f89896-b589-45b0-9ae8-cd91c5950433)
(at 122 83.4765 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "usbc-pp.kicad_sch")
(property "Sheetname" "USB-C + PP")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/a1267e31-b4fb-453b-a92b-3733f21165a6/17d998b2-d0dc-4beb-aa3e-99e3971be574")
(attr smd)
(fp_text reference "C9" (at 0 1.588 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ecc980e-dbae-4a60-b1e2-a83205f4a807)
)
(fp_text value "4.7uF 50V X5R" (at 0 1.68 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14f079d3-fafe-41da-b6ed-8ed043f4c008)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 50461750-9688-49db-b430-093d88278e08)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8419b29d-1746-42c1-b164-84f619ce820f))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a045695d-3622-4dc9-add7-34bfc7a21e72))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16f2a3df-dda7-4a79-9981-2e17392a8012))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c6bfc19-b85b-4902-bf82-22f21845d031))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14090356-34e3-4ba6-a162-9284b1965a20))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42ff6743-fe8a-44fc-9382-8cf48486a6fe))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a93dab4-de92-40a8-8456-3d6b55a7ac13))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91d51440-9f1e-440a-87a6-48ea87239723))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d179e572-f0d0-4f4d-9325-127b49bd3894))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1539350f-f6b5-44dd-a7f9-1abb0c301733))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/USB-C + PP/VBUS") (pintype "passive") (tstamp 6492adba-264a-47f7-bccc-71a213ffabf1))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 913a9fbf-cb7c-4529-be22-12cfa9c3506d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 0c09852d-2f1f-49bb-ad5e-b88953ff47ad)
(at 118.3 85.97 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "usbc-pp.kicad_sch")
(property "Sheetname" "USB-C + PP")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/a1267e31-b4fb-453b-a92b-3733f21165a6/29876174-8d30-4b13-b9d9-dfc0f0a163bb")
(attr smd)
(fp_text reference "C20" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 912f0766-5efb-41e8-9c43-b69be78ccd90)
)
(fp_text value "1uF 10V X7S" (at 0 1.16 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ad4ce0c-a98f-4683-b9d4-5732501ab1db)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 52da9ff0-6d1f-4907-92b8-f7234c212043)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ff13e00-8cc6-42cd-922a-b410ed83c7ba))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65389044-a47b-497f-a14a-6ac00ae68a25))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp faef9443-9e6f-47f6-a42d-dd3d4de709f3))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a19a353d-ea70-4741-b94b-21bbce70e0d3))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86ffcdae-1dc8-4386-a456-e130c7803369))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8f3ba33c-ce8d-4890-b5c9-67ef5c022531))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e795e2d-f4cf-40ec-9413-81acccb8dcf1))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cbc218ea-1dee-45e8-a7cd-8a994d858d81))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b42dffcd-3b81-4dab-805c-64f27c2a29d7))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2c805a4-5cd8-4d84-bcac-27152a74e970))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pintype "passive") (tstamp 5be6f8b4-95b4-42c4-96e9-fedce5a2eb21))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 963a7155-1c2a-454d-b74f-ca9ba19a0d7c))
(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 "Inductor_SMD:L_Vishay_IHLP-2020" (layer "F.Cu")
(tstamp 151619df-fe4b-4177-bf0c-82dd9134f1e7)
(at 126 88.176501 -90)
(descr "Inductor, Vishay, IHLP series, 5.1mmx5.1mm")
(tags "inductor vishay ihlp smd")
(property "MPN" "74405042100")
(property "Sheetfile" "usbc-pp.kicad_sch")
(property "Sheetname" "USB-C + PP")
(property "ki_description" "Inductor")
(property "ki_keywords" "inductor choke coil reactor magnetic")
(path "/a1267e31-b4fb-453b-a92b-3733f21165a6/bee97c76-2453-40c9-a017-1db89c89f160")
(attr smd)
(fp_text reference "L1" (at 0 -3.54 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 614d9a84-793c-4aec-acc3-4e825665ad6c)
)
(fp_text value "6.8uH IHLP2020BZER6R8M01" (at 0 4.04 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb44de63-c29c-425d-87e6-c7d0f4c71f10)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23f45cb8-5ede-43fc-8bae-6070e4ffc974)
)
(fp_line (start -2.64 -2.64) (end 2.64 -2.64)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68a6ea97-3fd0-4963-8c73-4f9ba139a636))
(fp_line (start -2.64 -1.695) (end -2.64 -2.64)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 181e4869-c153-44d2-a750-6c047316139d))
(fp_line (start -2.64 1.695) (end -2.64 2.64)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd5fc98b-35ef-46fd-a303-7c818265444c))
(fp_line (start -2.64 2.64) (end 2.64 2.64)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3ee61f2-ff83-4a53-8c4c-9eaf6c8d26c7))
(fp_line (start 2.64 -2.64) (end 2.64 -1.695)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb52b961-21a3-4eac-8d06-c0cde58f05e3))
(fp_line (start 2.64 2.64) (end 2.64 1.695)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da4e6b1d-c1c2-47f6-ab0b-4af215ed9a04))
(fp_line (start -3.65 -2.8) (end -3.65 2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 874d6bda-142d-4045-9d2f-530ffb45bb75))
(fp_line (start -3.65 2.8) (end 3.65 2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 124a7eb5-45db-44cd-ba7c-fcebbe851f0c))
(fp_line (start 3.65 -2.8) (end -3.65 -2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 028ca932-bd83-4e94-a9ee-6f7ee945da2d))
(fp_line (start 3.65 2.8) (end 3.65 -2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a0d21a3-9965-4f7b-a2b0-9cbfb417681c))
(fp_line (start -2.54 -2.54) (end -2.54 2.54)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16bb373a-0dac-4a88-b692-e25602e42f7c))
(fp_line (start -2.54 2.54) (end 2.54 2.54)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9725eb88-b6fa-4dae-be9e-df97590f900e))
(fp_line (start 2.54 -2.54) (end -2.54 -2.54)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dac9053a-7f52-449c-8405-27d5b3051f40))
(fp_line (start 2.54 2.54) (end 2.54 -2.54)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81299595-fe67-47a0-ba80-eba8bfaa8838))
(pad "1" smd rect (at -2.4265 0 270) (size 1.903 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(U2-NC{slash}SW)") (pinfunction "1") (pintype "passive") (tstamp b214ecb2-4641-4efa-a804-03f2d6ec7355))
(pad "2" smd rect (at 2.4265 0 270) (size 1.903 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+3V3") (pinfunction "2") (pintype "passive") (tstamp c7340f89-cd01-4707-ab20-bd0c72d13e66))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_Vishay_IHLP-2020.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SON:WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm" (layer "F.Cu")
(tstamp 20b35ee8-1830-4262-ad26-bb16657a0613)
(at 138 87.7)
(descr "WSON, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf (page 68)), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "WSON NoLead")
(property "Sheetfile" "RP2040.kicad_sch")
(property "Sheetname" "RP2040 CPU")
(property "ki_description" "128Mb Serial Flash Memory, Standard/Dual/Quad SPI, SOIC-8")
(property "ki_keywords" "flash memory SPI QPI DTR")
(path "/e8ca10c9-2e4e-44f2-bb9f-a1133a0760fa/308969fc-5553-4a27-93a4-27cc2272417b")
(attr smd)
(fp_text reference "U301" (at 0 -3.45) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12cb9363-ebb9-498d-aac5-f8021adb7fab)
)
(fp_text value "W25Q128JVPIQ" (at 0 3.45) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ea58f97-0d48-4a16-a939-8ba2cdeb512d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1640a51-82f4-42c2-a971-c0e769f1a6ac)
)
(fp_line (start -3 2.61) (end 3 2.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 123e7e49-e730-438b-b69a-2893e260ed29))
(fp_line (start 0 -2.61) (end 3 -2.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c9e4b7f-4e49-42a7-8e8d-e0d3e9006d03))
(fp_line (start -3.32 -2.75) (end -3.32 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6dacf73-0983-45a2-ae9a-628039419b27))
(fp_line (start -3.32 2.75) (end 3.32 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37d8018f-d3af-4a80-8a26-44b2cdffc4b0))
(fp_line (start 3.32 -2.75) (end -3.32 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f9bf97b-f611-44a0-8b47-816f6ef11f9d))
(fp_line (start 3.32 2.75) (end 3.32 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d218fd74-09cc-4bc3-8a7e-c83741a02012))
(fp_line (start -3 -1.5) (end -2 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2cbfc47d-211e-4fdb-a3d9-4423be525d0e))
(fp_line (start -3 2.5) (end -3 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b8925dab-c874-47a9-a1a9-31a5bef8dba1))
(fp_line (start -2 -2.5) (end 3 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d979fa65-e1dd-4346-baec-f8531237c4da))
(fp_line (start 3 -2.5) (end 3 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58e980f0-d88a-4c5d-9df6-bfb37996ae2a))
(fp_line (start 3 2.5) (end -3 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 900efa2f-6bc7-43e0-804a-28019390ee53))
(pad "" smd roundrect (at -0.85 -1.075) (size 1.37 1.73) (layers "F.Paste") (roundrect_rratio 0.1824817518) (tstamp baef86db-8f37-4e29-9d4c-0c82d84350c9))
(pad "" smd roundrect (at -0.85 1.075) (size 1.37 1.73) (layers "F.Paste") (roundrect_rratio 0.1824817518) (tstamp 7c8c8283-60c3-425b-a7c1-793cffcbbdc8))
(pad "" smd roundrect (at 0.85 -1.075) (size 1.37 1.73) (layers "F.Paste") (roundrect_rratio 0.1824817518) (tstamp 62f040c5-e150-4a0d-93fc-1c2657bd2cf1))
(pad "" smd roundrect (at 0.85 1.075) (size 1.37 1.73) (layers "F.Paste") (roundrect_rratio 0.1824817518) (tstamp ac3e304d-4b97-44f5-902b-f6114f3a2e3e))
(pad "1" smd roundrect (at -2.7 -1.905) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "Net-(U301-~{CS})") (pinfunction "~{CS}") (pintype "input") (tstamp 290d65ea-970d-4559-b8d6-d2305b60469c))
(pad "2" smd roundrect (at -2.7 -0.635) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "Net-(U301-DO(IO1))") (pinfunction "DO(IO1)") (pintype "bidirectional") (tstamp 164559be-fb09-4fa1-b930-2ad142eb3dac))
(pad "3" smd roundrect (at -2.7 0.635) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "Net-(U301-IO2)") (pinfunction "IO2") (pintype "bidirectional") (tstamp 1f90f7aa-612b-4767-94ba-9819eb78081a))
(pad "4" smd roundrect (at -2.7 1.905) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9e6a3d93-4b51-4225-ba5b-a00f9289fcf5))
(pad "5" smd roundrect (at 2.7 1.905) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(U301-DI(IO0))") (pinfunction "DI(IO0)") (pintype "bidirectional") (tstamp 137f3141-044a-4de7-a1cc-43207123f7f3))
(pad "6" smd roundrect (at 2.7 0.635) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(U301-CLK)") (pinfunction "CLK") (pintype "input") (tstamp 1c12360b-23ce-4d09-ac1a-86a5b234fb39))
(pad "7" smd roundrect (at 2.7 -0.635) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(U301-IO3)") (pinfunction "IO3") (pintype "bidirectional") (tstamp 3454a046-ac3e-4878-8eaf-372da2bce9f8))
(pad "8" smd roundrect (at 2.7 -1.905) (size 0.75 0.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp fabb231b-ae83-41ca-8a3e-ffeac56408e0))
(pad "9" smd rect (at 0 0) (size 3.4 4.3) (layers "F.Cu" "F.Mask") (tstamp 914708c1-131e-435c-8094-c37a8fd5f67e))
(model "${KICAD6_3DMODEL_DIR}/Package_SON.3dshapes/WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal" (layer "F.Cu")
(tstamp 27bc8867-7657-480b-9ba3-99025a60039f)
(at 103.75 85 -90)
(descr "USB 2.0 Type C Receptacle, GCT, 16P, top mounted, horizontal, 5A: https://gct.co/files/drawings/usb4105.pdf")
(tags "USB C Type-C Receptacle SMD USB 2.0 16P 16C USB4105-15-A USB4105-15-A-060 USB4105-15-A-120 USB4105-GF-A USB4105-GF-A-060 USB4105-GF-A-120")
(property "Sheetfile" "usbc-pp.kicad_sch")
(property "Sheetname" "USB-C + PP")
(property "ki_description" "USB 2.0-only Type-C Receptacle connector")
(property "ki_keywords" "usb universal serial bus type-C USB2.0")
(path "/a1267e31-b4fb-453b-a92b-3733f21165a6/af674f09-424d-40fc-9b88-bd7b54559112")
(attr smd)
(fp_text reference "J1" (at 0 -5.5 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20a89719-4fe8-4768-b69c-69dd480d3a0f)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 0 5 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4aad3e8-4207-4dea-ab75-0a582eff8e71)
)
(fp_text user "PCB Edge" (at 0 3.1 -90 unlocked) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 46fb4f35-4167-4c32-b1ef-ba0813d4dbac)
)
(fp_text user "${REFERENCE}" (at 0 0 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96035d35-7c20-4096-9da8-8c23f77efe29)
)
(fp_line (start -4.67 0) (end -4.67 -1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7df2a1c5-75d3-4974-ace6-f8581b346d81))
(fp_line (start -4.67 2.1) (end -4.67 3.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d14f6de-6775-44fd-b288-73f9aed829c7))
(fp_line (start 4.67 0) (end 4.67 -1.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e44d61f-fbe6-4874-8bb3-7d9d65e98c94))
(fp_line (start 4.67 2.1) (end 4.67 3.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35034399-ad17-4cac-91a4-4e2f21cc5a6e))
(fp_line (start 5 3.675) (end -5 3.675)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp 65e26de3-f498-48c6-8597-b419f6282eee))
(fp_rect (start -5.32 -4.76) (end 5.32 4.18)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 9830f31e-1046-4aae-8198-422253bc6c01))
(fp_rect (start -4.47 -3.675) (end 4.47 3.675)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 4353eff5-6a37-4ea7-8feb-1d84d6ea169f))
(pad "" np_thru_hole circle (at -2.89 -2.605 270) (size 0.65 0.65) (drill 0.65) (layers "F&B.Cu" "*.Mask") (tstamp ad29c2db-93f6-4be0-b93c-abe534502ff0))
(pad "" np_thru_hole circle (at 2.89 -2.605 270) (size 0.65 0.65) (drill 0.65) (layers "F&B.Cu" "*.Mask") (tstamp 9c959121-8a30-4468-ae84-3ed26a92e996))
(pad "A1" smd rect (at -3.2 -3.68 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 027ddb8a-3762-4698-a485-011d069e77a6))
(pad "A4" smd rect (at -2.4 -3.68 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/USB-C + PP/VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp a151dcb4-b4ca-4f08-a792-3add2aa3f104))
(pad "A5" smd rect (at -1.25 -3.68 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(J1-CC1)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 210e05bb-14f9-41b8-a962-5be247fea249))
(pad "A6" smd rect (at -0.25 -3.68 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/RP2040 CPU/D+") (pinfunction "D+") (pintype "bidirectional") (tstamp 76642a36-8cae-4fd0-808b-46060a69f7b4))
(pad "A7" smd rect (at 0.25 -3.68 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/RP2040 CPU/D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 2238169a-753c-49c2-a289-ea1de8ac3014))
(pad "A8" smd rect (at 1.25 -3.68 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/USB-C + PP/SBU1") (pinfunction "SBU1") (pintype "bidirectional") (tstamp 0ab1c6ad-f8c1-438a-950b-aaefaac38805))
(pad "A9" smd rect (at 2.4 -3.68 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/USB-C + PP/VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp b200638d-5bee-47a0-808c-d3725648d554))
(pad "A12" smd rect (at 3.2 -3.68 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 9b0c9d71-0a80-4de1-8b6a-e4281f535059))
(pad "B1" smd rect (at 3.2 -3.68 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 7cd52b13-dd62-4873-8901-6ba4d2c08e34))
(pad "B4" smd rect (at 2.4 -3.68 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/USB-C + PP/VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 72d71ea5-210d-4db1-b4b4-f21abdcbde53))
(pad "B5" smd rect (at 1.75 -3.68 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(J1-CC2)") (pinfunction "CC2") (pintype "bidirectional") (tstamp cba479f1-71ef-4bd7-9d72-b7b14c901852))
(pad "B6" smd rect (at 0.75 -3.68 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/RP2040 CPU/D+") (pinfunction "D+") (pintype "bidirectional") (tstamp ffbec3ea-a859-47e7-b297-d2f8020dc2e0))
(pad "B7" smd rect (at -0.75 -3.68 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/RP2040 CPU/D-") (pinfunction "D-") (pintype "bidirectional") (tstamp de36b8b0-42f4-42fc-9c9d-76d90d5ee19f))
(pad "B8" smd rect (at -1.75 -3.68 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/USB-C + PP/SBU2") (pinfunction "SBU2") (pintype "bidirectional") (tstamp 45776dbb-3dfb-4513-b766-e74a6749f74f))
(pad "B9" smd rect (at -2.4 -3.68 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/USB-C + PP/VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 23291a23-c3e6-412f-8395-cca046c0c35d))
(pad "B12" smd rect (at -3.2 -3.68 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp d5de5732-efba-4745-81c0-9bbf0df86886))
(pad "S1" thru_hole oval (at -4.32 -3.105 270) (size 1 2.1) (drill oval 0.6 1.7) (layers "*.Cu" "*.Mask" "F.Paste")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 93af30db-d861-4bab-9bb8-69d1705c2a5e))
(pad "S1" thru_hole oval (at -4.32 1.075 270) (size 1 1.8) (drill oval 0.6 1.4) (layers "*.Cu" "*.Mask" "F.Paste")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 7c5c7c51-c4dd-4356-a6bc-62298915338d))
(pad "S1" thru_hole oval (at 4.32 -3.105 270) (size 1 2.1) (drill oval 0.6 1.7) (layers "*.Cu" "*.Mask" "F.Paste")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp f2f0613f-6bf8-48c3-88c3-c5eccd4e49ad))
(pad "S1" thru_hole oval (at 4.32 1.075 270) (size 1 1.8) (drill oval 0.6 1.4) (layers "*.Cu" "*.Mask" "F.Paste")
(net 1 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp f9e7e68b-7db1-48e3-b199-9dca61934dca))
(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 "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 2b10b877-c997-44f8-be63-f755fa3cec02)
(at 124.75 79.4765 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "usbc-pp.kicad_sch")
(property "Sheetname" "USB-C + PP")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/a1267e31-b4fb-453b-a92b-3733f21165a6/130d3f52-4bfc-489d-ae48-3879aa4a706d")
(attr smd)
(fp_text reference "C6" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7fd00f66-01bb-4201-9f97-7b3bceb1a31d)
)
(fp_text value "11pF 50V" (at 0 1.16) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 30e580c7-ca73-4dc3-af16-acf3df229cd1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 57e83d72-3890-42c4-a244-d8957219d3fd)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84388a2d-c243-446e-8faa-43507c38b4e6))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92bacc1c-a28d-4e31-85bd-2e57b6c89e00))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bec0cac3-5cb0-499b-a78c-8aed8a251eb7))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ed0420d-ff63-44b5-b5a0-94a68512e7a5))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 525fdb41-372a-431c-a0b8-0705beb26f3d))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aadb8e26-98b4-4e5a-8306-458647cc7f6a))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6e92206-fb8b-4b19-b001-5dc4262f8325))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86db6887-ed7e-46d4-a0d9-52ce84febf1e))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 693156bb-bce1-43f4-badc-e07a14f1f48e))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2bd7c1f-984f-4ed6-b9ab-b293164942c2))
(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 9 "Net-(U2-FB)") (pintype "passive") (tstamp ebfac803-6dee-471c-b0fe-aca471be1f73))
(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 10 "+3V3") (pintype "passive") (tstamp 94daef15-b7e2-4777-8512-7a45d5b55666))
(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 "usb-c:TI-RNX0012A-VQFN-HR" (layer "F.Cu")
(tstamp 2d0e27bc-3215-4937-a552-3e1ed64cb3da)
(at 126 82.2265 90)
(property "Sheetfile" "usbc-pp.kicad_sch")
(property "Sheetname" "USB-C + PP")
(path "/a1267e31-b4fb-453b-a92b-3733f21165a6/f9b50201-adbf-4023-bf6f-a88c84db8b29")
(attr smd)
(fp_text reference "U2" (at 0 -1.85 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 4f1921f8-6815-4a03-a9b3-a6b83086201a)
)
(fp_text value "LMR36006CRNX" (at 0.75 2.05 90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc115a4c-d4a2-419c-8e30-6df7f3d68816)
)
(fp_text user "${REFERENCE}" (at 0 2.5 90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51611974-7a78-43c6-968d-26cc767e5710)
)
(fp_rect (start -1.6875 0.125) (end -0.8725 -0.125)
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.Paste") (tstamp 59bca1f6-7c84-44fe-8fb4-6f84303f5c9b))
(fp_rect (start 0.115 -0.125) (end -0.7 0.125)
(stroke (width 0.01) (type solid)) (fill solid) (layer "F.Paste") (tstamp 8cfe9e3b-005a-45ec-8ff6-7303a3fafb99))
(fp_line (start -1.75 0.9) (end -1.45 1.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e14769a6-fbc6-44fa-bf31-541f5267926b))
(fp_rect (start -1.75 -1.25) (end 1.75 1.25)
(stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS") (tstamp 39e3a866-7816-46d5-8801-0168d35ec7df))
(fp_line (start -2 -1.5) (end -2 1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 471b79b0-1965-4b77-a8b1-02014de26114))
(fp_line (start -2 1.5) (end 2 1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 45d7b3d9-87d1-4fe3-a9ef-48508b65bfb2))
(fp_line (start 2 -1.5) (end -2 -1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp a6cb29d8-e941-4482-85d4-210890aa9a20))
(fp_line (start 2 1.5) (end 2 -1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp caffc2fa-54a4-48a9-ba2a-8f0855d74048))
(fp_line (start -1.5 -1) (end 1.5 -1)
(stroke (width 0.05) (type default)) (layer "F.Fab") (tstamp cf1d63d0-eef1-40b3-a6d5-b23a3426712a))
(fp_line (start -1.5 1) (end -1.5 -1)
(stroke (width 0.05) (type default)) (layer "F.Fab") (tstamp 1bbfe8b6-21cb-4f8a-a517-eaad02c76e3e))
(fp_line (start 1.5 -1) (end 1.5 -1)
(stroke (width 0.05) (type default)) (layer "F.Fab") (tstamp bec5a4fe-c2d1-4b19-934a-c575838bf0aa))
(fp_line (start 1.5 -1) (end 1.5 1)
(stroke (width 0.05) (type default)) (layer "F.Fab") (tstamp 8067519f-8c1b-4fe8-afe9-47fffe2e2a04))
(fp_line (start 1.5 1) (end -1.5 1)
(stroke (width 0.05) (type default)) (layer "F.Fab") (tstamp 6b01b734-9ed3-4434-821e-9d9f27da395e))
(fp_circle (center -1.5 1) (end -1.35 1)
(stroke (width 0.05) (type default)) (fill none) (layer "F.Fab") (tstamp 4993f1d9-b16c-428c-be91-c76440eb8d8c))
(pad "1" smd roundrect (at -1.125 0.9 90) (size 0.35 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 1 "GND") (pinfunction "PGND") (pintype "power_in") (solder_mask_margin -0.05) (solder_paste_margin -0.05) (thermal_bridge_angle 45) (tstamp bd537fe6-ba0e-4997-8b55-e0c3693e0210))
(pad "2" smd roundrect (at -0.475 0.9 90) (size 0.35 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 2 "/USB-C + PP/VBUS") (pinfunction "VIN") (pintype "power_in") (solder_mask_margin -0.05) (solder_paste_margin -0.05) (thermal_bridge_angle 45) (tstamp 81d33698-dc84-4a2f-a02b-ea9826365da9))
(pad "3" smd roundrect (at 0.175 0.9 90) (size 0.25 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 7 "Net-(U2-NC{slash}SW)") (pinfunction "NC/SW") (pintype "unspecified") (solder_mask_margin 0.05) (thermal_bridge_angle 45) (tstamp aae5b38d-8047-40f7-921b-6d6496444feb))
(pad "4" smd roundrect (at 0.675 0.9 90) (size 0.25 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 6 "Net-(U2-BOOT)") (pinfunction "BOOT") (pintype "passive") (solder_mask_margin 0.05) (thermal_bridge_angle 45) (tstamp eb6ae42e-d65a-42dd-b581-c800cf00267b))
(pad "5" smd roundrect (at 1.4 0.5 180) (size 0.25 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 5 "Net-(U2-VCC)") (pinfunction "VCC") (pintype "output") (solder_mask_margin 0.05) (thermal_bridge_angle 45) (tstamp a9dcd72a-8774-4c7e-abe2-bd6e23911047))
(pad "6" smd roundrect (at 1.4 0 180) (size 0.25 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 1 "GND") (pinfunction "AGND") (pintype "power_in") (solder_mask_margin 0.05) (thermal_bridge_angle 45) (tstamp 2b9924f0-6e19-431f-87f7-d33f3280c491))
(pad "7" smd roundrect (at 1.4 -0.5 180) (size 0.25 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 9 "Net-(U2-FB)") (pinfunction "FB") (pintype "input") (solder_mask_margin 0.05) (thermal_bridge_angle 45) (tstamp bdabcf07-d1bd-4c31-b01c-8660347a280c))
(pad "8" smd roundrect (at 0.675 -0.9 90) (size 0.25 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 8 "unconnected-(U2-PG-Pad8)") (pinfunction "PG") (pintype "open_collector") (solder_mask_margin 0.05) (thermal_bridge_angle 45) (tstamp 7b25d646-5da1-4a4b-b64a-cca6ce2673c8))
(pad "9" smd roundrect (at 0.175 -0.9 90) (size 0.25 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 2 "/USB-C + PP/VBUS") (pinfunction "EN") (pintype "input") (solder_mask_margin 0.05) (thermal_bridge_angle 45) (tstamp 226e607c-1c83-4209-acc4-ec85e11f7cf2))
(pad "10" smd roundrect (at -0.475 -0.9 90) (size 0.35 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 2 "/USB-C + PP/VBUS") (pinfunction "VIN") (pintype "power_in") (solder_mask_margin -0.05) (solder_paste_margin -0.05) (thermal_bridge_angle 45) (tstamp 02f04b62-c051-4007-ad29-27f10a2bd9be))
(pad "11" smd roundrect (at -1.125 -0.9 90) (size 0.35 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 1 "GND") (pinfunction "PGND") (pintype "power_in") (solder_mask_margin -0.05) (solder_paste_margin -0.05) (thermal_bridge_angle 45) (tstamp fb3b7d0d-5f4b-44ff-af2e-c7ab9a9f674c))
(pad "12" smd roundrect (at -0.788 0 90) (size 1.925 0.35) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.2)
(net 7 "Net-(U2-NC{slash}SW)") (pinfunction "SW") (pintype "output") (solder_mask_margin -0.05) (solder_paste_margin -0.05) (thermal_bridge_angle 45) (tstamp 4ee3c3da-1d0c-4dde-bd2a-3368e82122c2))
)
(footprint "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
(tstamp 3307df76-4d2a-49b9-8823-6eac91d31d0b)
(at 154.2 89.5 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 "Sheetfile" "RP2040.kicad_sch")
(property "Sheetname" "RP2040 CPU")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/e8ca10c9-2e4e-44f2-bb9f-a1133a0760fa/301cf822-8d05-4f72-9826-c7f4f0cfd9c8")
(attr smd)
(fp_text reference "D304" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b72e03b-7c4b-45d5-bcc7-f747953de9b5)
)
(fp_text value "TZ-P2-0402GTIA1-0.45T" (at 0 1.17) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54afbb07-ad90-4da5-962f-7be8010749d7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp f218c5a2-9841-455c-8cd5-e85e40fc544f)
)
(fp_circle (center -1.09 0) (end -1.04 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 964671e6-f8e5-4b4f-98ff-6668c22a8b57))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3257522d-4397-41ba-84c4-a3298f35a640))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f22729ad-fec5-46ad-899c-38255e34855c))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a41654c7-ee10-488b-8560-f31bb67a5d2b))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1af33791-a275-4e1c-99bf-fc69bd4fc26e))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32643cd9-d22b-444e-9284-545a70c6a020))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db54c1f7-9f24-4b94-8644-dcc1c21a0dae))
(fp_line (start -0.4 0.25) (end -0.4 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee130b53-8c88-468a-aa2e-3616bacf2b5f))
(fp_line (start -0.3 0.25) (end -0.3 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cda5ac46-8e34-4d77-9a71-ad776a9b4859))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b215d80-14f8-4d7e-a0a6-69c6a9fff14b))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9b76596-2224-4f10-991b-67304c597250))
(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 2ceab0c3-9b8a-4733-a877-b3f82bcf62f1))
(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 59 "Net-(D304-A)") (pinfunction "A") (pintype "passive") (tstamp 3834cee7-7cc6-4f5a-a07c-1330860a3b2e))
(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 "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 34f297d9-2af3-4b7e-b43e-7e2a04de4a33)
(at 124 83.4765 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "usbc-pp.kicad_sch")
(property "Sheetname" "USB-C + PP")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/a1267e31-b4fb-453b-a92b-3733f21165a6/82a0ea57-1cca-4659-a45e-1d6e1c399cd7")
(attr smd)
(fp_text reference "C3" (at 0.2 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a5f899ec-d5c5-4352-8168-b8b674c2bcb6)
)
(fp_text value "0.1uF 50V X5R" (at 0 1.16 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f6bbc04-7f02-491e-882a-ec8105ea207c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp db2a9712-017a-421c-a22a-b7ad244f046d)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1ae19ce-5385-4041-9e8e-97918026f336))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp adb8e0f5-dc6e-485d-99d4-73b013cd2d57))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3bdf75c0-1e97-4a6a-b4f8-5e0d4207881d))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e4c1c72-b101-41ec-8e6d-f58785591c07))