-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathusb_c_cable_tester.kicad_pcb
More file actions
10796 lines (10708 loc) · 538 KB
/
usb_c_cable_tester.kicad_pcb
File metadata and controls
10796 lines (10708 loc) · 538 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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "USB Cable Tester")
(date "2024-08-16")
(rev "2.4")
(company "Quesadillon LLC")
)
(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)
(grid_origin 100 100)
(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 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Net-(D1-A)")
(net 2 "Net-(D2-A)")
(net 3 "GND")
(net 4 "Net-(D3-A)")
(net 5 "Net-(D4-A)")
(net 6 "Net-(D5-A)")
(net 7 "Net-(D6-A)")
(net 8 "Net-(D7-A)")
(net 9 "Net-(D8-A)")
(net 10 "Net-(D9-A)")
(net 11 "+3V3")
(net 12 "Net-(D10-A)")
(net 13 "Net-(D11-A)")
(net 14 "Net-(D12-A)")
(net 15 "Net-(D13-A)")
(net 16 "Net-(D14-A)")
(net 17 "Net-(D15-A)")
(net 18 "Net-(D16-A)")
(net 19 "Net-(D17-A)")
(net 20 "Net-(D18-A)")
(net 21 "Net-(D19-A)")
(net 22 "Net-(D20-A)")
(net 23 "Net-(D21-A)")
(net 24 "Net-(D22-A)")
(net 25 "Net-(D23-A)")
(net 26 "Net-(D24-A)")
(net 27 "Net-(D25-A)")
(net 28 "/GND_A1")
(net 29 "/TX1+")
(net 30 "/TX1-")
(net 31 "/VBUS_A4")
(net 32 "/CC1")
(net 33 "/D+_A")
(net 34 "/D-_A")
(net 35 "/VBUS_B9")
(net 36 "/VBUS_A9")
(net 37 "/RX2-")
(net 38 "/RX2+")
(net 39 "/GND_A12")
(net 40 "/GND_B1")
(net 41 "/TX2+")
(net 42 "/TX2-")
(net 43 "/VBUS_B4")
(net 44 "/CC2")
(net 45 "/D-_B")
(net 46 "/RX1-")
(net 47 "/RX1+")
(net 48 "/GND_B12")
(net 49 "/SHLD")
(net 50 "/SBU1")
(net 51 "/D+_B")
(net 52 "/SBU2")
(net 53 "unconnected-(J3-ID-Pad4)")
(net 54 "unconnected-(J5-ID-Pad4)")
(footprint "LED_SMD:LED_0603_1608Metric" locked (layer "F.Cu")
(tstamp 03ac8c8e-e2b7-465f-9981-8abcd1f3f582)
(at 66.0375 121.75)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "ALT MPN" "")
(property "ALT Manufacturer" "")
(property "MPN" "")
(property "Manufacturer" "")
(property "Sheetfile" "usb_c_cable_tester.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode, small symbol, filled shape")
(property "ki_keywords" "LED diode light-emitting-diode")
(path "/742ac804-1450-49b6-a130-313cae7b7f5b")
(attr smd)
(fp_text reference "D21" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c343af5-3c56-44c9-acb0-5a9bb355a3d9)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d50198dd-f235-4b4e-9ea5-eeffc84681f8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7eb878a8-151c-4867-a09c-8907f4f0a0aa)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eabec64c-ba01-4473-95fe-9d1654b9c34b))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97d33b60-ae61-43b9-94dc-d78a76d0d996))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b71d3a10-b840-4e8f-91e6-eaa7abfe0343))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff9bf321-7805-42eb-b309-41e91d398825))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d5cb1f73-4c9b-4e6d-816b-127efbd61473))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac5ef779-b56b-457c-ab17-27acab3bb50d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d936fd86-4687-498a-ae85-7652f3b12d32))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db46f96c-93d1-4803-814c-d5819d6c815a))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4255f181-3b1e-493c-b74b-cb64727a8a60))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a84c0da-5f19-4d09-a1e6-d345900c8ba4))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78b9c664-282f-4afe-abda-58ac2d95bf31))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c730d719-8f04-442c-87ed-219e6b7b32a0))
(pad "1" smd roundrect locked (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "K") (pintype "passive") (tstamp f856520b-6dfa-413a-88c7-bf4c60286902))
(pad "2" smd roundrect locked (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(D21-A)") (pinfunction "A") (pintype "passive") (tstamp 25ec132f-1264-444b-952c-d8a01887b56c))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" locked (layer "F.Cu")
(tstamp 04c94db6-971c-401d-97ed-263d3c820737)
(at 78 113.709086)
(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 "ALT MPN" "")
(property "ALT Manufacturer" "")
(property "MPN" "")
(property "Manufacturer" "")
(property "Sheetfile" "usb_c_cable_tester.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/ee52d01b-1887-491a-9c6e-712bf9c95c07")
(attr smd)
(fp_text reference "R4" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4d21081-1d72-4037-a7bd-44da4e4bb9dd)
)
(fp_text value "330" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99c1ea05-7e53-43e8-afe2-5eba33d2408c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 2395d86a-d0a8-43f0-a18f-5d4908b58264)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96cb3ea2-d961-430b-af2a-8ab2d5217f59))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbd114ba-7519-4627-bbaf-d0e8e761d674))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5db32e4f-d968-41f8-b689-13a8a5cb25fd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca36f048-c730-497f-bb1d-6ad207a369d4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ef0ac2b-a532-48ee-ae0f-37ba138b59f0))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba28ed09-926a-47e2-b63f-96fc11d2d38f))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1fbece78-7fa7-4461-b091-13323a1cee51))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4616d25-04d4-4cee-a7de-785e122506e5))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 970c297c-b049-4375-b990-f4bbb7270917))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89b936d8-7f91-4fb9-967f-36b4874a507a))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "/TX2-") (pintype "passive") (tstamp 0d385809-35c7-459e-bf83-fce926ba8c5f))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(D4-A)") (pintype "passive") (tstamp ee1e97ea-7567-4a31-bc4c-b446ead9c5b8))
(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 "snapeda:AMPHENOL_10118194-0001LF_MOD" (layer "F.Cu")
(tstamp 0974ddde-03a8-4bcc-afc6-c3b1c76dce2d)
(at 141.2 97 90)
(property "ALT MPN" "")
(property "ALT Manufacturer" "")
(property "MPN" "10118194-0001LF")
(property "Manufacturer" "Amphenol ICC")
(property "Sheetfile" "usb_c_cable_tester.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB Micro Type B connector")
(property "ki_keywords" "connector USB micro")
(path "/f1c9240c-5cf2-4e92-92d8-8c0a77aa420b")
(attr through_hole)
(fp_text reference "J3" (at 5 -2.2 180) (layer "F.SilkS") hide
(effects (font (size 1.000953 1.000953) (thickness 0.15)))
(tstamp 696b004e-a07c-4555-a1f3-0b296365732a)
)
(fp_text value "USB_B_Micro" (at 0 4.48 90) (layer "F.Fab")
(effects (font (size 1.000362 1.000362) (thickness 0.15)))
(tstamp c9776ab4-06b0-4794-bb7b-2c5494a16e9d)
)
(fp_text user "PCB END" (at -1.95 2.1 90) (layer "F.Fab")
(effects (font (size 0.393701 0.393701) (thickness 0.0254)))
(tstamp 8e684181-4a31-4f1d-9e0e-e619fc38b642)
)
(fp_line (start -3.5 -0.77) (end -3.5 -0.6)
(stroke (width 0.0001) (type solid)) (layer "F.Paste") (tstamp e9a85555-b125-4a1f-9f2c-1a157d6de6d5))
(fp_line (start 3.5 0.77) (end 3.5 0.6)
(stroke (width 0.0001) (type solid)) (layer "F.Paste") (tstamp f1de4c11-abcf-492b-a587-1afe64c831a8))
(fp_poly
(pts
(xy -3.5 -0.775)
(xy -3.5 -0.575)
(xy -3.513 -0.575)
(xy -3.526 -0.574)
(xy -3.539 -0.572)
(xy -3.552 -0.57)
(xy -3.565 -0.566)
(xy -3.577 -0.563)
(xy -3.59 -0.558)
(xy -3.602 -0.553)
(xy -3.613 -0.548)
(xy -3.625 -0.542)
(xy -3.636 -0.535)
(xy -3.647 -0.527)
(xy -3.657 -0.519)
(xy -3.667 -0.511)
(xy -3.677 -0.502)
(xy -3.686 -0.492)
(xy -3.694 -0.482)
(xy -3.702 -0.472)
(xy -3.71 -0.461)
(xy -3.717 -0.45)
(xy -3.723 -0.438)
(xy -3.728 -0.427)
(xy -3.733 -0.415)
(xy -3.738 -0.402)
(xy -3.741 -0.39)
(xy -3.745 -0.377)
(xy -3.747 -0.364)
(xy -3.749 -0.351)
(xy -3.75 -0.338)
(xy -3.75 -0.325)
(xy -3.75 0.325)
(xy -3.75 0.338)
(xy -3.749 0.351)
(xy -3.747 0.364)
(xy -3.745 0.377)
(xy -3.741 0.39)
(xy -3.738 0.402)
(xy -3.733 0.415)
(xy -3.728 0.427)
(xy -3.723 0.438)
(xy -3.717 0.45)
(xy -3.71 0.461)
(xy -3.702 0.472)
(xy -3.694 0.482)
(xy -3.686 0.492)
(xy -3.677 0.502)
(xy -3.667 0.511)
(xy -3.657 0.519)
(xy -3.647 0.527)
(xy -3.636 0.535)
(xy -3.625 0.542)
(xy -3.613 0.548)
(xy -3.602 0.553)
(xy -3.59 0.558)
(xy -3.577 0.563)
(xy -3.565 0.566)
(xy -3.552 0.57)
(xy -3.539 0.572)
(xy -3.526 0.574)
(xy -3.513 0.575)
(xy -3.5 0.575)
(xy -3.5 0.775)
(xy -3.526 0.774)
(xy -3.552 0.772)
(xy -3.578 0.769)
(xy -3.604 0.764)
(xy -3.629 0.758)
(xy -3.655 0.751)
(xy -3.679 0.742)
(xy -3.703 0.732)
(xy -3.727 0.721)
(xy -3.75 0.708)
(xy -3.772 0.694)
(xy -3.794 0.68)
(xy -3.815 0.664)
(xy -3.835 0.647)
(xy -3.854 0.629)
(xy -3.872 0.61)
(xy -3.889 0.59)
(xy -3.905 0.569)
(xy -3.919 0.547)
(xy -3.933 0.525)
(xy -3.946 0.502)
(xy -3.957 0.478)
(xy -3.967 0.454)
(xy -3.976 0.43)
(xy -3.983 0.404)
(xy -3.989 0.379)
(xy -3.994 0.353)
(xy -3.997 0.327)
(xy -3.999 0.301)
(xy -4 0.275)
(xy -4 -0.275)
(xy -3.999 -0.301)
(xy -3.997 -0.327)
(xy -3.994 -0.353)
(xy -3.989 -0.379)
(xy -3.983 -0.404)
(xy -3.976 -0.43)
(xy -3.967 -0.454)
(xy -3.957 -0.478)
(xy -3.946 -0.502)
(xy -3.933 -0.525)
(xy -3.919 -0.547)
(xy -3.905 -0.569)
(xy -3.889 -0.59)
(xy -3.872 -0.61)
(xy -3.854 -0.629)
(xy -3.835 -0.647)
(xy -3.815 -0.664)
(xy -3.794 -0.68)
(xy -3.772 -0.694)
(xy -3.75 -0.708)
(xy -3.727 -0.721)
(xy -3.703 -0.732)
(xy -3.679 -0.742)
(xy -3.655 -0.751)
(xy -3.629 -0.758)
(xy -3.604 -0.764)
(xy -3.578 -0.769)
(xy -3.552 -0.772)
(xy -3.526 -0.774)
(xy -3.5 -0.775)
)
(stroke (width 0.0001) (type solid)) (fill solid) (layer "F.Paste") (tstamp f868dc69-7b14-4f16-9457-10eaa969b6ec))
(fp_poly
(pts
(xy 3.5 0.775)
(xy 3.5 0.575)
(xy 3.513 0.575)
(xy 3.526 0.574)
(xy 3.539 0.572)
(xy 3.552 0.57)
(xy 3.565 0.566)
(xy 3.577 0.563)
(xy 3.59 0.558)
(xy 3.602 0.553)
(xy 3.613 0.548)
(xy 3.625 0.542)
(xy 3.636 0.535)
(xy 3.647 0.527)
(xy 3.657 0.519)
(xy 3.667 0.511)
(xy 3.677 0.502)
(xy 3.686 0.492)
(xy 3.694 0.482)
(xy 3.702 0.472)
(xy 3.71 0.461)
(xy 3.717 0.45)
(xy 3.723 0.438)
(xy 3.728 0.427)
(xy 3.733 0.415)
(xy 3.738 0.402)
(xy 3.741 0.39)
(xy 3.745 0.377)
(xy 3.747 0.364)
(xy 3.749 0.351)
(xy 3.75 0.338)
(xy 3.75 0.325)
(xy 3.75 -0.325)
(xy 3.75 -0.338)
(xy 3.749 -0.351)
(xy 3.747 -0.364)
(xy 3.745 -0.377)
(xy 3.741 -0.39)
(xy 3.738 -0.402)
(xy 3.733 -0.415)
(xy 3.728 -0.427)
(xy 3.723 -0.438)
(xy 3.717 -0.45)
(xy 3.71 -0.461)
(xy 3.702 -0.472)
(xy 3.694 -0.482)
(xy 3.686 -0.492)
(xy 3.677 -0.502)
(xy 3.667 -0.511)
(xy 3.657 -0.519)
(xy 3.647 -0.527)
(xy 3.636 -0.535)
(xy 3.625 -0.542)
(xy 3.613 -0.548)
(xy 3.602 -0.553)
(xy 3.59 -0.558)
(xy 3.577 -0.563)
(xy 3.565 -0.566)
(xy 3.552 -0.57)
(xy 3.539 -0.572)
(xy 3.526 -0.574)
(xy 3.513 -0.575)
(xy 3.5 -0.575)
(xy 3.5 -0.775)
(xy 3.526 -0.774)
(xy 3.552 -0.772)
(xy 3.578 -0.769)
(xy 3.604 -0.764)
(xy 3.629 -0.758)
(xy 3.655 -0.751)
(xy 3.679 -0.742)
(xy 3.703 -0.732)
(xy 3.727 -0.721)
(xy 3.75 -0.708)
(xy 3.772 -0.694)
(xy 3.794 -0.68)
(xy 3.815 -0.664)
(xy 3.835 -0.647)
(xy 3.854 -0.629)
(xy 3.872 -0.61)
(xy 3.889 -0.59)
(xy 3.905 -0.569)
(xy 3.919 -0.547)
(xy 3.933 -0.525)
(xy 3.946 -0.502)
(xy 3.957 -0.478)
(xy 3.967 -0.454)
(xy 3.976 -0.43)
(xy 3.983 -0.404)
(xy 3.989 -0.379)
(xy 3.994 -0.353)
(xy 3.997 -0.327)
(xy 3.999 -0.301)
(xy 4 -0.275)
(xy 4 0.275)
(xy 3.999 0.301)
(xy 3.997 0.327)
(xy 3.994 0.353)
(xy 3.989 0.379)
(xy 3.983 0.404)
(xy 3.976 0.43)
(xy 3.967 0.454)
(xy 3.957 0.478)
(xy 3.946 0.502)
(xy 3.933 0.525)
(xy 3.919 0.547)
(xy 3.905 0.569)
(xy 3.889 0.59)
(xy 3.872 0.61)
(xy 3.854 0.629)
(xy 3.835 0.647)
(xy 3.815 0.664)
(xy 3.794 0.68)
(xy 3.772 0.694)
(xy 3.75 0.708)
(xy 3.727 0.721)
(xy 3.703 0.732)
(xy 3.679 0.742)
(xy 3.655 0.751)
(xy 3.629 0.758)
(xy 3.604 0.764)
(xy 3.578 0.769)
(xy 3.552 0.772)
(xy 3.526 0.774)
(xy 3.5 0.775)
)
(stroke (width 0.0001) (type solid)) (fill solid) (layer "F.Paste") (tstamp 73d6e389-1a7e-4c7f-9719-9937833cf539))
(fp_line (start -3.7 -2.85) (end -3.7 -1.095)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp c0a2c987-52ef-4253-b82a-1872f59bea45))
(fp_line (start -3.7 -2.85) (end -3.52 -2.85)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 488ec422-f10d-4fee-8a3c-5e85f73bf781))
(fp_line (start -3.7 1.45) (end -3.7 1.18)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp ab94a9f2-98b7-4d2e-b5db-e05984155f6a))
(fp_line (start -3.7 1.45) (end 3.7 1.45)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp d8cb3a50-45f0-42f8-9f11-0a7647c2ad8a))
(fp_line (start 3.7 -2.85) (end 3.52 -2.85)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 308ef68f-f103-451c-b53a-7f313d23af99))
(fp_line (start 3.7 -2.85) (end 3.7 -1.095)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 34b6cd20-b581-404c-8ccc-8b951d43416b))
(fp_line (start 3.7 1.18) (end 3.7 1.45)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp a2008e2f-e56f-4191-a428-47319ee56cb2))
(fp_line (start -4.725 2.93) (end -4.25 2.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34e6d5a3-91ad-4d41-9e3c-5f4b23a51372))
(fp_line (start -4.25 -3.625) (end 4.25 -3.625)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 808a26f8-0e17-454a-8a7e-b92e69c05ee5))
(fp_line (start -4.25 2.15) (end -4.25 -3.625)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27617696-95aa-4c7c-b67f-79ade2889b8d))
(fp_line (start 4.25 2.15) (end 4.25 -3.625)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df6f3a47-e302-403f-82d0-430582d8af35))
(fp_line (start 4.725 2.93) (end -4.725 2.93)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba27f41f-21f0-415b-b427-8177aac3175f))
(fp_line (start 4.725 2.93) (end 4.25 2.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 946b8231-cbd3-41da-ba72-b8696a55b5db))
(fp_line (start -4.025 2.68) (end 4.025 2.68)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 372530c1-37e1-42ec-9595-aa82478b7380))
(fp_line (start -3.7 -2.85) (end -3.7 1.45)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp b992faf1-0d20-4713-8d9d-42cd06c55dcf))
(fp_line (start -3.7 -2.85) (end 3.7 -2.85)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 8cee83db-6926-4cba-b767-463d9cf3e4e0))
(fp_line (start -3.7 1.45) (end -3.7 2.15)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 09ad6c15-22c3-46bf-b09e-282c0d1aa8b1))
(fp_line (start -3.7 1.45) (end 3.7 1.45)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 424a0555-a3a2-45b3-81f4-f93dfd346a15))
(fp_line (start -3.7 2.15) (end -4.025 2.68)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp e79b56a7-6a95-44be-8034-7cd10fdcc7b5))
(fp_line (start 3.7 1.45) (end 3.7 -2.85)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 860d3074-f192-43cb-b479-b6f804ac0153))
(fp_line (start 3.7 2.15) (end 3.7 1.45)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 6f2393bf-e053-426f-9797-d175c4742bd7))
(fp_line (start 4.025 2.68) (end 3.7 2.15)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp ab80cbb7-5f03-45ac-b369-83f30f4a4c4b))
(pad "1" smd rect (at -1.3 -2.7 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (pinfunction "VBUS") (pintype "power_out") (tstamp f14458b5-ee2f-40b6-8b45-a2d10e3ba311))
(pad "2" smd rect (at -0.65 -2.7 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (pinfunction "D-") (pintype "bidirectional") (tstamp 782d43d8-3337-44d0-9f6c-a4d0ea541296))
(pad "3" smd rect (at 0 -2.7 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (pinfunction "D+") (pintype "bidirectional") (tstamp f394eda7-3f2e-46ce-94d0-3ef5f08120e1))
(pad "4" smd rect (at 0.65 -2.7 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 53 "unconnected-(J3-ID-Pad4)") (pinfunction "ID") (pintype "passive+no_connect") (tstamp c5c9f6f0-0998-4bf8-b21c-c7098ef304d4))
(pad "5" smd rect (at 1.3 -2.7 90) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (pinfunction "GND") (pintype "power_out") (tstamp 9f8b673e-d296-48c5-8cb0-6a68a940ebc7))
(pad "6" thru_hole oval (at -3.5 0 90) (size 0.9 1.55) (drill oval 0.5 1.15) (layers "*.Cu" "*.Mask")
(net 11 "+3V3") (pinfunction "Shield") (pintype "passive") (tstamp 3e1845d0-55aa-4903-a527-566c850c361c))
(pad "6" smd roundrect (at -3.1125 0 90) (size 1.8 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "+3V3") (pinfunction "Shield") (pintype "passive") (tstamp 4fffdfa1-c6c9-4255-9d4f-046b92355792))
(pad "6" thru_hole oval (at -2.5 -2.7 90) (size 1.25 0.95) (drill oval 0.85 0.55) (layers "*.Cu" "*.Mask")
(net 11 "+3V3") (pinfunction "Shield") (pintype "passive") (tstamp f8b32947-36de-41af-a4d6-65a6f69c4b6e))
(pad "6" smd rect (at -1 0 90) (size 1.5 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (pinfunction "Shield") (pintype "passive") (tstamp 12744ab9-a686-4b48-9f8f-81c49fc10b7c))
(pad "6" smd rect (at 1 0 90) (size 1.5 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (pinfunction "Shield") (pintype "passive") (tstamp 080ee6ec-a509-4f17-bf7c-c6ca1c0a8249))
(pad "6" thru_hole oval (at 2.5 -2.7 90) (size 1.25 0.95) (drill oval 0.85 0.55) (layers "*.Cu" "*.Mask")
(net 11 "+3V3") (pinfunction "Shield") (pintype "passive") (tstamp ebee3f17-1ea1-46ab-85e9-6869b5b1fb32))
(pad "6" smd roundrect (at 3.1 0 90) (size 1.8 1.524) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "+3V3") (pinfunction "Shield") (pintype "passive") (tstamp 40bf7f0b-0d13-43ba-be2c-6e054d8c2985))
(pad "6" thru_hole oval (at 3.5 0 90) (size 0.9 1.55) (drill oval 0.5 1.15) (layers "*.Cu" "*.Mask")
(net 11 "+3V3") (pinfunction "Shield") (pintype "passive") (tstamp c70fd180-3a24-415f-a7e4-250892b60b8a))
(model "${ALVAROP_3D_DIR}/10118194-0001LF.step"
(offset (xyz -75.025 3.1 -0.25))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "snapeda:TE_1734510-1" (layer "F.Cu")
(tstamp 0985c881-f55d-4512-b98b-25b327f38bc2)
(at 141.05 118.49225 90)
(property "ALT MPN" "0548190519")
(property "ALT Manufacturer" "Molex")
(property "MPN" "1734510-1")
(property "Manufacturer" "TE Connectivity")
(property "Sheetfile" "usb_c_cable_tester.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB Mini Type B connector")
(property "ki_keywords" "connector USB mini")
(path "/6aec2b23-bcdb-4fee-a4ed-a6adf5daecb4")
(attr through_hole)
(fp_text reference "J5" (at -1.311125 -6.855945 90) (layer "F.SilkS") hide
(effects (font (size 0.788087 0.788087) (thickness 0.129286) bold))
(tstamp 07c8c3fd-26c2-4005-8971-903f469edeb9)
)
(fp_text value "USB_B_Mini" (at 2.19096 4.58202 90) (layer "F.Fab")
(effects (font (size 0.787748 0.787748) (thickness 0.15)))
(tstamp e0f2be16-eceb-4361-8408-913e9eaa8b00)
)
(fp_text user "PCB Edge" (at 0 2.54 90) (layer "F.Fab")
(effects (font (size 0.787882 0.787882) (thickness 0.15)))
(tstamp a85f06a1-893e-4cfa-8bbc-0d27b3c766aa)
)
(fp_line (start -4.35 -5.85) (end 4.35 -5.85)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp e1372962-da07-4e0b-9ab0-c29da0fcd13c))
(fp_line (start -4.35 -1.6) (end -4.35 -5.85)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 1d283926-df3e-4c7e-a8fe-c11154039bee))
(fp_line (start -4.35 1.75) (end -4.35 1.6)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 80361afc-a1f5-4f1f-af14-8d1cb1452190))
(fp_line (start 4.35 -5.85) (end 4.35 -1.5)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp c371f35a-0e6c-49c5-8d2a-582d1aa00e27))
(fp_line (start 4.35 1.5) (end 4.35 1.75)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 44d0f4f1-10aa-4c72-bfe7-6a56d07122c0))
(fp_line (start 4.35 1.75) (end -4.35 1.75)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 64bb3269-f641-4bc0-8cc0-19033f8b2126))
(fp_circle (center -5.129 -4.949) (end -5.029 -4.949)
(stroke (width 0.3) (type solid)) (fill none) (layer "F.SilkS") (tstamp 65df2977-d9de-4311-900d-d39ff4e69a1f))
(fp_line (start -4.6 -6.1) (end 4.6 -6.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10f7e7a6-a500-47e1-b663-0dd5863689fa))
(fp_line (start -4.6 4) (end -4.6 -6.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba71f529-aeb6-47cd-b4e7-e7d6aa0b742b))
(fp_line (start 4.6 -6.1) (end 4.6 4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29b5814c-1ea3-41a4-bc17-fb4e7d870e88))
(fp_line (start 4.6 4) (end -4.6 4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2fe5d9f2-5d33-4164-81f5-4efa4328c74d))
(fp_line (start -4.35 -5.85) (end 4.35 -5.85)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp fb8483fc-8c87-4a0e-b23a-465eb8f5286d))
(fp_line (start -4.35 1.75) (end -4.35 -5.85)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 186fe82a-4db7-48f7-b94b-94b63f611ac9))
(fp_line (start -4.35 3.75) (end -4.35 1.75)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 37934095-bd78-49d1-890d-4fa2af395723))
(fp_line (start 4.35 -5.85) (end 4.35 1.75)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp ac2d72b0-f2f3-4974-b533-b80c55990203))
(fp_line (start 4.35 1.75) (end -4.35 1.75)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 735ea5a6-2141-4943-ae7e-b58873c3e407))
(fp_line (start 4.35 1.75) (end 4.35 3.75)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 8805df86-8152-4d1d-a048-6ecca9c4aae2))
(fp_line (start 4.35 1.75) (end 5.3 1.75)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 5c7d6a19-efeb-4dd7-90c8-7348f82e461e))
(fp_line (start 4.35 3.75) (end -4.35 3.75)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp f96d3a04-0ad6-45a2-b8da-da37fb0cd9d0))
(fp_circle (center -5.129 -4.949) (end -5.029 -4.949)
(stroke (width 0.3) (type solid)) (fill none) (layer "F.Fab") (tstamp ce13c8a4-d052-40f7-a871-d2942dc4edd0))
(pad "1" thru_hole circle (at -1.6 -5.05 90) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 11 "+3V3") (pinfunction "VBUS") (pintype "power_out") (solder_mask_margin 0.102) (tstamp d3717c9d-b463-456d-8e90-13cee1c85a77))
(pad "2" thru_hole circle (at -0.8 -3.85 90) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 11 "+3V3") (pinfunction "D-") (pintype "bidirectional") (solder_mask_margin 0.102) (tstamp d50ac2a1-365a-4e0a-b750-80dfdeea4424))
(pad "3" thru_hole circle (at 0 -5.05 90) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 11 "+3V3") (pinfunction "D+") (pintype "bidirectional") (solder_mask_margin 0.102) (tstamp a7960291-a964-48e0-9900-29d035242324))
(pad "4" thru_hole circle (at 0.8 -3.85 90) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 54 "unconnected-(J5-ID-Pad4)") (pinfunction "ID") (pintype "passive+no_connect") (solder_mask_margin 0.102) (tstamp 528cf75c-c3ef-4c2a-8a15-f8ffe831ff07))
(pad "5" thru_hole circle (at 1.6 -5.05 90) (size 1.2 1.2) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 11 "+3V3") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.102) (tstamp 46d4b83c-66bd-4604-a8ca-7d47db2ffaf1))
(pad "6" thru_hole oval (at -3.65 0 90) (size 1.208 2.416) (drill oval 0.7 1.9) (layers "*.Cu" "*.Mask")
(net 11 "+3V3") (pinfunction "Shield") (pintype "passive") (solder_mask_margin 0.102) (tstamp c001f8b0-101b-4ef2-a52e-98cf8175d29f))
(pad "6" thru_hole oval (at 3.65 0 90) (size 1.208 2.416) (drill oval 0.7 1.9) (layers "*.Cu" "*.Mask")
(net 11 "+3V3") (pinfunction "Shield") (pintype "passive") (solder_mask_margin 0.102) (tstamp e7c7155f-6394-4e11-ba18-0a5cd40b5c9a))
(model ":ALVAROP_3D_DIR:1734510-1.step"
(offset (xyz 0 -3.75 2))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" locked (layer "F.Cu")
(tstamp 1cc75ff2-edcb-45b7-9b56-11ed970bf5ce)
(at 78 74.6)
(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 "ALT MPN" "")
(property "ALT Manufacturer" "")
(property "MPN" "")
(property "Manufacturer" "")
(property "Sheetfile" "usb_c_cable_tester.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/95d741f8-ad0c-498f-9a85-a90081e3c767")
(attr smd)
(fp_text reference "R25" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d1b3b12-e229-40c7-872b-613dfc9719b0)
)
(fp_text value "330" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef379bbd-3539-46a0-8d09-4392b220a93a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c989e3ad-5bcd-4ffe-98ae-fe212996fd12)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91caaa6e-3482-48a1-a197-da083ddccf31))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dff253f2-e2b9-4466-aa3f-91ac541e5f6c))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c031b17-14ef-497b-8fb9-d46fe4279f79))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3e2653b-6637-4996-a133-a4ea6b7577db))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c016d5c-9c32-4dbb-a9e1-32f8ec43a49c))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b4b792b7-5721-4003-aef5-29584c391286))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b852f74-e10f-44cb-b8f2-afb46e73ca5c))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cbea8c7-8d59-4e7f-b92b-11f7bf18d2e3))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b9b4dc3-b185-4004-94b3-fe1bddd2789d))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f144f6b-3a35-4d99-8666-c277cf259a89))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "/GND_B12") (pintype "passive") (tstamp 9da751db-9a73-4be8-89b1-962d6d268bb9))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(D25-A)") (pintype "passive") (tstamp c868a36e-e5f4-4ee9-bc86-6ab6898489cb))
(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 "LED_SMD:LED_0603_1608Metric" locked (layer "F.Cu")
(tstamp 1cd9e674-4243-4774-9449-4492ce126c53)
(at 78 76.173913)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "ALT MPN" "")
(property "ALT Manufacturer" "")
(property "MPN" "")
(property "Manufacturer" "")
(property "Sheetfile" "usb_c_cable_tester.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode, small symbol, filled shape")
(property "ki_keywords" "LED diode light-emitting-diode")
(path "/d5db0388-aeaf-4171-9b55-e7911f3685e8")
(attr smd)
(fp_text reference "D25" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a8f49bd-e9e8-46be-94d5-f8ce71fb2fc9)
)
(fp_text value "LED" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a8f5bf1-9a8c-4589-926b-fc2bf788b38e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp adb1024e-eefa-4417-9de8-1537fe4524ca)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b4270ab-e2b9-43a8-a5fe-53a47dfbb2f2))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dfa0ff52-f117-4df0-a2e8-a154d53536dd))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75dd7115-9125-4d4d-a80f-717997f41062))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 872a6337-e50d-48dc-b643-8929be6272bb))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b18270c-ca01-4321-8796-8fd1ce2bb996))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bbfcc773-f79a-460e-a1ba-4318a0e96fba))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 493ac1d6-7812-4179-94b2-c53292048192))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f10dc02e-dce5-496f-94b9-72da67a43da4))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1f13804-222f-44fa-a8c7-006b9ad379fd))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 31971fcd-ab6a-4764-83bd-0897d2debc37))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a03212b1-b589-42d8-be49-d05dab414c25))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c30040a1-0a05-4a50-a566-e9b123638352))
(pad "1" smd roundrect locked (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "K") (pintype "passive") (tstamp 109b450e-3e55-41b8-a004-957179c5110e))
(pad "2" smd roundrect locked (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(D25-A)") (pinfunction "A") (pintype "passive") (tstamp be4a95ce-2d20-468d-9d26-7ff4b8945b01))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" locked (layer "F.Cu")
(tstamp 1e03bfbe-b18c-4614-bdfe-d89a3e136f63)
(at 120.96 78.945454)
(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 "ALT MPN" "")
(property "ALT Manufacturer" "")
(property "MPN" "")
(property "Manufacturer" "")
(property "Sheetfile" "usb_c_cable_tester.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/5ad7abf6-2f68-4c8b-b2f3-3711bc67bf96")
(attr smd)
(fp_text reference "R7" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f55d247-12be-4fe5-a45f-f02c2e9a78f7)
)
(fp_text value "330" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f56ad6f9-e782-42ee-aabb-6d55cef2caf8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 603319bd-d3c9-41a6-b53f-8f9dab20e913)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 864efad5-e8a3-4ba3-bf7f-a05d406b7347))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fff887c8-4df4-46ce-94ad-82433df7a226))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79e7fbae-8131-44ce-9995-9b9afc0b167a))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d10ed929-c113-470a-87a5-5f08c5cf0cb8))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd7d595f-b8ee-4abb-b536-e28ab82ea9a6))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp adc49a7f-3f30-4089-9c9f-9abe4d787c18))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 13e4d787-4670-4b75-b836-88766be9f72d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af9d175f-7d7d-4dcf-b20d-8b6681c9e43f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3166f135-0d56-48f7-9f3f-db051e62706b))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5b42cea-898f-4dcc-84d6-0d96d134a776))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "/TX1+") (pintype "passive") (tstamp 7846c8e2-9cd5-4593-83e0-d632207c88a6))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D7-A)") (pintype "passive") (tstamp ef23b207-2e04-494f-9cde-b36cbe912312))
(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" locked (layer "F.Cu")
(tstamp 208849f5-de06-40bb-805b-6daf17110d89)
(at 120.96 87.636362)
(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 "ALT MPN" "")
(property "ALT Manufacturer" "")
(property "MPN" "")
(property "Manufacturer" "")
(property "Sheetfile" "usb_c_cable_tester.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/3beb66dd-9b69-49ab-946f-2ef8d31dcba9")
(attr smd)
(fp_text reference "R20" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bcbbae2e-0392-428e-a7d6-4f5bd3ab7086)
)
(fp_text value "330" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38ddddb0-e0b9-4338-8c36-dc64a98e7a36)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 87722910-5382-4744-a991-bcbe5038e96e)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd83ed10-ec56-4e6d-bbc0-0b42381d5ae2))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5a7c8eb-be3a-4aa7-8c45-f72c67c9fe84))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b33085be-0244-4858-920c-ca7e743a341e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74a99891-2266-43d7-8e15-867fee7c5d67))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f635610-7f83-43b1-bcf9-cf199af4d38d))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba712529-c775-4185-9a12-af4faedf75fe))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f9c405f0-a814-45c6-9d1b-71a8b6439610))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c03c21dd-f44c-4659-98c5-c08f73228239))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1910ca2f-e86c-4eff-88e8-2b9c1aabd420))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e05b42d1-2e50-4d8e-80f4-30767c33e962))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "/VBUS_A4") (pintype "passive") (tstamp 004059bc-0c43-44c0-bd3c-2262bfa86ff4))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(D20-A)") (pintype "passive") (tstamp 45a3b8a0-9cf8-4d23-bb59-eb7ece674fd9))
(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" locked (layer "F.Cu")
(tstamp 21af456a-7c8a-4adf-b86f-69ca47a7f67a)
(at 120.96 91.981816)
(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 "ALT MPN" "")
(property "ALT Manufacturer" "")
(property "MPN" "")
(property "Manufacturer" "")
(property "Sheetfile" "usb_c_cable_tester.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/38536f7a-012b-4eb5-8330-84df68082fca")
(attr smd)
(fp_text reference "R16" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9bbba298-5d6d-41f0-9df6-348f8fc305fc)
)
(fp_text value "330" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eee4d29e-ffe1-41ee-8935-871b48954ab1)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 85bb48c9-2c7e-4a84-85bd-a01c8a5aaa46)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e297dc9c-f6a3-4910-b6a3-0fe7fd7a0441))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 713b64fe-2e9d-43e5-ad5c-3795a8a9031e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6acde389-ff1a-4794-8221-07ea3c43e40e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0b9851f-3a21-42ac-bb9d-f7491b682664))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e698c46-003f-4265-a98c-0c0e4a08c5e1))
(fp_line (start 1.48 0.73) (end -1.48 0.73)