-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvl670.net
1804 lines (1804 loc) · 69.8 KB
/
vl670.net
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
(export (version D)
(design
(source /home/user/QubesIncoming/crypto/pcb/hisolator/vl670/vl670/vl670.sch)
(date "Thu Sep 23 01:47:17 2021")
(tool "Eeschema 5.1.10-6.fc33")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Main Schematic - VL670 Development Board")
(company "Copyright (C) 2021 Tom Li (niconiconi)")
(rev v0.01-dev)
(date 2021-06-29)
(source vl670.sch)
(comment (number 1) (value https://creativecommons.org/publicdomain/zero/1.0/))
(comment (number 2) (value "the designer has waived all copyright and related or neighboring rights."))
(comment (number 3) (value "To the extent possible under law,"))
(comment (number 4) (value "License: CC 0, “No Rights Reserved”"))))
(sheet (number 2) (name "/USB AC CAP/ESD/MUX/") (tstamps /60085564/)
(title_block
(title "USB-C Schematic - VL670 Development Board")
(company "Copyright (C) 2021 Tom Li (niconiconi)")
(rev v0.01)
(date 2021-06-29)
(source usb-c.sch)
(comment (number 1) (value https://creativecommons.org/publicdomain/zero/1.0/))
(comment (number 2) (value "the designer has waived all copyright and related or neighboring rights."))
(comment (number 3) (value "To the extent possible under law,"))
(comment (number 4) (value "License: CC 0, “No Rights Reserved”"))))
(sheet (number 3) (name /eeprom/) (tstamps /60B512DF/)
(title_block
(title "EEPROM and SPI Schematic - VL670 Development Board")
(company "Copyright (C) 2021 Tom Li (niconiconi)")
(rev v0.01)
(date 2021-06-29)
(source eeprom.sch)
(comment (number 1) (value https://creativecommons.org/publicdomain/zero/1.0/))
(comment (number 2) (value "the designer has waived all copyright and related or neighboring rights."))
(comment (number 3) (value "To the extent possible under law,"))
(comment (number 4) (value "License: CC 0, “No Rights Reserved”"))))
(sheet (number 4) (name /layout/) (tstamps /60C6101E/)
(title_block
(title "PCB-specific Schematic - VL670 Development Board")
(company "Copyright (C) 2021 Tom Li (niconiconi)")
(rev v0.01)
(date 2021-06-29)
(source layout.sch)
(comment (number 1) (value https://creativecommons.org/publicdomain/zero/1.0/))
(comment (number 2) (value "the designer has waived all copyright and related or neighboring rights."))
(comment (number 3) (value "To the extent possible under law,"))
(comment (number 4) (value "License: CC 0, “No Rights Reserved”")))))
(components
(comp (ref R4)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FCCDE94))
(comp (ref R6)
(value 0R)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD161E5))
(comp (ref Y1)
(value 25MHz)
(footprint Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm)
(datasheet ~)
(fields
(field (name Parameter) Cl=10pF))
(libsource (lib Device) (part Crystal_GND24) (description "Four pin crystal, GND on pins 2 and 4"))
(sheetpath (names /) (tstamps /))
(tstamp 5F845F29))
(comp (ref R5)
(value 11.3k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Tolerance) 1%))
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE3B6E7))
(comp (ref C13)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FCD98BF))
(comp (ref J4)
(value "USB3_A Receptacle")
(footprint vl670:USB3_A_Receptacle_XKB_U231-091N-4BLRA00-S-1)
(datasheet ~)
(libsource (lib Connector) (part USB3_A) (description "USB 3.0 A connector"))
(sheetpath (names /) (tstamps /))
(tstamp 604983E0))
(comp (ref R7)
(value 0R)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60761FDB))
(comp (ref R8)
(value 0R)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 607627E2))
(comp (ref U4)
(value TPS2061C-PXLI)
(footprint Package_TO_SOT_SMD:SOT-23-5_HandSoldering)
(datasheet https://www.ti.com/lit/gpn/tps2061c)
(libsource (lib vl670) (part TPS2061C) (description "1.0A, 4.5-5.5V USB power switch, active-low enable, output discharge"))
(sheetpath (names /) (tstamps /))
(tstamp 605C86BA))
(comp (ref R9)
(value 470R)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 61B5EC77))
(comp (ref R3)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6026D222))
(comp (ref C31)
(value 470nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 602DF1BC))
(comp (ref C32)
(value 470nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 602DF1D2))
(comp (ref C33)
(value 470nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 603DC68D))
(comp (ref C34)
(value 470nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 603EC4B0))
(comp (ref C41)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60400542))
(comp (ref C42)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60400776))
(comp (ref C43)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60400792))
(comp (ref C44)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 604007A2))
(comp (ref C35)
(value 470nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 604353DE))
(comp (ref R2)
(value 0R)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Install) NC))
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6027F301))
(comp (ref R1)
(value 0R)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Install) NC))
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6027A505))
(comp (ref J2)
(value USB_C_Receptacle)
(footprint vl670:USB_C_Receptacle_XKB_U262-241N-4BV60)
(datasheet https://www.usb.org/sites/default/files/documents/usb_type-c.zip)
(libsource (lib Connector) (part USB_C_Receptacle) (description "USB Full-Featured Type-C Receptacle connector"))
(sheetpath (names /) (tstamps /))
(tstamp 6001F703))
(comp (ref D13)
(value ESD7951S)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60EF63F7))
(comp (ref D15)
(value ESD7951S)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60EF6401))
(comp (ref D16)
(value ESD7951S)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60EF640B))
(comp (ref D17)
(value ESD7951S)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60EF641F))
(comp (ref D14)
(value ESD5B5.0ST1G-N)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60EF6415))
(comp (ref JP2)
(value SolderJumper_2_Bridged)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Bridged) (description "Solder Jumper, 2-pole, closed/bridged"))
(sheetpath (names /) (tstamps /))
(tstamp 61CB65FE))
(comp (ref J5)
(value Conn_01x02_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 61A1F5FF))
(comp (ref D18)
(value ESD7951S)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60EF6034))
(comp (ref R15)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 608A3AA8))
(comp (ref D3)
(value ESD7104)
(footprint vl670:OnSemi_UDFN-10_1.0x2.5mm_P0.5mm)
(datasheet https://www.onsemi.com/pub/Collateral/ESD7104-D.PDF)
(libsource (lib vl670) (part ESD7104) (description "Low Capacitance ESD Protection Diodefor High Speed Data Line, 2 Channels, UDFN-10/WDFNW-10"))
(sheetpath (names /) (tstamps /))
(tstamp 604983EA))
(comp (ref D2)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 61B69FA3))
(comp (ref U2)
(value VL670)
(footprint Package_DFN_QFN:QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm)
(libsource (lib vl670) (part VL670) (description "USB 3 Super Speed to USB 2 High Speed Transaction Translator, VIA Labs, QFN-48"))
(sheetpath (names /) (tstamps /))
(tstamp 5FC75CE3))
(comp (ref R19)
(value 0R)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6092DAD1))
(comp (ref L1)
(value 4.7uH)
(footprint Inductor_SMD:L_1008_2520Metric_Pad1.43x2.20mm_HandSolder)
(datasheet ~)
(fields
(field (name Brand) "L1: Sunlord")
(field (name "Part Number") SPH252012H4R7MT))
(libsource (lib Device) (part L_Small) (description "Inductor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FC96A7A))
(comp (ref C61)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6054C690))
(comp (ref C62)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6054C939))
(comp (ref C11)
(value 18pF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Grade) NP0))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F845F1B))
(comp (ref C10)
(value 18pF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Grade) NP0))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E741279))
(comp (ref C8)
(value 220nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 609AE51A))
(comp (ref C7)
(value 220nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 609AE13A))
(comp (ref R20)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 61D6C1E1))
(comp (ref R21)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 60D3D349))
(comp (ref D6)
(value ESD7104)
(footprint vl670:OnSemi_UDFN-10_1.0x2.5mm_P0.5mm)
(datasheet https://www.onsemi.com/pub/Collateral/ESD7104-D.PDF)
(libsource (lib vl670) (part ESD7104) (description "Low Capacitance ESD Protection Diodefor High Speed Data Line, 2 Channels, UDFN-10/WDFNW-10"))
(sheetpath (names /) (tstamps /))
(tstamp 6046BFCB))
(comp (ref FB1)
(value Ferrite_Bead_Small)
(footprint Inductor_SMD:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6122E4EF))
(comp (ref C20)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 608C5884))
(comp (ref C52)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6069AFD4))
(comp (ref C51)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6069AD6A))
(comp (ref R23)
(value 0R5)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 617165BA))
(comp (ref C19)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 608992C0))
(comp (ref R22)
(value 0R5)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 617B98B5))
(comp (ref J3)
(value Conn_01x08_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Male) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 613F2C9C))
(comp (ref R13)
(value 470R)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6155423C))
(comp (ref D12)
(value ESD7951S)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 609A27AC))
(comp (ref D11)
(value ESD7951S)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 609A27A2))
(comp (ref D10)
(value ESD7951S)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 609A2548))
(comp (ref D9)
(value ESD7951S)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 6098C822))
(comp (ref D8)
(value ESD7951S)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60976B35))
(comp (ref D7)
(value ESD5B5.0ST1G-N)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 60915659))
(comp (ref D19)
(value ESD7951S)
(footprint Diode_SMD:D_SOD-523)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 61757663))
(comp (ref D20)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 6141C9C6))
(comp (ref R24)
(value 470R)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 6141EC3B))
(comp (ref J1)
(value Conn_01x07_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x07_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x07_Male) (description "Generic connector, single row, 01x07, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 60C3937B))
(comp (ref D1)
(value ESD7104)
(footprint vl670:OnSemi_UDFN-10_1.0x2.5mm_P0.5mm)
(datasheet https://www.onsemi.com/pub/Collateral/ESD7104-D.PDF)
(libsource (lib vl670) (part ESD7104) (description "Low Capacitance ESD Protection Diodefor High Speed Data Line, 2 Channels, UDFN-10/WDFNW-10"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 604F2862))
(comp (ref D4)
(value ESD7104)
(footprint vl670:OnSemi_UDFN-10_1.0x2.5mm_P0.5mm)
(datasheet https://www.onsemi.com/pub/Collateral/ESD7104-D.PDF)
(libsource (lib vl670) (part ESD7104) (description "Low Capacitance ESD Protection Diodefor High Speed Data Line, 2 Channels, UDFN-10/WDFNW-10"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 60535F6E))
(comp (ref R12)
(value 1.8M)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Tolerance) 1%))
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 5FD0592B))
(comp (ref R14)
(value 200k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 5FD868A6))
(comp (ref D5)
(value ESD7104)
(footprint vl670:OnSemi_UDFN-10_1.0x2.5mm_P0.5mm)
(datasheet https://www.onsemi.com/pub/Collateral/ESD7104-D.PDF)
(libsource (lib vl670) (part ESD7104) (description "Low Capacitance ESD Protection Diodefor High Speed Data Line, 2 Channels, UDFN-10/WDFNW-10"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 5FFD97ED))
(comp (ref C25)
(value 470nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 5FE72F82))
(comp (ref C12)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 5FE7CBDA))
(comp (ref C5)
(value 220nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 60F44413))
(comp (ref C6)
(value 220nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 60F44419))
(comp (ref R16)
(value 100K)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 60B29DEF))
(comp (ref R17)
(value 100K)
(footprint Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 60B2F7A0))
(comp (ref U1)
(value HD3SS3220)
(footprint vl670:Texas_VQFN-RNH-30)
(libsource (lib vl670) (part HD3SS3220) (description "USB Type-C DRP Port Controller with SuperSpeed 2:1 MUX, Texas Instruments, VQFN-30"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 60228179))
(comp (ref C4)
(value 220nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 60EF5296))
(comp (ref R18)
(value 1.8M)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(fields
(field (name Tolerance) 1%))
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 60BFA35D))
(comp (ref C3)
(value 220nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 60EF5290))
(comp (ref C2)
(value 220nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 60EF52A2))
(comp (ref C1)
(value 220nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names "/USB AC CAP/ESD/MUX/") (tstamps /60085564/))
(tstamp 60EF529C))
(comp (ref U6)
(value GD25D05)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/cd4016b.pdf)
(libsource (lib vl670) (part 25LCxxx) (description "SPI Serial EEPROM, DIP-8/SOIC-8/TSSOP-8"))
(sheetpath (names /eeprom/) (tstamps /60B512DF/))
(tstamp 61456C68))
(comp (ref R10)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /eeprom/) (tstamps /60B512DF/))
(tstamp 61456C7C))
(comp (ref C22)
(value 470nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /eeprom/) (tstamps /60B512DF/))
(tstamp 61456C9A))
(comp (ref R11)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /eeprom/) (tstamps /60B512DF/))
(tstamp 607E550A))
(comp (ref JP1)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names /eeprom/) (tstamps /60B512DF/))
(tstamp 6086203D))
(comp (ref C26)
(value 470nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /eeprom/) (tstamps /60B512DF/))
(tstamp 607CC437))
(comp (ref U3)
(value 74LVC2G66)
(footprint Package_SO:VSSOP-8_2.4x2.1mm_P0.5mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74LVC2G66.pdf)
(libsource (lib vl670) (part 74LVC2G66) (description "Dual Analog Switches"))
(sheetpath (names /eeprom/) (tstamps /60B512DF/))
(tstamp 61B0808D))
(comp (ref U5)
(value 74LVC2G66)
(footprint Package_SO:VSSOP-8_2.4x2.1mm_P0.5mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74LVC2G66.pdf)
(libsource (lib vl670) (part 74LVC2G66) (description "Dual Analog Switches"))
(sheetpath (names /eeprom/) (tstamps /60B512DF/))
(tstamp 61B0C3AB))
(comp (ref C9)
(value 470nF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /eeprom/) (tstamps /60B512DF/))
(tstamp 61B10967))
(comp (ref C73)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 60CBBE89))
(comp (ref C74)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 60CBD769))
(comp (ref C75)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 60CD8243))
(comp (ref C76)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 60CD82EB))
(comp (ref C77)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 60CD82FA))
(comp (ref C78)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 60CD8311))
(comp (ref C79)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609B2CD4))
(comp (ref C80)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609B2DF2))
(comp (ref C81)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609B2E01))
(comp (ref C82)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609B2E17))
(comp (ref C72)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 60CBBE7E))
(comp (ref C71)
(value 470nF)
(footprint Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 60CBBE70))
(comp (ref FID8)
(value Fiducial)
(footprint vl670:StencilFiducial_0.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609F6765))
(comp (ref FID6)
(value Fiducial)
(footprint vl670:StencilFiducial_0.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609F675B))
(comp (ref FID4)
(value Fiducial)
(footprint vl670:StencilFiducial_0.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609F6751))
(comp (ref FID2)
(value Fiducial)
(footprint vl670:StencilFiducial_0.5mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609F668F))
(comp (ref FID7)
(value Fiducial)
(footprint vl670:StencilFiducial_1mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609E8380))
(comp (ref FID5)
(value Fiducial)
(footprint vl670:StencilFiducial_1mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609E81CA))
(comp (ref FID3)
(value Fiducial)
(footprint vl670:StencilFiducial_1mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609E4349))
(comp (ref FID1)
(value Fiducial)
(footprint vl670:StencilFiducial_1mm)
(datasheet ~)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 609E1399))
(comp (ref TP1)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_D1.0mm)
(datasheet ~)
(fields
(field (name Marking) 3V3))
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 613E415B))
(comp (ref TP2)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_D1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 613E8124))
(comp (ref TP3)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_D1.0mm)
(datasheet ~)
(fields
(field (name Marking) 1V2))
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 613EE06A))
(comp (ref H1)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.5mm_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 614F95F3))
(comp (ref H2)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.5mm_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 614FB012))
(comp (ref H3)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.5mm_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 614FDAB8))
(comp (ref H4)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.5mm_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /layout/) (tstamps /60C6101E/))
(tstamp 61500BBD)))
(libparts
(libpart (lib Connector) (part Conn_01x02_Male)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Conn_01x07_Male)
(description "Generic connector, single row, 01x07, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x07_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))))
(libpart (lib Connector) (part Conn_01x08_Male)
(description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x08_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))))
(libpart (lib Connector) (part TestPoint)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields
(field (name Reference) TP)
(field (name Value) TestPoint))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib Connector) (part USB3_A)
(description "USB 3.0 A connector")
(docs ~)
(fields
(field (name Reference) J)
(field (name Value) USB3_A))
(pins
(pin (num 1) (name VBUS) (type power_in))
(pin (num 2) (name D-) (type BiDi))
(pin (num 3) (name D+) (type BiDi))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name SSRX-) (type output))
(pin (num 6) (name SSRX+) (type output))
(pin (num 7) (name DRAIN) (type passive))
(pin (num 8) (name SSTX-) (type input))
(pin (num 9) (name SSTX+) (type input))
(pin (num 10) (name SHIELD) (type passive))))
(libpart (lib Connector) (part USB_C_Receptacle)
(description "USB Full-Featured Type-C Receptacle connector")
(docs https://www.usb.org/sites/default/files/documents/usb_type-c.zip)
(footprints
(fp USB*C*Receptacle*))
(fields
(field (name Reference) J)
(field (name Value) USB_C_Receptacle))
(pins
(pin (num A1) (name GND) (type passive))
(pin (num A2) (name TX1+) (type BiDi))
(pin (num A3) (name TX1-) (type BiDi))
(pin (num A4) (name VBUS) (type passive))
(pin (num A5) (name CC1) (type BiDi))
(pin (num A6) (name D+) (type BiDi))
(pin (num A7) (name D-) (type BiDi))
(pin (num A8) (name SBU1) (type BiDi))
(pin (num A9) (name VBUS) (type passive))
(pin (num A10) (name RX2-) (type BiDi))
(pin (num A11) (name RX2+) (type BiDi))
(pin (num A12) (name GND) (type passive))
(pin (num B1) (name GND) (type passive))
(pin (num B2) (name TX2+) (type BiDi))
(pin (num B3) (name TX2-) (type BiDi))
(pin (num B4) (name VBUS) (type passive))
(pin (num B5) (name CC2) (type BiDi))
(pin (num B6) (name D+) (type BiDi))
(pin (num B7) (name D-) (type BiDi))
(pin (num B8) (name SBU2) (type BiDi))
(pin (num B9) (name VBUS) (type passive))