-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUSBPD.kicad_pcb
More file actions
8373 lines (8344 loc) · 344 KB
/
USBPD.kicad_pcb
File metadata and controls
8373 lines (8344 loc) · 344 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "+3V3")
(net 2 "+5V")
(net 3 "unconnected-(J1-Pad3)")
(net 4 "/INT")
(net 5 "unconnected-(J1-Pad5)")
(net 6 "/SDA")
(net 7 "/SCL")
(net 8 "/BTN")
(net 9 "unconnected-(J1-Pad9)")
(net 10 "GND")
(net 11 "VBUS")
(net 12 "unconnected-(J2-PadA8)")
(net 13 "unconnected-(J2-PadB8)")
(net 14 "/CC1")
(net 15 "/D_p")
(net 16 "/D_n")
(net 17 "/CC2")
(net 18 "Net-(J1-Pad2)")
(net 19 "Net-(C8-Pad1)")
(footprint "Diode_SMD:D_SOD-323" (layer "F.Cu")
(tedit 58641739) (tstamp 16e7dd30-8a60-41e6-8325-60db1ff50bda)
(at 153.162 107.95 180)
(descr "SOD-323")
(tags "SOD-323")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/aeaa725c-ae91-490d-b861-f13398929231")
(attr smd)
(fp_text reference "D4" (at -2.54 0.156) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53450cca-0496-4005-a7ef-5b1ae88fa402)
)
(fp_text value "DESD5V0U1BA-7" (at 0.1 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c41835e2-2b20-4f99-a85d-b1859480e6e6)
)
(fp_text user "${REFERENCE}" (at 0 -1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8371471-4211-4368-9dd3-157e5ded70c0)
)
(fp_line (start -1.5 -0.85) (end 1.05 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 056c9c13-522f-449c-84bd-83c95f6465a1))
(fp_line (start -1.5 -0.85) (end -1.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp 2f5f8e07-82d7-4697-8ac1-989270a8e323))
(fp_line (start -1.5 0.85) (end 1.05 0.85) (layer "F.SilkS") (width 0.12) (tstamp 74e18c92-61e9-4154-8a7c-dfbd4a946e5e))
(fp_line (start 1.6 -0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 10d4acf9-eb07-4704-a954-054e4658f650))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4572eec0-5fb0-46c6-89b0-d3341f37f9b8))
(fp_line (start -1.6 0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 51e38831-b6fe-409b-99e0-ea87fc114c30))
(fp_line (start -1.6 -0.95) (end -1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp e0c493ec-d4a1-42a2-9d32-6efc5916ca66))
(fp_line (start -0.3 0) (end 0.2 -0.35) (layer "F.Fab") (width 0.1) (tstamp 18282a1a-7012-465b-b257-9994d1176f23))
(fp_line (start 0.9 0.7) (end -0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp 1e9dcbc0-ed04-41e3-9512-fbb37cd7d179))
(fp_line (start -0.3 0) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp 29ba223f-0062-42d7-819b-390aa3bcacc3))
(fp_line (start -0.3 -0.35) (end -0.3 0.35) (layer "F.Fab") (width 0.1) (tstamp 388986aa-d9a5-485c-b2a5-20f9608e57de))
(fp_line (start -0.9 0.7) (end -0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 3aed5f29-363b-4eca-a21e-756b68fe8f23))
(fp_line (start 0.9 -0.7) (end 0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp 497283dc-5316-4045-8e79-68a8bb50f4f5))
(fp_line (start 0.2 0.35) (end -0.3 0) (layer "F.Fab") (width 0.1) (tstamp a1df41ee-57e8-4cf8-a863-aa2ac7fada82))
(fp_line (start 0.2 -0.35) (end 0.2 0.35) (layer "F.Fab") (width 0.1) (tstamp bc0c4d76-7073-443a-8935-0c1edc20eb60))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp d62b9747-f33c-4238-945e-0988aa465b71))
(fp_line (start 0.2 0) (end 0.45 0) (layer "F.Fab") (width 0.1) (tstamp e02aa7f6-3311-45f9-a392-49d8927cbc6a))
(pad "1" smd rect (at -1.05 0 180) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "GND") (pinfunction "A1") (pintype "passive") (tstamp bad15ef1-4174-4239-b07e-7b1abace56d9))
(pad "2" smd rect (at 1.05 0 180) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/D_n") (pinfunction "A2") (pintype "passive") (tstamp 3c6ce34b-07ed-4efb-887e-8dcc88f1612e))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_1.0x1.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 19f8bd0f-a3d4-4262-bf69-f47c31f1c84b)
(at 159.434 106.442)
(descr "SMD rectangular pad as test Point, square 1.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/ed8bc275-4e91-4533-8cc7-3c80db677bbc")
(attr exclude_from_pos_files)
(fp_text reference "TP1" (at -0.034 -1.592 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25e76ffc-4674-40f0-b804-940548254127)
)
(fp_text value "TestPoint" (at 0 1.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 393878ca-ed57-4a3f-837e-7218533f130a)
)
(fp_text user "${REFERENCE}" (at 0 -1.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b20378e-8f0e-4b41-bb76-544907e71fd0)
)
(fp_line (start -0.7 0.7) (end -0.7 -0.7) (layer "F.SilkS") (width 0.12) (tstamp 00bb055a-2c5a-40ac-8a94-9ec625c6ee66))
(fp_line (start -0.7 -0.7) (end 0.7 -0.7) (layer "F.SilkS") (width 0.12) (tstamp 11d0c42a-df12-4a0b-89df-89b27871caa8))
(fp_line (start 0.7 -0.7) (end 0.7 0.7) (layer "F.SilkS") (width 0.12) (tstamp 4a0c4ec9-f748-41fe-b058-21bc9c17a7d0))
(fp_line (start 0.7 0.7) (end -0.7 0.7) (layer "F.SilkS") (width 0.12) (tstamp fdb1065f-c728-4d98-bf8e-1266e86a7236))
(fp_line (start 1 1) (end -1 1) (layer "F.CrtYd") (width 0.05) (tstamp 2da0d330-c179-46cd-b53c-d2c0af9856a7))
(fp_line (start -1 -1) (end 1 -1) (layer "F.CrtYd") (width 0.05) (tstamp 3db022d1-1d97-473e-bfc1-9aedb7b3dd36))
(fp_line (start 1 1) (end 1 -1) (layer "F.CrtYd") (width 0.05) (tstamp bfbe3284-f00b-48f8-ac7e-89a1f01c604c))
(fp_line (start -1 -1) (end -1 1) (layer "F.CrtYd") (width 0.05) (tstamp f09f0e69-4f2c-484c-a9ce-164e380b83c3))
(pad "1" smd rect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(net 8 "/BTN") (pinfunction "1") (pintype "passive") (tstamp 71950078-1aeb-4f9d-baec-36694956061d))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1fb2864f-b256-46af-867a-9f8ec276c368)
(at 166.37 100.775 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/35f9a52e-305a-44cd-a902-50fefa459e3e")
(attr smd)
(fp_text reference "R1" (at -1.207 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6789269f-508b-4c18-974e-f8a726c38b08)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb985a35-2e53-4b76-baf8-d4ef6c28ee2c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 207f3b04-5d05-4d5e-a65c-613b60a18274)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 022fd48e-5adf-4517-be85-752807a48858))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 960d231c-d8b4-44a6-89ee-5c9c3c3c9d72))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0eb913cb-2e9c-477b-b795-6ef7b7345402))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8d481c59-ef0b-475d-b72b-6f104fc7b12f))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c06c08ed-6273-418a-92c2-7cd466cb5356))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c6ab7022-fdd5-4228-ba5e-68262e633141))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0df0949b-10ea-45bc-a8d2-1580cb661975))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 0fa5e5fa-9477-4712-8f05-dd168ee0455a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3596a7a0-bc62-4cd1-81e4-5bc2b77e4f2f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f0eeb323-482c-4f90-b194-d5a44bbfc1c8))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp 80e0b6ee-0969-45dc-8a07-7957911ff62d))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/SDA") (pintype "passive") (tstamp a35755c8-1f5b-4f2c-b6aa-5cb5dbb9bfba))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 452026de-8e50-4808-9136-5f6a97a1b45d)
(at 146.7 93.8)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/0b23c72d-6233-4620-ad7a-d62a50039f75")
(attr smd)
(fp_text reference "R5" (at 2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d951c0a5-9b42-4d67-ac00-495f2007046f)
)
(fp_text value "100k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp afa1751e-e16e-46ac-9280-68f743c4cfb1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3f2468d2-3f16-4836-8168-2b240bf310be)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 248a54fa-e1a2-4dd0-8532-bd7eb356055b))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8f27aea6-00b2-471f-9bdd-11ce7ec01547))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 21928825-1717-4582-bea5-3e329e0d7ab7))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9235dcc4-daea-4550-865b-9b8b1a693344))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a38564d6-d696-413b-8764-2ba669953dc0))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ded4138b-930d-42a0-98ce-3e993d09b4ce))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1d8d0af4-4ac4-4ee8-8d24-d0eed4464558))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 46e31c6f-8061-485d-ae42-39f7a2c8cc94))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7121c38a-d1b3-455e-9bd4-f7b91afc78e0))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b760868c-09a2-4584-bd20-9841c27ea2cd))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(C8-Pad1)") (pintype "passive") (tstamp c85ca0d8-7e19-4597-8fb5-3c125918947b))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pintype "passive") (tstamp 8a7a7eca-c8cf-4d20-9924-b7fb59845726))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 495255cc-4ba2-4e9c-a47f-68873ed977bf)
(at 155.1 97.525 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/3c861525-bffa-4f66-a992-362db2d7daca")
(attr smd)
(fp_text reference "C4" (at 3.048 0.028 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd472471-f193-48d5-889c-efd694d3f702)
)
(fp_text value "100n" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c511469e-d1c5-496e-ab1b-d9bdfe9a1e6d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp aa9444f9-67db-4b57-841d-ad4324b4a525)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 589039ca-2779-4520-b3e8-3f7f6261d041))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp b9fb1e52-5bfb-4074-afb5-c49d4199f8ba))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8dc186eb-86cf-41e1-8b58-fae7324b6144))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8e46ddad-6bfa-40af-b04f-edc6699bc195))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b1d0c301-b4b9-4a22-806b-1c100e83ef02))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f89ddfd4-8c5b-4ab4-8c95-e6e9a5e87dd0))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 245ce96e-de23-4c93-af58-f40e4cd70189))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8f207e00-886c-4f46-9355-3a8e7985a8d3))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b5b7cf73-4d60-464f-a67b-f4c9c9d02016))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f33894b1-3004-4ac0-b141-e83279084e93))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/CC1") (pintype "passive") (tstamp a15739ab-9211-4aeb-9603-bc7b827421d7))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pintype "passive") (tstamp baf92a55-8ef9-4ff0-acd3-40422e2bd4e3))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-323" (layer "F.Cu")
(tedit 58641739) (tstamp 5356313d-c6c9-4e43-8779-7f5954c39660)
(at 152.654 97.536 -90)
(descr "SOD-323")
(tags "SOD-323")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/807961a2-6df8-4535-8c3c-7754b70d30b1")
(attr smd)
(fp_text reference "D2" (at -3.048 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a382881d-447e-4c02-8a48-4f80e0b390fe)
)
(fp_text value "DESD5V0U1BA-7" (at 0.1 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d43221d1-87f4-4ac1-9c13-f0572b2d8d4f)
)
(fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b2e7361-0d1f-4a92-a4d0-dd4722c9bc0c)
)
(fp_line (start -1.5 0.85) (end 1.05 0.85) (layer "F.SilkS") (width 0.12) (tstamp 42460404-dc50-4148-9d5f-cac0b90af438))
(fp_line (start -1.5 -0.85) (end 1.05 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 57be4481-578e-480a-b137-dcb8fd95babf))
(fp_line (start -1.5 -0.85) (end -1.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp f9bc0e2e-b866-4474-96af-9520a16e439e))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8baf31fa-31f2-4e84-ad86-348df774f617))
(fp_line (start -1.6 0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9180d7c2-ce82-4cd5-b2d5-d944586fb090))
(fp_line (start -1.6 -0.95) (end -1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp d6359131-a990-459a-850e-6c100e2b0fca))
(fp_line (start 1.6 -0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp d854e56c-a962-466d-bce7-bfb3c9c54498))
(fp_line (start -0.3 0) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp 3f2f1aeb-24f2-4597-bbb9-54b12c752d6f))
(fp_line (start -0.9 0.7) (end -0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 68617ba5-42bf-490f-8799-0863bd897117))
(fp_line (start 0.2 0) (end 0.45 0) (layer "F.Fab") (width 0.1) (tstamp 777a7d71-7105-4515-9e2c-011e98c36c8b))
(fp_line (start 0.2 0.35) (end -0.3 0) (layer "F.Fab") (width 0.1) (tstamp 8020425b-e9f3-495c-818a-7f5fd22a8d70))
(fp_line (start 0.2 -0.35) (end 0.2 0.35) (layer "F.Fab") (width 0.1) (tstamp 88d47af8-f385-41c3-a158-4c2020d5a72a))
(fp_line (start -0.3 -0.35) (end -0.3 0.35) (layer "F.Fab") (width 0.1) (tstamp a8d0f58f-0f06-444b-8a1a-c732d79b81a2))
(fp_line (start 0.9 -0.7) (end 0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp d2eb360b-2bc4-4408-a8b3-07959277e262))
(fp_line (start -0.3 0) (end 0.2 -0.35) (layer "F.Fab") (width 0.1) (tstamp d4a14347-f106-4fab-9c3e-cd8a875c683c))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp f75ad864-f096-4907-b31d-1a5733db4331))
(fp_line (start 0.9 0.7) (end -0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp fad34361-5673-4b6b-8616-ccc33cd00c24))
(pad "1" smd rect (at -1.05 0 270) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "GND") (pinfunction "A1") (pintype "passive") (tstamp 1947ea8e-3ea5-493b-ab1c-4e8c5a675398))
(pad "2" smd rect (at 1.05 0 270) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/CC1") (pinfunction "A2") (pintype "passive") (tstamp be9bd86b-4cd5-4bd2-a31b-b062107d2a54))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 632b16bb-7a3a-406b-b31f-3b042d7f6825)
(at 146.7 92.022)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/c9502178-bda4-42ce-b975-7c3ceeef27cf")
(attr smd)
(fp_text reference "C8" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a05cb7d3-1325-48a1-ba76-574c7cd26cde)
)
(fp_text value "100n" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1998a1d6-b394-44e0-a4a2-a6bd043d3ef1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp da4e36f1-89d3-4cc4-bacc-fe98c20b36b4)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 0015ad40-b0cc-470f-8ad9-d3c136b7cf88))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp d58cd067-279d-4df2-8bec-482bc14a7635))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2be299c6-a584-4027-bb28-a6ae37366007))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4b103c9b-d467-4e9b-9965-d8396229eaee))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4c3490a2-017c-4db3-a897-fd9afea3454c))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9d4c6901-19da-4c41-807f-7bd1d35bc897))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 275ba247-63fd-4865-9f4f-dd3f66dcb1d6))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5662e8e8-85cf-4d27-801d-38b6cad12b8e))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7655160f-4fe3-496d-9076-92582a507e22))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp eb39ac99-c7d4-48c2-847c-fa792b29178a))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(C8-Pad1)") (pintype "passive") (tstamp fc265899-b2a8-4968-89f1-7d968b1f0260))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pintype "passive") (tstamp 6e56db6c-3fed-4d6b-b049-7fb909a7a76b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-323" (layer "F.Cu")
(tedit 58641739) (tstamp 67f80db7-ac30-4dde-8bf8-915428d171ed)
(at 153.162 105.918 180)
(descr "SOD-323")
(tags "SOD-323")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/f55c3a00-c7fb-4061-a626-be573bf7c8b6")
(attr smd)
(fp_text reference "D1" (at -2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe776f0b-ee51-486d-9e06-f8f16374a646)
)
(fp_text value "DESD5V0U1BA-7" (at 0.1 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55682d2e-622c-420d-9c4c-b25e379c0cee)
)
(fp_text user "${REFERENCE}" (at 0 -1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fdc927f3-9ea5-4abb-b957-1dbde7dca836)
)
(fp_line (start -1.5 -0.85) (end 1.05 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 27907456-675f-4372-8456-3255fdd1a95d))
(fp_line (start -1.5 -0.85) (end -1.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp b85d2401-b9b9-4c27-b2e2-c9d9ab116d00))
(fp_line (start -1.5 0.85) (end 1.05 0.85) (layer "F.SilkS") (width 0.12) (tstamp d50411b2-0b2f-41b7-bf8d-fb8f1d6295a1))
(fp_line (start -1.6 0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 116dcb13-d6f5-40e1-b835-53753121c5b4))
(fp_line (start 1.6 -0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9397f066-146e-4896-a893-48ef11276451))
(fp_line (start -1.6 -0.95) (end -1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp a49b3da8-6010-4095-aa91-6b927d37e1a9))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp aff84b5c-8e56-466e-b662-9df2e66e5713))
(fp_line (start 0.2 0.35) (end -0.3 0) (layer "F.Fab") (width 0.1) (tstamp 29d94e71-4a82-4acd-a9a6-3ce8158eea40))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 2b3e8080-6e59-452f-841b-e804bf3dea49))
(fp_line (start -0.9 0.7) (end -0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 4c181c82-3856-46b2-8d6b-7ada0b0e0dbd))
(fp_line (start -0.3 -0.35) (end -0.3 0.35) (layer "F.Fab") (width 0.1) (tstamp 6a680daf-5077-4fe1-a6fb-381b32e17c20))
(fp_line (start 0.2 0) (end 0.45 0) (layer "F.Fab") (width 0.1) (tstamp 7e469a82-52a7-4eb1-be03-bc9c0642b27e))
(fp_line (start 0.2 -0.35) (end 0.2 0.35) (layer "F.Fab") (width 0.1) (tstamp 95b7f2da-98e3-4cce-ac19-d396a7cb212b))
(fp_line (start -0.3 0) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp a39b3356-a010-429a-a766-68905309a2a8))
(fp_line (start 0.9 -0.7) (end 0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp d22db607-bea2-4c52-8eb6-eb70b4714d8e))
(fp_line (start -0.3 0) (end 0.2 -0.35) (layer "F.Fab") (width 0.1) (tstamp d8ac61b3-a533-4f15-9856-f7b341d352a1))
(fp_line (start 0.9 0.7) (end -0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp e50812bf-0199-4ce8-96e2-2acd9a19f7c3))
(pad "1" smd rect (at -1.05 0 180) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "GND") (pinfunction "A1") (pintype "passive") (tstamp 7055685d-2e9b-46e1-bc20-a497c53cfccc))
(pad "2" smd rect (at 1.05 0 180) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/D_p") (pinfunction "A2") (pintype "passive") (tstamp 0a3cbae7-b160-4bf5-bc29-b843867e2bbd))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_GCT_USB4085" (layer "F.Cu")
(tedit 5BCCCD93) (tstamp 6df2b435-e4ce-4dfc-bea6-cfac0e13a020)
(at 150.236 97.262 -90)
(descr "USB 2.0 Type C Receptacle, https://gct.co/Files/Drawings/USB4085.pdf")
(tags "USB Type-C Receptacle Through-hole Right angle")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/d055dcea-e66e-410e-8b11-4b8d805dcbf5")
(attr through_hole)
(fp_text reference "J2" (at 9.164 0.376 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6be0dd77-9a3b-441b-80f9-29966128c7ee)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 2.975 9.925 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3cbd370-7c22-4222-878e-9ad9b35baaf2)
)
(fp_text user "PCB Edge" (at 2.975 6.1 90) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.1)))
(tstamp 57b81c01-049c-43fa-8992-6f277ea142f0)
)
(fp_text user "${REFERENCE}" (at 2.975 4.025 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b702c303-47a1-429a-9aa3-59808061e5d8)
)
(fp_line (start -1.62 2.4) (end -1.62 3.3) (layer "F.SilkS") (width 0.12) (tstamp 0eef8052-e537-42c8-95dc-6fc299b0ba45))
(fp_line (start 7.57 2.4) (end 7.57 3.3) (layer "F.SilkS") (width 0.12) (tstamp 2b6b1ac9-f1a3-48f7-87ee-bdbf65d960d5))
(fp_line (start -1.5 -0.68) (end 7.45 -0.68) (layer "F.SilkS") (width 0.12) (tstamp 2f810e8e-2894-4c0e-8f83-841f1414bb7c))
(fp_line (start -1.62 8.73) (end 7.57 8.73) (layer "F.SilkS") (width 0.12) (tstamp 9849f984-f52a-4f3b-ade9-53c99cd43b71))
(fp_line (start 7.57 6) (end 7.57 8.73) (layer "F.SilkS") (width 0.12) (tstamp 996fc7f7-99ad-4216-a57d-020c3725e766))
(fp_line (start -1.62 6) (end -1.62 8.73) (layer "F.SilkS") (width 0.12) (tstamp f8521083-e404-4851-8f66-2328f8076009))
(fp_line (start 8.25 -1.06) (end 8.25 9.11) (layer "F.CrtYd") (width 0.05) (tstamp 0e90c804-247e-42e2-8d6f-e275eebc0a7d))
(fp_line (start -2.3 -1.06) (end 8.25 -1.06) (layer "F.CrtYd") (width 0.05) (tstamp 1248e9b2-ce25-4405-aae1-1c3e6900281c))
(fp_line (start -2.3 -1.06) (end -2.3 9.11) (layer "F.CrtYd") (width 0.05) (tstamp 4e6f3a8f-78e5-4275-9fc7-2631a3e42a8d))
(fp_line (start -2.3 9.11) (end 8.25 9.11) (layer "F.CrtYd") (width 0.05) (tstamp a5da171b-e641-4df8-8ea7-b4acf5269ee7))
(fp_line (start -1.5 -0.56) (end -1.5 8.61) (layer "F.Fab") (width 0.1) (tstamp 6c57c790-8ad9-4b83-b356-0251e34522a4))
(fp_line (start -0.025 6.1) (end 5.975 6.1) (layer "F.Fab") (width 0.1) (tstamp 76632850-7c00-44a6-a775-4e059a64fbb0))
(fp_line (start 7.45 -0.56) (end 7.45 8.61) (layer "F.Fab") (width 0.1) (tstamp 892ce45b-01af-4244-8807-bab1eea8896b))
(fp_line (start -1.5 -0.56) (end 7.45 -0.56) (layer "F.Fab") (width 0.1) (tstamp 9ac9cfe0-c315-4261-a3c4-3e5bd350d303))
(fp_line (start -1.5 8.61) (end 7.45 8.61) (layer "F.Fab") (width 0.1) (tstamp bcd3ce90-2fda-45ec-aade-2cf605aeeeea))
(pad "A1" thru_hole circle (at 0 0 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 10 "GND") (pinfunction "GND") (pintype "passive") (tstamp 8943ef13-a48e-4f3f-8043-3f9fcd6a7c80))
(pad "A4" thru_hole circle (at 0.85 0 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 22838be6-df39-4dd4-b635-e2c9cb081b5b))
(pad "A5" thru_hole circle (at 1.7 0 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 14 "/CC1") (pinfunction "CC1") (pintype "bidirectional") (tstamp c40e0ad4-06e3-477f-845b-8bd3bcc62c29))
(pad "A6" thru_hole circle (at 2.55 0 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 15 "/D_p") (pinfunction "D+") (pintype "bidirectional") (tstamp 1b881555-36a0-4fa4-8fb7-4703dbea4cde))
(pad "A7" thru_hole circle (at 3.4 0 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 16 "/D_n") (pinfunction "D-") (pintype "bidirectional") (tstamp 2d34d047-f6a2-4422-b1ae-6b0db0c493cb))
(pad "A8" thru_hole circle (at 4.25 0 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 12 "unconnected-(J2-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp bc6c30a4-5955-4d81-9273-c1aad4387e7d))
(pad "A9" thru_hole circle (at 5.1 0 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 58e89bdd-6484-4a7a-b6fb-c5a980f2ee13))
(pad "A12" thru_hole circle (at 5.95 0 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 10 "GND") (pinfunction "GND") (pintype "passive") (tstamp 62183dd4-5f20-41b8-9bee-fa816a38e413))
(pad "B1" thru_hole circle (at 5.95 1.35 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 10 "GND") (pinfunction "GND") (pintype "passive") (tstamp d32037e5-ca9f-4403-a040-cb7d43e0fe17))
(pad "B4" thru_hole circle (at 5.1 1.35 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp b063d236-ea9a-4d45-aa6d-5827e35b1a72))
(pad "B5" thru_hole circle (at 4.25 1.35 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 17 "/CC2") (pinfunction "CC2") (pintype "bidirectional") (tstamp ddce478a-143f-4366-a1f2-55a272a322c8))
(pad "B6" thru_hole circle (at 3.4 1.35 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 15 "/D_p") (pinfunction "D+") (pintype "bidirectional") (tstamp ded18b39-b671-4364-aa82-fa0586abc62c))
(pad "B7" thru_hole circle (at 2.55 1.35 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 16 "/D_n") (pinfunction "D-") (pintype "bidirectional") (tstamp b72df1a7-76aa-40f6-ad81-efba184aa2e0))
(pad "B8" thru_hole circle (at 1.7 1.35 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 13 "unconnected-(J2-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp db1e165c-90bb-4098-9f1f-d912fe5486e6))
(pad "B9" thru_hole circle (at 0.85 1.35 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 1f0b69b2-e3db-4041-b3d8-26731adb0d1c))
(pad "B12" thru_hole circle (at 0 1.35 270) (size 0.7 0.7) (drill 0.4) (layers *.Cu *.Mask)
(net 10 "GND") (pinfunction "GND") (pintype "passive") (tstamp a0463134-2f0e-4292-8695-41fef0aab869))
(pad "S1" thru_hole oval (at 7.3 4.36 270) (size 0.9 1.7) (drill oval 0.6 1.4) (layers *.Cu *.Mask)
(net 19 "Net-(C8-Pad1)") (pinfunction "SHIELD") (pintype "passive") (tstamp 02a2356b-465a-4942-aaff-9c0776b8b272))
(pad "S1" thru_hole oval (at 7.3 0.98 270) (size 0.9 2.4) (drill oval 0.6 2.1) (layers *.Cu *.Mask)
(net 19 "Net-(C8-Pad1)") (pinfunction "SHIELD") (pintype "passive") (tstamp 4edb851e-efde-494c-8fb0-e0e26c008d36))
(pad "S1" thru_hole oval (at -1.35 0.98 270) (size 0.9 2.4) (drill oval 0.6 2.1) (layers *.Cu *.Mask)
(net 19 "Net-(C8-Pad1)") (pinfunction "SHIELD") (pintype "passive") (tstamp 86dde403-4883-4242-bcef-5f73f9e5ffdd))
(pad "S1" thru_hole oval (at -1.35 4.36 270) (size 0.9 1.7) (drill oval 0.6 1.4) (layers *.Cu *.Mask)
(net 19 "Net-(C8-Pad1)") (pinfunction "SHIELD") (pintype "passive") (tstamp f569781c-dd2b-4e65-bfd9-55a4fc3b7a36))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_GCT_USB4085.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 702bcc4a-1260-4306-a7ef-df0173640909)
(at 155.1 102.35 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/daa2f944-b48f-4e1d-a28d-4efcadad7bdd")
(attr smd)
(fp_text reference "C6" (at 2.794 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d5bf990-e87a-4829-a61f-8ea7b3162465)
)
(fp_text value "100n" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5500aa7-533e-4660-a458-6bb3014c7d4e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d6487266-4010-40c8-82a0-ce8d241c85c6)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 7075a498-5749-4f19-ba7d-9b8161486d1a))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp cd5e5396-17e0-450e-8b9a-002266132cf2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4f483546-5fe1-407e-aca5-4726d4b59bdf))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8106e159-fb99-406c-bc50-06500718779d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp adad9755-afe1-4118-bfb8-41d502969aa3))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c815f8c2-60a3-41e6-9457-b1a6b30692c1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9e70a67e-a0cb-4ed7-a04f-451f35eb0aa2))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp d6d675b8-f9ac-4030-acc8-a357acd0a266))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e29ecb3b-bdd4-4ff6-80c6-b91117ba47bf))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp f52f1267-ef72-4576-80d0-5917f82db729))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/CC2") (pintype "passive") (tstamp f081c5ee-2d7c-454a-ae5e-f89b6ddc1d26))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pintype "passive") (tstamp dcff4fe4-a296-4fc0-a12d-bb6b3501faf2))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 7048b6de-9faa-47a1-99c5-b74e17a09a6e)
(at 166.37 97.536 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/030e0175-d199-4dc2-b62d-35962dae27ba")
(attr smd)
(fp_text reference "R3" (at 0.762 -1.524 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4afa5e8-9757-447e-9a26-66d5df023d71)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6ba3164-fde5-407c-b20d-e6bb69620a1b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 35fc5917-85ed-430a-af29-e1aaa9fddb54)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 27fc8656-6226-4381-8e8c-fcbb6b9cbbc0))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp f50237bb-f9c4-46da-b66f-024d10bb7b7e))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 47d22e24-7c7f-4617-a22e-884660a7a8ff))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6b24a7a2-717b-4448-a40d-7886a2ed3d71))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7dc50517-93ab-4193-ac41-8278ba10e249))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 98e246fc-6637-419f-a1a8-e2b22f10addf))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6109efee-34d5-4820-b2f1-2e5974922f54))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 97c58935-8898-41d5-af6f-2caecb03bd8b))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b10dfd5a-5d78-45f7-bb38-39704568a3b6))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp cfc3b2fc-1257-4353-9902-85cb6291fba4))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp d7ca4669-23a4-4571-85ab-fbd03c4b29b9))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/INT") (pintype "passive") (tstamp 7af1455e-5ab2-4286-8c74-1c6dee563208))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_TL3342" (layer "F.Cu")
(tedit 5A02FC95) (tstamp 84b0b8b2-eebd-4078-a6bc-b25bf702d342)
(at 162.56 110.744)
(descr "Low-profile SMD Tactile Switch, https://www.e-switch.com/system/asset/product_line/data_sheet/165/TL3342.pdf")
(tags "SPST Tactile Switch")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/76d098cd-3ce0-461f-bcf1-e246d00e149e")
(attr smd)
(fp_text reference "SW1" (at -4.86 -0.419 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e1e22d5-987d-4c53-b694-30aa0146b74c)
)
(fp_text value "SW_Push" (at 0 3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f07c750-5420-4e22-ac6d-bca40ea09f1c)
)
(fp_text user "${REFERENCE}" (at 0 -3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fcb95b37-ba67-483b-b1d1-9b2d355403a3)
)
(fp_line (start -1.7 2.3) (end -1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp 223e0c46-2b12-43e3-9fb4-9df984cc3ade))
(fp_line (start -2.75 -1) (end -2.75 1) (layer "F.SilkS") (width 0.12) (tstamp 38b85af9-bcf4-40cf-812c-9e7a05f23d68))
(fp_line (start 2.75 -1) (end 2.75 1) (layer "F.SilkS") (width 0.12) (tstamp 58417a7a-e121-4d9d-9309-d9bb138c2e8c))
(fp_line (start -1.25 -2.75) (end 1.25 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 5a26f1eb-d059-4d8a-bbbd-52ffda080a94))
(fp_line (start 1.7 2.3) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp 75c7a11c-8b79-47fa-bdd1-a66e651f0186))
(fp_line (start -1.7 -2.3) (end -1.25 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 8a89702f-f7f7-4760-ad4c-7f2a14391799))
(fp_line (start 1.7 -2.3) (end 1.25 -2.75) (layer "F.SilkS") (width 0.12) (tstamp 9afe1561-2eca-4b84-b2fb-3211f937f20e))
(fp_line (start -1.25 2.75) (end 1.25 2.75) (layer "F.SilkS") (width 0.12) (tstamp fef46d7e-25ce-4348-99b4-296f69de807f))
(fp_line (start -4.25 3) (end -4.25 -3) (layer "F.CrtYd") (width 0.05) (tstamp 470676ef-e01f-432e-8d48-d59d1f72a716))
(fp_line (start -4.25 -3) (end 4.25 -3) (layer "F.CrtYd") (width 0.05) (tstamp 90059b32-28f3-41a4-a021-f48ae697be3d))
(fp_line (start 4.25 3) (end -4.25 3) (layer "F.CrtYd") (width 0.05) (tstamp ba6672fa-4aa4-4a5e-a9ce-71aff0548ba7))
(fp_line (start 4.25 -3) (end 4.25 3) (layer "F.CrtYd") (width 0.05) (tstamp d3d2732a-f787-4e37-ad6a-7ba5afd7b841))
(fp_line (start -1.7 2.1) (end -3.2 2.1) (layer "F.Fab") (width 0.1) (tstamp 0782bbf1-9e27-4ec7-9d8a-878c6c7fc9c7))
(fp_line (start -2.6 -1.2) (end -2.6 1.2) (layer "F.Fab") (width 0.1) (tstamp 0827ac99-681f-4b73-9dc0-88d6a3758f51))
(fp_line (start 2 1) (end 1 2) (layer "F.Fab") (width 0.1) (tstamp 0aff43d1-e2da-4950-bee9-d5df179a7c62))
(fp_line (start -1.7 -2.1) (end -3.2 -2.1) (layer "F.Fab") (width 0.1) (tstamp 0b839052-931f-410e-a8b3-95f18044689d))
(fp_line (start 3.2 2.1) (end 3.2 1.6) (layer "F.Fab") (width 0.1) (tstamp 162cd8ea-3b02-4b98-a5eb-6d64f79198b9))
(fp_line (start -2.7 -2.1) (end -2.7 -1.6) (layer "F.Fab") (width 0.1) (tstamp 2a8ca137-933e-40df-bbb1-9419fc9a605d))
(fp_line (start 3.2 -1.6) (end 2.2 -1.6) (layer "F.Fab") (width 0.1) (tstamp 2fc5ea06-005f-4dfd-832f-763b4a31af33))
(fp_line (start 1.7 -2.1) (end 3.2 -2.1) (layer "F.Fab") (width 0.1) (tstamp 31f0edc8-680a-488f-8961-7802b2ab84d8))
(fp_line (start 2.6 1.2) (end 2.6 -1.2) (layer "F.Fab") (width 0.1) (tstamp 403a2ea7-2b50-4da0-ad1c-9968da78ed88))
(fp_line (start -3.2 -1.6) (end -2.2 -1.6) (layer "F.Fab") (width 0.1) (tstamp 433c9419-a1d0-4d90-9fe9-e6a8a7444e60))
(fp_line (start 1.7 2.1) (end 3.2 2.1) (layer "F.Fab") (width 0.1) (tstamp 44a86498-c549-45ca-a4b4-419b8ecf4f34))
(fp_line (start -1.2 -2.6) (end -2.6 -1.2) (layer "F.Fab") (width 0.1) (tstamp 4b62151c-8ad4-449f-912e-df05831059e9))
(fp_line (start -2.7 2.1) (end -2.7 1.6) (layer "F.Fab") (width 0.1) (tstamp 4c175aaf-b3d0-42f7-bef1-d39f08a5bc96))
(fp_line (start 2.6 -1.2) (end 1.2 -2.6) (layer "F.Fab") (width 0.1) (tstamp 4fae9854-fcaa-4d00-a29c-29e906664ab5))
(fp_line (start 1 -2) (end 2 -1) (layer "F.Fab") (width 0.1) (tstamp 62eaf06d-0c08-4ebe-884e-6f467c15fd9a))
(fp_line (start 1.2 2.6) (end 2.6 1.2) (layer "F.Fab") (width 0.1) (tstamp 6d9e0678-1f26-4d9a-8aee-a2fd6bbbd4fd))
(fp_line (start 3.2 -2.1) (end 3.2 -1.6) (layer "F.Fab") (width 0.1) (tstamp 7136d8f3-add8-4617-a653-99c354d7259e))
(fp_line (start -2.6 1.2) (end -1.2 2.6) (layer "F.Fab") (width 0.1) (tstamp 71b9d631-0674-4ffb-ac2c-895be25d7342))
(fp_line (start -2 -1) (end -1 -2) (layer "F.Fab") (width 0.1) (tstamp 937216df-033a-435b-85e8-2839b5d2e77c))
(fp_line (start 2.7 2.1) (end 2.7 1.6) (layer "F.Fab") (width 0.1) (tstamp 97f62a72-bc73-43fc-b3fa-e56e71278341))
(fp_line (start 2.7 -2.1) (end 2.7 -1.6) (layer "F.Fab") (width 0.1) (tstamp af000bf5-925b-4f7f-918e-440e74c70554))
(fp_line (start -1 -2) (end 1 -2) (layer "F.Fab") (width 0.1) (tstamp af15e6a7-27b1-4d70-bf98-c7398f329db4))
(fp_line (start -3.2 2.1) (end -3.2 1.6) (layer "F.Fab") (width 0.1) (tstamp bb6905bf-87c3-43be-97bc-373954bfd81e))
(fp_line (start -1 2) (end -2 1) (layer "F.Fab") (width 0.1) (tstamp c2246c43-c952-4324-9171-8521bbf154b9))
(fp_line (start 1.2 -2.6) (end -1.2 -2.6) (layer "F.Fab") (width 0.1) (tstamp cb89e2bd-b31e-49c4-a276-0deee3298aca))
(fp_line (start 1 2) (end -1 2) (layer "F.Fab") (width 0.1) (tstamp ce458006-3eeb-4c0e-a23e-982a89e2d2ea))
(fp_line (start -3.2 1.6) (end -2.2 1.6) (layer "F.Fab") (width 0.1) (tstamp cedf24ee-9ab1-4dc3-9201-31e9364bbd96))
(fp_line (start -1.2 2.6) (end 1.2 2.6) (layer "F.Fab") (width 0.1) (tstamp d9e33a61-d615-4e68-b81e-5fa71c43570b))
(fp_line (start -3.2 -2.1) (end -3.2 -1.6) (layer "F.Fab") (width 0.1) (tstamp e6cde7ba-6104-4808-b45b-f2df8aba8988))
(fp_line (start 3.2 1.6) (end 2.2 1.6) (layer "F.Fab") (width 0.1) (tstamp e726309c-8b2d-4049-b5a9-83b150269e9e))
(fp_line (start -2 1) (end -2 -1) (layer "F.Fab") (width 0.1) (tstamp ec9d23d1-0534-4543-bc3e-7a7f41910642))
(fp_line (start 2 -1) (end 2 1) (layer "F.Fab") (width 0.1) (tstamp fdb56a87-1cc1-4f13-af13-d2118809b23f))
(fp_circle (center 0 0) (end 1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 51d10c33-1eb3-480b-ba8e-dc1069863846))
(pad "1" smd rect (at 3.15 -1.9) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/BTN") (pinfunction "1") (pintype "passive") (tstamp 79c7feb7-471a-49de-b615-aa24bf7fd526))
(pad "1" smd rect (at -3.15 -1.9) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/BTN") (pinfunction "1") (pintype "passive") (tstamp 848d2374-c4e8-4d2f-acda-814067caaf3f))
(pad "2" smd rect (at 3.15 1.9) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "GND") (pinfunction "2") (pintype "passive") (tstamp 0f67b391-0c4e-4a17-ac5c-9b732a68e471))
(pad "2" smd rect (at -3.15 1.9) (size 1.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "GND") (pinfunction "2") (pintype "passive") (tstamp 56084c9b-7add-4fa2-adb9-1fb65cfa20f5))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_TL3342.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DFN_QFN:WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm" (layer "F.Cu")
(tedit 5DC5F6A8) (tstamp 89d60e13-aa6b-4474-8789-9af56d4d3202)
(at 161.438 100.986 90)
(descr "WQFN, 14 Pin (https://www.onsemi.com/pub/Collateral/FUSB302B-D.PDF#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "WQFN NoLead")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/98b00c9d-9188-4bce-aa70-92d12dd9cf82")
(attr smd)
(fp_text reference "U1" (at 2.794 -0.762 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7aa34934-d834-4e9c-8ff7-760c6dbff4ff)
)
(fp_text value "FUSB302BMPX" (at 0 2.55 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3c0107c-616c-41c9-a52a-23a65a88eb74)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.62 0.62) (thickness 0.09)))
(tstamp fd045709-5bc7-46ba-88b9-ec9e9e752a61)
)
(fp_line (start -1.135 1.36) (end -1.36 1.36) (layer "F.SilkS") (width 0.12) (tstamp 0f5847c8-8800-4b2b-bcdc-38372d5c201e))
(fp_line (start 1.36 -1.36) (end 1.36 -0.885) (layer "F.SilkS") (width 0.12) (tstamp 1813663a-5289-4632-9c86-86110debd5cf))
(fp_line (start 1.135 -1.36) (end 1.36 -1.36) (layer "F.SilkS") (width 0.12) (tstamp 4096c8e3-18de-4d14-8837-37b1085905cd))
(fp_line (start 1.36 1.36) (end 1.36 0.885) (layer "F.SilkS") (width 0.12) (tstamp 5bed883f-269c-4842-b306-133b3c0e4c99))
(fp_line (start -1.36 1.36) (end -1.36 0.885) (layer "F.SilkS") (width 0.12) (tstamp 89c503ab-3ca7-41ee-a265-48334e952ca8))
(fp_line (start 1.135 1.36) (end 1.36 1.36) (layer "F.SilkS") (width 0.12) (tstamp a3c2d6d0-f497-43e2-b013-1ab2144ebe69))
(fp_line (start -1.135 -1.36) (end -1.36 -1.36) (layer "F.SilkS") (width 0.12) (tstamp d78b5a65-1fde-4ebc-9dc2-78efbddd07eb))
(fp_line (start -1.85 1.85) (end 1.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 0955f3b4-e011-4448-a9d1-5ce23dba85b9))
(fp_line (start -1.85 -1.85) (end -1.85 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 2e14c269-852c-4387-93d7-b55d032d3510))
(fp_line (start 1.85 -1.85) (end -1.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 33b46bec-5f99-469c-b9ef-87b9e130750a))
(fp_line (start 1.85 1.85) (end 1.85 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp d5701db0-4e02-415a-9d7b-c12658ad8078))
(fp_line (start 1.25 1.25) (end -1.25 1.25) (layer "F.Fab") (width 0.1) (tstamp 120e4ed9-18e6-4f8b-9956-75004885aa94))
(fp_line (start -1.25 -0.625) (end -0.625 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7008e248-661c-4c7c-b274-d987c71690ff))
(fp_line (start -1.25 1.25) (end -1.25 -0.625) (layer "F.Fab") (width 0.1) (tstamp 74533a9e-591a-415d-88a9-e4b95f02a9c4))
(fp_line (start -0.625 -1.25) (end 1.25 -1.25) (layer "F.Fab") (width 0.1) (tstamp 8200d3ec-6774-4a75-ac6a-eb4cf4098bf4))
(fp_line (start 1.25 -1.25) (end 1.25 1.25) (layer "F.Fab") (width 0.1) (tstamp eaa3f6bf-38b4-49e2-a6c5-e35451af8923))
(pad "" smd roundrect (at 0.36 0.36 90) (size 0.58 0.58) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 1e99a8bb-f22d-44d8-9f8e-4374ce678a46))
(pad "" smd roundrect (at 0.36 -0.36 90) (size 0.58 0.58) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 73061b98-71f1-4aa5-ba0b-8c3a26582e96))
(pad "" smd roundrect (at -0.36 0.36 90) (size 0.58 0.58) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 91d4a16d-06c7-4624-8996-ad3e9d06ec87))
(pad "" smd roundrect (at -0.36 -0.36 90) (size 0.58 0.58) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp ccdf8d8f-7080-4519-bb70-8191b1eb247b))
(pad "1" smd roundrect (at -1.2625 -0.5 90) (size 0.675 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/CC2") (pinfunction "CC2") (pintype "bidirectional") (tstamp b20a01f8-d4ca-45cd-81ca-aa725eda74ee))
(pad "2" smd roundrect (at -1.2625 0 90) (size 0.675 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "VBUS") (pinfunction "VBUS") (pintype "input") (tstamp bd777e39-53f5-4fa2-98a3-2f3894a3d5f7))
(pad "3" smd roundrect (at -1.2625 0.5 90) (size 0.675 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp f4cb3ee5-91d0-487e-992f-01f2a10cb111))
(pad "4" smd roundrect (at -0.75 1.2625 90) (size 0.25 0.675) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pinfunction "VDD") (pintype "passive") (tstamp 9fb3c755-8c22-4290-98d8-79b510709e1a))
(pad "5" smd roundrect (at -0.25 1.2625 90) (size 0.25 0.675) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/INT") (pinfunction "INT_N") (pintype "open_collector") (tstamp 6eacf6ae-d78c-48de-8a6d-9bdd8ce04620))
(pad "6" smd roundrect (at 0.25 1.2625 90) (size 0.25 0.675) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/SCL") (pinfunction "SCL") (pintype "input") (tstamp 38c1900a-5c63-45f1-9890-0b700a888ab6))
(pad "7" smd roundrect (at 0.75 1.2625 90) (size 0.25 0.675) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/SDA") (pinfunction "SDA") (pintype "bidirectional") (tstamp 9965bd4c-d926-4336-a838-8abdffcad262))
(pad "8" smd roundrect (at 1.2625 0.5 90) (size 0.675 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 472da5a0-705d-4029-a223-21e66297fddd))
(pad "9" smd roundrect (at 1.2625 0 90) (size 0.675 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pinfunction "GND") (pintype "passive") (tstamp 17b0d1c8-2c7e-4e8e-a6d4-af773760ea8c))
(pad "10" smd roundrect (at 1.2625 -0.5 90) (size 0.675 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/CC1") (pinfunction "CC1") (pintype "bidirectional") (tstamp 688b3b28-12a1-4cb3-9081-50f7c318cb71))
(pad "11" smd roundrect (at 0.75 -1.2625 90) (size 0.25 0.675) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/CC1") (pinfunction "CC1") (pintype "bidirectional") (tstamp 25b2320c-bad6-483e-9f81-bbc8be690cdd))
(pad "12" smd roundrect (at 0.25 -1.2625 90) (size 0.25 0.675) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+5V") (pinfunction "VCONN") (pintype "power_in") (tstamp 397cd0d0-ec81-466e-aecd-d2ceee76e173))
(pad "13" smd roundrect (at -0.25 -1.2625 90) (size 0.25 0.675) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+5V") (pinfunction "VCONN") (pintype "power_in") (tstamp c010ff5b-3074-4de3-ad62-04fd0f280a41))
(pad "14" smd roundrect (at -0.75 -1.2625 90) (size 0.25 0.675) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/CC2") (pinfunction "CC2") (pintype "bidirectional") (tstamp 6baf2211-be40-4a80-bb62-d72128787f05))
(pad "15" smd rect (at 0 0 90) (size 1.45 1.45) (layers "F.Cu" "F.Mask")
(net 10 "GND") (pinfunction "GND") (pintype "passive") (tstamp 22a5460d-3962-49b1-bc95-93493cc56635))
(model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 8a80af2d-ce13-4b11-8a6d-9856813678bd)
(at 164.8395 101.346 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/164bd13a-1a70-40fe-aded-c145d5c285c2")
(attr smd)
(fp_text reference "C2" (at -2.286 -0.2475 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18772a97-fc71-460d-b717-9449db055c90)
)
(fp_text value "1u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 049a81eb-a1e0-4ed0-b066-8d01132f517e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d32ff0d3-6db2-4544-ab69-6c0b14790da2)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 738c73ca-416f-4cdc-b135-180d4d696484))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 7590e24b-577c-4fcd-9e1f-ab45b189df19))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 06a29087-be12-4782-ab0c-68019175faac))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b7529180-b981-4b46-93d8-91bc4911cdab))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ba1ab41c-bcc1-4114-96ed-6de21e86cec1))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fe1bd8e9-7e87-4635-aee4-ff9ac1345deb))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 2be23707-43d6-4159-94ab-fc7f4974c9b7))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 34b6b129-a76c-4a62-91cc-2743f5f4b2c4))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 975ff309-e329-4b51-a1c6-9bae2657c1a6))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp afd20e7b-0c57-49fa-a2aa-4d47f56f629d))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp e34767e1-a29c-42c3-8abb-ef0a479b6adf))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pintype "passive") (tstamp e0fafb5a-7612-49f2-857e-07a48cf36c67))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 8c946516-07f3-48e0-9a90-30c429b5aa84)
(at 164.846 106.95)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/284abe0f-35f5-43e9-ba6c-4aa6f2e56eae")
(attr smd)
(fp_text reference "C7" (at 2.286 -0.27 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59c6209b-3ca3-4097-83ca-6f9d7fdb3c4e)
)
(fp_text value "100n" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce65f771-03bf-4ae3-a636-bd4a895a5c83)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 298bb122-8a00-4fb7-acc8-4ec15292a91d)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp aa0dc5c0-1049-41f5-9b25-ffe3fc76df3d))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp e85f7126-516f-4adb-88d9-af1e0bdb3dcc))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0f31309c-7a53-47c2-a273-aa83f5aacdc2))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 31a89c87-6603-4946-a728-cc9d4e9bb19a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp aaf75246-0c46-438b-aad7-7223b80838d7))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ac8410bb-c1fd-421b-b114-b526b6976fd5))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0fddb405-d9a0-4821-8177-d6df84758594))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 24cccc75-b742-4743-98ed-833e956ec597))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 465b9fda-1d5a-45cd-91c6-9bb23ea431a6))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7b37a69c-1c87-4d77-a608-78b7c30a59f6))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/BTN") (pintype "passive") (tstamp 972f24ab-25b1-46dc-80ee-d4ed5e8bbc6d))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "GND") (pintype "passive") (tstamp c28727a8-02d0-46fe-a169-fc00f4a0ce1e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 8e9a4489-85ec-43fe-986c-21edc7905a4a)
(at 162.052 105.997 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/66df2cf3-8fc6-4ec2-b873-4f5fe0c582e7")
(attr smd)
(fp_text reference "R4" (at -1.857 -0.508 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp faf85d19-f922-435b-ab2a-84b8a0c34146)
)
(fp_text value "47k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36f2c6f1-6a2d-43f8-9098-4ee41a20ee01)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 2632d1e0-447d-4175-baa1-d3c21fc0721e)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 6b1c622d-baf1-4b0e-bebd-6b9908b265b1))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8bf4b12f-ebb6-4afa-b59f-b956da0fa7a2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0f69664e-5a79-435d-8c8e-ab466061e0e5))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4707e0dc-000e-48b3-83f5-68fba3da1f93))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ec0f35e7-4677-40cd-ac29-9a526c4f0d8c))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f4f3cef6-901c-4eaa-a819-0783a137619e))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 71a458c8-93c9-458d-a74a-6e9f404c0eab))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 846c7d53-77b6-4db1-b79b-695f40566951))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 97d6ec14-e2da-4df9-8934-1f5a4e53b4f9))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp cd8e8739-bb0a-4820-b47d-da208d7ab3fa))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp caec647b-99d3-41fd-b37c-b5145ff92a14))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/BTN") (pintype "passive") (tstamp bd9dd9e0-71d2-4d94-8016-7cb875748a46))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-323" (layer "F.Cu")
(tedit 58641739) (tstamp a95d1158-4fd7-4b29-842d-f674925ed1fa)
(at 152.654 102.362 -90)
(descr "SOD-323")
(tags "SOD-323")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/f4255bde-787e-4816-acad-f7427bbfb215")
(attr smd)
(fp_text reference "D3" (at 2.113 -0.371) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 4dee428b-9873-45f7-9e00-b3849b95bf1c)
)
(fp_text value "DESD5V0U1BA-7" (at 0.1 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c96c3a49-3f05-45b3-9f34-07e1339feb50)
)
(fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b0df787-46aa-47b2-a11b-96df99f09a2e)
)
(fp_line (start -1.5 -0.85) (end 1.05 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 3d219812-261f-4741-b119-3a36b9052a99))
(fp_line (start -1.5 -0.85) (end -1.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp 7d6807f0-5c24-4921-bebf-780c435de47a))
(fp_line (start -1.5 0.85) (end 1.05 0.85) (layer "F.SilkS") (width 0.12) (tstamp 9b9495fa-3f87-4963-9a1b-e0a11c6e50cd))
(fp_line (start -1.6 -0.95) (end 1.6 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 23714fc1-59db-4500-9d38-af86ea69fe3f))
(fp_line (start 1.6 -0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9ea636a1-ff23-411e-b275-b6f4b33edb43))
(fp_line (start -1.6 0.95) (end 1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp a991215c-d7f8-4d74-b4fb-3a6d0eed12fe))
(fp_line (start -1.6 -0.95) (end -1.6 0.95) (layer "F.CrtYd") (width 0.05) (tstamp a9d015c2-a71b-46ad-b3a4-6eea7301ee51))
(fp_line (start -0.9 0.7) (end -0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 141d55e7-f9fa-486e-a08c-0c5785aa9581))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 5c6b1739-bddf-40c7-873c-328e9672302a))
(fp_line (start -0.3 0) (end 0.2 -0.35) (layer "F.Fab") (width 0.1) (tstamp 684dd321-c877-439a-a4d1-bec26f55cf89))
(fp_line (start 0.2 0) (end 0.45 0) (layer "F.Fab") (width 0.1) (tstamp 7af2029e-2b92-4284-9c35-cc656514173c))
(fp_line (start 0.2 -0.35) (end 0.2 0.35) (layer "F.Fab") (width 0.1) (tstamp 9c476165-300e-4e08-a354-4288b203c377))
(fp_line (start -0.3 0) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp a3f3a018-6a6b-4914-95d4-b6f25692820f))
(fp_line (start -0.3 -0.35) (end -0.3 0.35) (layer "F.Fab") (width 0.1) (tstamp b910f5a9-203b-4617-b055-34ba181d7395))
(fp_line (start 0.9 -0.7) (end 0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp d1dfa0d9-6085-48b0-8c67-e7d0c2f5ffb4))
(fp_line (start 0.2 0.35) (end -0.3 0) (layer "F.Fab") (width 0.1) (tstamp d7208a74-6fe9-46b0-b74b-3a9c1ced3fc4))
(fp_line (start 0.9 0.7) (end -0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp d9995dd7-4a06-4a52-9152-cf099c9e9707))
(pad "1" smd rect (at -1.05 0 270) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "GND") (pinfunction "A1") (pintype "passive") (tstamp 1a65f33c-7c56-44cc-9cf1-6ac54f672e8b))
(pad "2" smd rect (at 1.05 0 270) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/CC2") (pinfunction "A2") (pintype "passive") (tstamp aed6fd45-9008-49c0-8589-6686d15e36cc))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp b1ef00bc-27fd-4f4a-a155-1b738e608b48)
(at 147.584 110.744 90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "USBPD.kicad_sch")
(property "Sheetname" "")
(path "/9279f5b2-9a9b-4ff3-87e1-59c057a56940")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a68ab9f-49b9-4556-9773-ed86cd9bea27)
)
(fp_text value "Conn_01x04" (at 0 9.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd5d8675-d91a-46c9-a0f4-ca5bb7941f9f)
)
(fp_text user "${REFERENCE}" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ffadf13e-d327-4e72-a129-20b1a691d829)
)
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 45005e12-36a9-4853-a83d-a87ffad800b4))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a2596afc-a768-4a7c-9191-a7e735f775bd))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp cca964ad-d64e-4c84-a05a-4b48498db544))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp d1cf4093-87af-4b49-8879-3ac410551bfc))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp d3262cbf-1f75-4047-bb3d-01b21ddbafa6))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp d44cf594-638f-424d-936a-6e9ed7c314ce))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 0e37a1ae-bf06-4c70-ae4c-e7cee553b0b3))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp ba033dd1-a5e2-4136-b71b-d0a1cef6fc1f))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp ebcfdf36-110d-4f79-9de0-e4fcd76c1d6e))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp f90672d0-2ca8-4eaf-98ba-17042306fced))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0339f2f9-1d07-4033-b6d0-c95452f524c6))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 04f09747-54bd-4ccb-936d-3baa80652154))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 09986a87-49c2-4491-b1b1-87dfad52ab95))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 0c190730-a9e0-4c4a-8e33-74ee97fb990f))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp e8c88107-4c00-44bc-b07f-5c8bcb21af78))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)