-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusb test board.kicad_sch
1443 lines (1421 loc) · 54.2 KB
/
usb test board.kicad_sch
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_sch (version 20230121) (generator eeschema)
(uuid 8f52a1f3-af29-4f09-ad4b-07320ea77f78)
(paper "A3")
(lib_symbols
(symbol "Connector:Conn_01x04_Pin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04_Pin" (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x04, script generated" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x04_Pin_1_1"
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(pin passive line (at 5.08 2.54 180) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -5.08 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:USB_B_Micro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -5.08 11.43 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "USB_B_Micro" (at -5.08 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 3.81 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 3.81 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector USB micro" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "USB Micro Type B connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "USB*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "USB_B_Micro_0_1"
(rectangle (start -5.08 -7.62) (end 5.08 7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center -3.81 2.159) (radius 0.635)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(circle (center -0.635 3.429) (radius 0.381)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(rectangle (start -0.127 -7.62) (end 0.127 -6.858)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 2.159)
(xy 0.635 2.159)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.175 2.159)
(xy -2.54 2.159)
(xy -1.27 3.429)
(xy -0.635 3.429)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.159)
(xy -1.905 2.159)
(xy -1.27 0.889)
(xy 0 0.889)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 2.794)
(xy 0.635 1.524)
(xy 1.905 2.159)
(xy 0.635 2.794)
)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(polyline
(pts
(xy -4.318 5.588)
(xy -1.778 5.588)
(xy -2.032 4.826)
(xy -4.064 4.826)
(xy -4.318 5.588)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy -4.699 5.842)
(xy -4.699 5.588)
(xy -4.445 4.826)
(xy -4.445 4.572)
(xy -1.651 4.572)
(xy -1.651 4.826)
(xy -1.397 5.588)
(xy -1.397 5.842)
(xy -4.699 5.842)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 0.254 1.27) (end -0.508 0.508)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(rectangle (start 5.08 -5.207) (end 4.318 -4.953)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 5.08 -2.667) (end 4.318 -2.413)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 5.08 -0.127) (end 4.318 0.127)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 5.08 4.953) (end 4.318 5.207)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "USB_B_Micro_1_1"
(pin power_out line (at 7.62 5.08 180) (length 2.54)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 7.62 -2.54 180) (length 2.54)
(name "D-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 7.62 0 180) (length 2.54)
(name "D+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 2.54)
(name "ID" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -10.16 90) (length 2.54)
(name "Shield" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic_MountingPin:Conn_01x01_MountingPin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x01_MountingPin" (at 1.27 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connectable mounting pin connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??-1MP*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x01_MountingPin_1_1"
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(polyline
(pts
(xy -1.016 -2.032)
(xy 1.016 -2.032)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(text "Mounting" (at 0 -1.651 0)
(effects (font (size 0.381 0.381)))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 90) (length 3.048)
(name "MountPin" (effects (font (size 1.27 1.27))))
(number "MP" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 1.016 -0.254 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "UJ2-AH-4-SMT:UJ2-AH-4-SMT" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -5.0877 7.6315 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "UJ2-AH-4-SMT" (at -5.0826 -12.7065 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "UJ2-AH-4-SMT:CUI_UJ2-AH-4-SMT" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MF" "CUI Devices" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Description" "Type A, USB 2.0, 480 Mbps, 30 Vac, 1 A, Right Angle, Surface Mount, 30 µin Plating Thickness, Black Insulator, USB Receptacle" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Package" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Price" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Check_prices" "https://www.snapeda.com/parts/UJ2-AH-4-SMT-TR/CUI+Devices/view-part/?ref=eda" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "PART_REV" "1.01" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "STANDARD" "MANUFACTURER RECOMMENDATIONS" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "SnapEDA_Link" "https://www.snapeda.com/parts/UJ2-AH-4-SMT-TR/CUI+Devices/view-part/?ref=snap" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MP" "UJ2-AH-4-SMT-TR" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=3606547&manufacturer=CUI Devices&part_name=UJ2-AH-4-SMT-TR&search_term=uj2-ah-4-smt-tr" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "CUI_purchase_URL" "https://www.cuidevices.com/product/interconnect/connectors/usb-connectors/uj2-ah-4-smt?utm_source=snapeda.com&utm_medium=referral&utm_campaign=snapedaBOM" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Availability" "In Stock" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MANUFACTURER" "CUI INC" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "UJ2-AH-4-SMT_0_0"
(rectangle (start -5.08 -10.16) (end 5.08 7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at 10.16 5.08 180) (length 5.08)
(name "1" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 10.16 2.54 180) (length 5.08)
(name "2" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 10.16 0 180) (length 5.08)
(name "3" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 10.16 -2.54 180) (length 5.08)
(name "4" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 10.16 -7.62 180) (length 5.08)
(name "SHIELD" (effects (font (size 1.016 1.016))))
(number "SH1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 10.16 -7.62 180) (length 5.08)
(name "SHIELD" (effects (font (size 1.016 1.016))))
(number "SH2" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "USB4110GFA:USB4110GFA" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -12.7 11.43 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "USB4110GFA" (at -12.7 -15.24 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "USB4110GFA:GCT_USB4110GFA" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MF" "Global Connector Technology" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Description" "\nUSB-C (USB TYPE-C) USB 2.0 Receptacle Connector 24 (16+8 Dummy) Position Surface Mount, Right Angle\n" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Package" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Price" "None" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "SnapEDA_Link" "https://www.snapeda.com/parts/USB4110GFA/Global+Connector+Technology/view-part/?ref=snap" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MP" "USB4110GFA" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Availability" "In Stock" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Check_prices" "https://www.snapeda.com/parts/USB4110GFA/Global+Connector+Technology/view-part/?ref=eda" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "USB4110GFA_0_0"
(rectangle (start -12.7 -12.7) (end 12.7 10.16)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin power_in line (at 17.78 -10.16 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "A1/B12" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 7.62 180) (length 5.08)
(name "VBUS" (effects (font (size 1.016 1.016))))
(number "A4/B9" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 2.54 0) (length 5.08)
(name "CC1" (effects (font (size 1.016 1.016))))
(number "A5" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 0 0) (length 5.08)
(name "DP1" (effects (font (size 1.016 1.016))))
(number "A6" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 -2.54 0) (length 5.08)
(name "DN1" (effects (font (size 1.016 1.016))))
(number "A7" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 -5.08 0) (length 5.08)
(name "SBU1" (effects (font (size 1.016 1.016))))
(number "A8" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -10.16 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "B1/A12" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 7.62 180) (length 5.08)
(name "VBUS" (effects (font (size 1.016 1.016))))
(number "B4/A9" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at 17.78 2.54 180) (length 5.08)
(name "CC2" (effects (font (size 1.016 1.016))))
(number "B5" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at 17.78 0 180) (length 5.08)
(name "DP2" (effects (font (size 1.016 1.016))))
(number "B6" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at 17.78 -2.54 180) (length 5.08)
(name "DN2" (effects (font (size 1.016 1.016))))
(number "B7" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at 17.78 -5.08 180) (length 5.08)
(name "SBU2" (effects (font (size 1.016 1.016))))
(number "B8" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -10.16 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "S1" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -10.16 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "S2" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -10.16 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "S3" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -10.16 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "S4" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "flag power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
)
(junction (at 158.75 154.813) (diameter 0) (color 0 0 0 0)
(uuid 1feaab27-b7ac-45f5-b0c6-83d95775c64c)
)
(junction (at 205.613 149.733) (diameter 0) (color 0 0 0 0)
(uuid 20d24050-1eac-400b-8b2f-f93015a0ccc7)
)
(junction (at 186.309 119.253) (diameter 0) (color 0 0 0 0)
(uuid 2549b249-c9da-4de3-9bba-d053446ebff4)
)
(junction (at 205.613 154.813) (diameter 0) (color 0 0 0 0)
(uuid 626eab5d-f12d-44ae-a7dc-096a75c643eb)
)
(junction (at 78.232 142.494) (diameter 0) (color 0 0 0 0)
(uuid 64d22d01-f07c-44b5-bacc-6a7877c81898)
)
(junction (at 151.765 116.713) (diameter 0) (color 0 0 0 0)
(uuid 6bc4a73e-6d10-40ac-b38c-38a74060efb5)
)
(junction (at 189.484 139.446) (diameter 0) (color 0 0 0 0)
(uuid 95fa9021-80d1-411a-8dc3-bbbac01349d7)
)
(junction (at 149.098 124.333) (diameter 0) (color 0 0 0 0)
(uuid 97ff47d9-23a9-4322-82d4-8897d21ac06c)
)
(junction (at 149.098 126.873) (diameter 0) (color 0 0 0 0)
(uuid 992f8714-7c07-41f6-9403-4853efda28df)
)
(junction (at 182.245 154.813) (diameter 0) (color 0 0 0 0)
(uuid b3098a08-0a36-4911-b5bc-6897a778dbb1)
)
(junction (at 205.613 142.113) (diameter 0) (color 0 0 0 0)
(uuid c9dd10cd-aba4-4d49-8fe5-e2a7401caf83)
)
(junction (at 171.069 116.713) (diameter 0) (color 0 0 0 0)
(uuid e166777c-7a6d-40e2-9f8b-5bdf0976ff08)
)
(junction (at 186.309 139.446) (diameter 0) (color 0 0 0 0)
(uuid e5fca881-61f5-47be-acb0-1e1f4a3c2789)
)
(no_connect (at 113.538 129.413) (uuid 489eafc1-113e-43ce-a065-fd3f9a00627d))
(no_connect (at 85.852 137.414) (uuid 7b6fe9d1-6114-4d77-8dbc-62f087453cfc))
(no_connect (at 149.098 129.413) (uuid a1d1a0a5-0b06-4844-a7d2-e6a7e789d0ad))
(no_connect (at 149.098 121.793) (uuid ddd681ee-9bdf-4a71-a2f6-361095b0618c))
(no_connect (at 113.538 121.793) (uuid f4b118f1-3862-432f-9616-509d1dc38f0d))
(wire (pts (xy 113.538 126.873) (xy 149.098 126.873))
(stroke (width 0) (type default))
(uuid 01aaa46b-542d-4e7f-aa3f-d9fd9e65d96c)
)
(wire (pts (xy 85.852 127.254) (xy 91.567 127.254))
(stroke (width 0) (type default))
(uuid 0eabe846-5555-422e-9dda-d1048f8cede3)
)
(wire (pts (xy 192.024 142.113) (xy 205.613 142.113))
(stroke (width 0) (type default))
(uuid 15afc7e4-0112-4961-b3ba-83e50ebf44bf)
)
(wire (pts (xy 189.484 139.446) (xy 192.024 139.446))
(stroke (width 0) (type default))
(uuid 179a441e-8a27-4f8c-b6fe-519781598246)
)
(wire (pts (xy 182.245 139.446) (xy 186.309 139.446))
(stroke (width 0) (type default))
(uuid 264d6144-2faf-4f1b-be79-3631889c2d57)
)
(wire (pts (xy 186.309 139.446) (xy 189.484 139.446))
(stroke (width 0) (type default))
(uuid 3baf081b-3ec1-47e1-9b9c-d3ac7e48853a)
)
(wire (pts (xy 149.098 126.873) (xy 151.765 126.873))
(stroke (width 0) (type default))
(uuid 4395f2bc-0269-4a9f-8126-b0ed16821574)
)
(wire (pts (xy 149.098 134.493) (xy 149.098 154.813))
(stroke (width 0) (type default))
(uuid 4d6603d8-dfb3-4062-b5c3-355b50030988)
)
(wire (pts (xy 151.765 116.713) (xy 171.069 116.713))
(stroke (width 0) (type default))
(uuid 518cc5ba-6187-403b-83e0-c585d7019a4f)
)
(wire (pts (xy 158.75 154.813) (xy 182.245 154.813))
(stroke (width 0) (type default))
(uuid 5b28cec9-283e-4fdf-a491-7f33f3db3e19)
)
(wire (pts (xy 182.245 154.813) (xy 205.613 154.813))
(stroke (width 0) (type default))
(uuid 6b3b58bb-c7af-4690-871e-b506367765b3)
)
(wire (pts (xy 151.765 116.713) (xy 149.098 116.713))
(stroke (width 0) (type default))
(uuid 74887dd6-c325-4917-bb6b-9ffc82c5dfad)
)
(wire (pts (xy 182.245 154.686) (xy 182.245 154.813))
(stroke (width 0) (type default))
(uuid 83b51f19-6243-4872-b576-3402f156b779)
)
(wire (pts (xy 85.852 132.334) (xy 87.376 132.334))
(stroke (width 0) (type default))
(uuid 9ca8ef67-a50c-42be-856d-6181de9dc859)
)
(wire (pts (xy 149.098 124.333) (xy 151.638 124.333))
(stroke (width 0) (type default))
(uuid a7ab62b1-dc83-4f51-9233-5fb772598883)
)
(wire (pts (xy 186.309 119.253) (xy 186.309 139.446))
(stroke (width 0) (type default))
(uuid b712fef5-28c3-49c3-9292-2a02ffb958e1)
)
(wire (pts (xy 205.613 142.113) (xy 214.884 142.113))
(stroke (width 0) (type default))
(uuid bc15f252-8881-4022-b1cc-3a7060a704ae)
)
(wire (pts (xy 149.098 154.813) (xy 158.75 154.813))
(stroke (width 0) (type default))
(uuid bc55e81b-4d0f-4781-a853-cc0e0d052af1)
)
(wire (pts (xy 85.852 134.874) (xy 87.376 134.874))
(stroke (width 0) (type default))
(uuid be12ab4f-e5b8-4440-8f0c-3d6cb68c24cc)
)
(wire (pts (xy 205.613 149.733) (xy 205.613 154.813))
(stroke (width 0) (type default))
(uuid d1fff5ba-9e85-48d5-9558-92809d3ef7e6)
)
(wire (pts (xy 205.613 144.653) (xy 214.884 144.653))
(stroke (width 0) (type default))
(uuid d8b97cfa-4ac4-4dd3-bd2f-27ba594f5395)
)
(wire (pts (xy 75.692 142.494) (xy 78.232 142.494))
(stroke (width 0) (type default))
(uuid db30cd31-9924-4262-9ae7-8611c4f7fef3)
)
(wire (pts (xy 205.613 147.193) (xy 214.884 147.193))
(stroke (width 0) (type default))
(uuid e5833a11-94df-464c-865b-f9e04fc5c3bf)
)
(wire (pts (xy 205.613 154.813) (xy 214.884 154.813))
(stroke (width 0) (type default))
(uuid ea37baab-0b48-41fc-a6ef-31ae7814c9bb)
)
(wire (pts (xy 113.538 124.333) (xy 149.098 124.333))
(stroke (width 0) (type default))
(uuid ea9ebd43-2488-404a-8694-35a901f959d6)
)
(wire (pts (xy 192.024 139.446) (xy 192.024 142.113))
(stroke (width 0) (type default))
(uuid ec7bbf69-b7ab-484d-9a61-6fb8a749c321)
)
(wire (pts (xy 205.613 149.733) (xy 214.884 149.733))
(stroke (width 0) (type default))
(uuid f026dc49-acf1-4b91-ae9e-87aa1e372031)
)
(label "DN" (at 151.765 126.873 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 009d1281-875e-441a-a0fb-28fbd4f26a10)
)
(label "DP" (at 206.6798 147.193 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1681f569-866b-4722-9046-89f5892d25d0)
)
(label "DN" (at 206.5528 144.653 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 22748f97-9a50-4497-8ff8-09254f316486)
)
(label "5V" (at 196.215 142.113 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 62585b9e-1a14-4233-99f3-3be747fe55e8)
)
(label "DP" (at 151.638 124.333 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 66b14ac8-6597-431a-8d20-8a0998832d3d)
)
(label "DN" (at 87.376 134.874 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 78a73ab3-7384-4502-a3aa-be2e7361ab97)
)
(label "VCC_5V" (at 85.852 127.254 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 89e4b302-f7f1-49a2-b2d3-439aa92de4eb)
)
(label "VCC_5V" (at 155.321 116.713 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9adbc52d-1976-4e96-8ef2-dd7ce774ffe6)
)
(label "DP" (at 87.376 132.334 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c7ed04da-cd21-45c0-8e1d-2116451c73e5)
)
(symbol (lib_id "Connector_Generic_MountingPin:Conn_01x01_MountingPin") (at 171.069 121.793 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0bbfebaa-9d97-48c4-ae16-5ccfb7e3a4d8)
(property "Reference" "J3" (at 173.99 122.428 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Conn_01x01_MountingPin" (at 173.99 123.698 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Connector_Pin:Pin_D1.0mm_L10.0mm" (at 171.069 121.793 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 171.069 121.793 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 18e6b7f1-f941-492f-a534-0c2eaafe8f79))
(pin "MP" (uuid 1f1dd4e2-0129-43c4-b310-1cf7b118f79f))
(instances
(project "usb test board"
(path "/8f52a1f3-af29-4f09-ad4b-07320ea77f78"
(reference "J3") (unit 1)
)
)
)
)
(symbol (lib_id "USB4110GFA:USB4110GFA") (at 131.318 124.333 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3b0e5453-30c6-4de0-93d1-d54af561f34c)
(property "Reference" "J5" (at 131.318 110.49 0)
(effects (font (size 1.27 1.27)))