-
Notifications
You must be signed in to change notification settings - Fork 1
/
usbc-pp.kicad_sch
2337 lines (2294 loc) · 84.1 KB
/
usbc-pp.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 c6039e44-faee-4c41-b5d7-8163535936eb)
(paper "A4")
(lib_symbols
(symbol "Connector:USB_C_Receptacle_USB2.0" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -10.16 19.05 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "USB_C_Receptacle_USB2.0" (at 19.05 19.05 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 3.81 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (at 3.81 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "usb universal serial bus type-C USB2.0" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "USB 2.0-only Type-C Receptacle connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "USB*C*Receptacle*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "USB_C_Receptacle_USB2.0_0_0"
(rectangle (start -0.254 -17.78) (end 0.254 -16.764)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 -14.986) (end 9.144 -15.494)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 -12.446) (end 9.144 -12.954)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 -4.826) (end 9.144 -5.334)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 -2.286) (end 9.144 -2.794)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 0.254) (end 9.144 -0.254)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 2.794) (end 9.144 2.286)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 7.874) (end 9.144 7.366)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 10.414) (end 9.144 9.906)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 15.494) (end 9.144 14.986)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "USB_C_Receptacle_USB2.0_0_1"
(rectangle (start -10.16 17.78) (end 10.16 -17.78)
(stroke (width 0.254) (type default))
(fill (type background))
)
(arc (start -8.89 -3.81) (mid -6.985 -5.7067) (end -5.08 -3.81)
(stroke (width 0.508) (type default))
(fill (type none))
)
(arc (start -7.62 -3.81) (mid -6.985 -4.4423) (end -6.35 -3.81)
(stroke (width 0.254) (type default))
(fill (type none))
)
(arc (start -7.62 -3.81) (mid -6.985 -4.4423) (end -6.35 -3.81)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(rectangle (start -7.62 -3.81) (end -6.35 3.81)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(arc (start -6.35 3.81) (mid -6.985 4.4423) (end -7.62 3.81)
(stroke (width 0.254) (type default))
(fill (type none))
)
(arc (start -6.35 3.81) (mid -6.985 4.4423) (end -7.62 3.81)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(arc (start -5.08 3.81) (mid -6.985 5.7067) (end -8.89 3.81)
(stroke (width 0.508) (type default))
(fill (type none))
)
(circle (center -2.54 1.143) (radius 0.635)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(circle (center 0 -5.842) (radius 1.27)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy -8.89 -3.81)
(xy -8.89 3.81)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 3.81)
(xy -5.08 -3.81)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -5.842)
(xy 0 4.318)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -3.302)
(xy -2.54 -0.762)
(xy -2.54 0.508)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.032)
(xy 2.54 0.508)
(xy 2.54 1.778)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 4.318)
(xy 0 6.858)
(xy 1.27 4.318)
(xy -1.27 4.318)
)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(rectangle (start 1.905 1.778) (end 3.175 3.048)
(stroke (width 0.254) (type default))
(fill (type outline))
)
)
(symbol "USB_C_Receptacle_USB2.0_1_1"
(pin passive line (at 0 -22.86 90) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "A1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -22.86 90) (length 5.08) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "A12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 15.24 180) (length 5.08)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "A4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 10.16 180) (length 5.08)
(name "CC1" (effects (font (size 1.27 1.27))))
(number "A5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -2.54 180) (length 5.08)
(name "D+" (effects (font (size 1.27 1.27))))
(number "A6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 2.54 180) (length 5.08)
(name "D-" (effects (font (size 1.27 1.27))))
(number "A7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -12.7 180) (length 5.08)
(name "SBU1" (effects (font (size 1.27 1.27))))
(number "A8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 15.24 180) (length 5.08) hide
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "A9" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -22.86 90) (length 5.08) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "B1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -22.86 90) (length 5.08) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "B12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 15.24 180) (length 5.08) hide
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "B4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 7.62 180) (length 5.08)
(name "CC2" (effects (font (size 1.27 1.27))))
(number "B5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -5.08 180) (length 5.08)
(name "D+" (effects (font (size 1.27 1.27))))
(number "B6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 0 180) (length 5.08)
(name "D-" (effects (font (size 1.27 1.27))))
(number "B7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -15.24 180) (length 5.08)
(name "SBU2" (effects (font (size 1.27 1.27))))
(number "B8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 15.24 180) (length 5.08) hide
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "B9" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 -22.86 90) (length 5.08)
(name "SHIELD" (effects (font (size 1.27 1.27))))
(number "S1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 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" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(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 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (at -1.27 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "L" (at 1.905 0 90)
(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" "inductor choke coil reactor magnetic" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_0_1"
(arc (start 0 -2.54) (mid 0.6323 -1.905) (end 0 -1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 -1.27) (mid 0.6323 -0.635) (end 0 0)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 0) (mid 0.6323 0.635) (end 0 1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 1.27) (mid 0.6323 1.905) (end 0 2.54)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "L_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (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 "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 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" (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_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_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 "Interface_USB:FUSB302BMPX" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -10.16 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "FUSB302BMPX" (at 3.81 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_DFN_QFN:WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm" (at 0 -12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.onsemi.com/pub/Collateral/FUSB302B-D.PDF" (at 2.54 -10.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "USB USB-C PD Power Delivery PHY" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Programmable USB Type-C Controller w/PD, I2C address 0x22, WQFN-14" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "WQFN*1EP*2.5x2.5mm*P0.5mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "FUSB302BMPX_0_1"
(rectangle (start -10.16 7.62) (end 10.16 -7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "FUSB302BMPX_1_1"
(pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
(name "CC2" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 0 180) (length 2.54)
(name "CC1" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 0 180) (length 2.54) hide
(name "CC1" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 10.16 270) (length 2.54)
(name "VCONN" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 10.16 270) (length 2.54)
(name "VCONN" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -2.54 180) (length 2.54) hide
(name "CC2" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -10.16 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 2.54 180) (length 2.54)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 10.16 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 10.16 270) (length 2.54) hide
(name "VDD" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at -12.7 -2.54 0) (length 2.54)
(name "INT_N" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 2.54 0) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -10.16 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 0 3.556 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 \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(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 "usb-c:LMR36006" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "usb-c:TI-RNX0012A-VQFN-HR" (at 0 10.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/product/lmr36006?qgpn=lmr36006" (at 0 12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LMR36006_0_1"
(rectangle (start -8.89 7.62) (end 8.89 -8.89)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "LMR36006_1_1"
(pin power_in line (at 2.54 -11.43 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -11.43 2.54 0) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -11.43 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at 11.43 5.08 180) (length 2.54)
(name "SW" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -11.43 5.08 0) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 11.43 2.54 180) (length 2.54)
(name "NC/SW" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 0 180) (length 2.54)
(name "BOOT" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 0 0) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -11.43 90) (length 2.54)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 11.43 -3.81 180) (length 2.54)
(name "FB" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at -11.43 -6.35 0) (length 2.54)
(name "PG" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -3.81 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 142.875 138.43) (diameter 0) (color 0 0 0 0)
(uuid 02bc7423-862a-404f-ae8c-5f388c1f9437)
)
(junction (at 87.63 66.04) (diameter 0) (color 0 0 0 0)
(uuid 0c213450-b220-484b-bfe4-a9ed9ba17f79)
)
(junction (at 85.09 156.845) (diameter 0) (color 0 0 0 0)
(uuid 20a26f6c-9e22-4bea-a24b-e35f66495200)
)
(junction (at 51.435 140.97) (diameter 0) (color 0 0 0 0)
(uuid 2fecc546-a492-4573-aade-ec72cdd3cc8c)
)
(junction (at 131.445 150.495) (diameter 0) (color 0 0 0 0)
(uuid 3455c798-7ca1-44e0-83cd-c2d745185d9c)
)
(junction (at 42.545 156.845) (diameter 0) (color 0 0 0 0)
(uuid 37f06e48-b83e-4817-b8aa-fa1da676c52d)
)
(junction (at 102.87 90.17) (diameter 0) (color 0 0 0 0)
(uuid 3a883615-0bc6-42bb-85dc-071bdfc9e06c)
)
(junction (at 131.445 138.43) (diameter 0) (color 0 0 0 0)
(uuid 4896b6a8-cc27-4127-a296-5b3ff88dbb0e)
)
(junction (at 87.63 90.17) (diameter 0) (color 0 0 0 0)
(uuid 4c8c6883-f561-45d3-b98f-d420df22d720)
)
(junction (at 49.53 83.82) (diameter 0) (color 0 0 0 0)
(uuid 4f888c6b-c321-4b5f-97c2-3ef7aa5a23ec)
)
(junction (at 72.39 66.04) (diameter 0) (color 0 0 0 0)
(uuid 5394d721-0af1-4729-8e6a-02029155370e)
)
(junction (at 102.87 66.04) (diameter 0) (color 0 0 0 0)
(uuid 5806af3e-2e52-486e-9720-8cdee8ae60b3)
)
(junction (at 114.3 90.17) (diameter 0) (color 0 0 0 0)
(uuid 5925343f-3139-4806-8717-6b2d3ca95b4d)
)
(junction (at 51.435 138.43) (diameter 0) (color 0 0 0 0)
(uuid 60c8c21a-9eb0-43f7-97a3-fd7979f4da41)
)
(junction (at 42.545 138.43) (diameter 0) (color 0 0 0 0)
(uuid 674bb377-148a-4e37-80e4-c7f90a321d20)
)
(junction (at 110.49 90.17) (diameter 0) (color 0 0 0 0)
(uuid 6d117d1d-d9f7-4d69-8b7b-75ac93b6a742)
)
(junction (at 118.11 68.58) (diameter 0) (color 0 0 0 0)
(uuid 6d82741c-8310-4ec9-9dd4-f48cdbaf9b5e)
)
(junction (at 80.01 90.17) (diameter 0) (color 0 0 0 0)
(uuid 737da69f-14a6-4367-9b15-52b82145acba)
)
(junction (at 118.11 90.17) (diameter 0) (color 0 0 0 0)
(uuid 80661f8e-c33d-49c2-84fa-11865b4957ca)
)
(junction (at 123.19 150.495) (diameter 0) (color 0 0 0 0)
(uuid 82efa2e5-9ac9-4d61-bac7-fec84a0b3cf3)
)
(junction (at 135.89 55.88) (diameter 0) (color 0 0 0 0)
(uuid 853d7718-5b07-452d-93e6-f4f6f836abef)
)
(junction (at 72.39 90.17) (diameter 0) (color 0 0 0 0)
(uuid 8fe4e469-9d8d-4c33-ae6c-4c09f0f9b0e6)
)
(junction (at 51.435 156.845) (diameter 0) (color 0 0 0 0)
(uuid 923d987b-e513-4bfe-af8b-4442050e2d04)
)
(junction (at 148.59 55.88) (diameter 0) (color 0 0 0 0)
(uuid 946021e1-f155-4c5b-8357-720c32c82d00)
)
(junction (at 33.655 156.845) (diameter 0) (color 0 0 0 0)
(uuid 9a845ca8-caf8-4936-a2e1-b0d1d4e8cea4)
)
(junction (at 133.35 90.17) (diameter 0) (color 0 0 0 0)
(uuid a3c96f33-0821-4a30-8c85-821ef202d285)
)
(junction (at 71.12 140.97) (diameter 0) (color 0 0 0 0)
(uuid aeb3eed3-3007-40d4-905b-2ad9ad76c2fd)
)
(junction (at 108.585 138.43) (diameter 0) (color 0 0 0 0)
(uuid aecf9c1e-6796-4f63-87a5-91fbcf88f9ae)
)
(junction (at 49.53 78.74) (diameter 0) (color 0 0 0 0)
(uuid af198065-a679-4701-8c88-285cb856f352)
)
(junction (at 95.25 66.04) (diameter 0) (color 0 0 0 0)
(uuid b46ac5b0-dc63-4f40-9918-2de5a61cecd0)
)
(junction (at 33.655 138.43) (diameter 0) (color 0 0 0 0)
(uuid bd53d577-6a1f-4013-ad05-45872fc6e6aa)
)
(junction (at 64.77 66.04) (diameter 0) (color 0 0 0 0)
(uuid c832b459-3f82-4164-8780-61bac554d81c)
)
(junction (at 80.01 66.04) (diameter 0) (color 0 0 0 0)
(uuid ca2c0053-1915-468f-a0df-317fbe1ee014)
)
(junction (at 99.06 138.43) (diameter 0) (color 0 0 0 0)
(uuid d43a1979-0051-48ed-9165-3c41863adc69)
)
(junction (at 133.35 50.165) (diameter 0) (color 0 0 0 0)
(uuid da74bb22-91cc-48ca-b895-295e820423ac)
)
(junction (at 133.35 55.88) (diameter 0) (color 0 0 0 0)
(uuid dea39f48-40e4-498b-80be-b654d0afa0db)
)
(junction (at 32.385 107.95) (diameter 0) (color 0 0 0 0)
(uuid e2abf43f-8b4c-4985-a21e-92b579d2c0ac)
)
(junction (at 110.49 71.12) (diameter 0) (color 0 0 0 0)
(uuid f0e2e18e-0136-4087-901b-6f7c2c7230ac)
)
(junction (at 95.25 90.17) (diameter 0) (color 0 0 0 0)
(uuid f13bc82a-ee8a-4bec-a225-8372f833aa29)
)
(junction (at 130.81 55.88) (diameter 0) (color 0 0 0 0)
(uuid fcc1bdf9-a113-43d1-b5f4-7649bdb5bf2d)
)
(junction (at 123.19 138.43) (diameter 0) (color 0 0 0 0)
(uuid ff3dc5b2-e93f-4e8d-83cf-3c10e44af81d)
)
(wire (pts (xy 133.35 46.355) (xy 133.35 50.165))
(stroke (width 0) (type default))
(uuid 0755cf58-8117-41c3-8f6d-29885b08f7fd)
)
(wire (pts (xy 102.87 66.04) (xy 120.65 66.04))
(stroke (width 0) (type default))
(uuid 09b30658-6181-4e4e-99b8-4dec799cbe7f)
)
(wire (pts (xy 42.545 138.43) (xy 33.655 138.43))
(stroke (width 0) (type default))
(uuid 0b142eeb-49fe-4f09-8e31-ae787fe979d0)
)
(wire (pts (xy 87.63 90.17) (xy 95.25 90.17))
(stroke (width 0) (type default))
(uuid 0c2c3ccf-c016-45e1-ae6b-03b017225b5f)
)
(wire (pts (xy 47.625 78.74) (xy 49.53 78.74))
(stroke (width 0) (type default))
(uuid 0f89ded0-60ed-42f6-a8e2-517686efa7d0)
)
(wire (pts (xy 82.55 156.845) (xy 85.09 156.845))
(stroke (width 0) (type default))
(uuid 11041b58-6859-4250-adf9-e153f380b2cc)
)
(wire (pts (xy 64.77 90.17) (xy 72.39 90.17))
(stroke (width 0) (type default))
(uuid 13d48a0f-8a17-4d11-a1b3-43ef54c4d3be)
)
(wire (pts (xy 59.69 73.66) (xy 59.69 71.12))
(stroke (width 0) (type default))
(uuid 19a9a6fe-a942-489e-8fc5-812a69506532)
)
(wire (pts (xy 148.59 90.17) (xy 133.35 90.17))
(stroke (width 0) (type default))
(uuid 1a11d0da-c432-4a02-a03e-5645e7fc849e)
)
(wire (pts (xy 51.435 140.97) (xy 71.12 140.97))
(stroke (width 0) (type default))
(uuid 1a1d3844-b5ea-4e30-bf01-2f1c03f9b864)
)
(wire (pts (xy 106.68 143.51) (xy 108.585 143.51))
(stroke (width 0) (type default))
(uuid 1b83cffb-fdac-4517-b95a-a8926b1c0255)
)
(wire (pts (xy 57.15 68.58) (xy 118.11 68.58))
(stroke (width 0) (type default))
(uuid 1d1bd566-99f4-4647-8e89-858e02f2d641)
)
(wire (pts (xy 42.545 138.43) (xy 42.545 143.51))
(stroke (width 0) (type default))
(uuid 1fd39f88-aefc-4744-a40b-4bd03540b8ab)
)
(wire (pts (xy 130.81 55.88) (xy 133.35 55.88))
(stroke (width 0) (type default))
(uuid 22b63941-47b4-412d-bd9b-a04276bb0dd7)
)
(wire (pts (xy 49.53 83.82) (xy 49.53 86.36))
(stroke (width 0) (type default))
(uuid 239268e8-07ac-40a1-9d56-d3959b61a1db)
)
(wire (pts (xy 146.05 71.12) (xy 150.495 71.12))
(stroke (width 0) (type default))
(uuid 23dcb99e-fd84-48ea-b3f2-320b40f19260)
)
(wire (pts (xy 42.545 156.845) (xy 42.545 161.29))
(stroke (width 0) (type default))
(uuid 25c12751-c075-4abb-bd7d-79de2156b273)
)
(wire (pts (xy 80.01 90.17) (xy 87.63 90.17))
(stroke (width 0) (type default))
(uuid 26a1961e-d1c7-4651-9602-cc675466a071)
)
(wire (pts (xy 102.87 90.17) (xy 110.49 90.17))
(stroke (width 0) (type default))
(uuid 28d350fe-f013-44fc-a2a0-188d659591e8)
)
(wire (pts (xy 99.06 140.97) (xy 96.52 140.97))
(stroke (width 0) (type default))
(uuid 2a1342c4-abac-44c7-98b6-6102b66cbae3)
)
(wire (pts (xy 95.25 66.04) (xy 95.25 73.66))
(stroke (width 0) (type default))
(uuid 2b11da62-99ca-4e66-96fc-d4be801f8529)
)
(wire (pts (xy 85.09 156.845) (xy 85.09 161.29))
(stroke (width 0) (type default))
(uuid 2cb7caed-9566-4414-a485-89c4d4fd2ab5)
)
(wire (pts (xy 96.52 143.51) (xy 99.06 143.51))
(stroke (width 0) (type default))
(uuid 2e194547-f639-4da7-b262-91a70e37cd00)
)
(wire (pts (xy 133.35 90.17) (xy 133.35 112.395))
(stroke (width 0) (type default))
(uuid 311b381d-af50-4d94-81ba-dc928a44f394)
)
(wire (pts (xy 24.765 151.13) (xy 24.765 156.845))
(stroke (width 0) (type default))
(uuid 318ac0b3-6736-4723-9812-9707b3999efe)
)
(wire (pts (xy 118.11 90.17) (xy 133.35 90.17))
(stroke (width 0) (type default))
(uuid 3268550e-ce4c-465a-87d8-97697f791320)
)
(wire (pts (xy 60.325 156.845) (xy 51.435 156.845))
(stroke (width 0) (type default))
(uuid 3421a182-088d-46cb-9798-619743245672)
)
(wire (pts (xy 51.435 156.845) (xy 42.545 156.845))
(stroke (width 0) (type default))
(uuid 39d3210f-00a7-4698-8741-5c4c9e58ce7e)
)
(wire (pts (xy 47.625 71.12) (xy 57.15 71.12))
(stroke (width 0) (type default))
(uuid 39fa3aa8-4576-412a-b00d-581318757f12)
)
(wire (pts (xy 130.81 58.42) (xy 130.81 55.88))
(stroke (width 0) (type default))
(uuid 3a2b29f1-b65f-4055-8398-7cfaaac712d6)
)
(wire (pts (xy 114.3 90.17) (xy 118.11 90.17))
(stroke (width 0) (type default))
(uuid 3ba073c8-f4da-4f73-859f-3ef404efb074)
)
(wire (pts (xy 131.445 148.59) (xy 131.445 150.495))
(stroke (width 0) (type default))
(uuid 3c42f94b-d850-4e18-89db-7e1791e80735)
)
(wire (pts (xy 142.875 151.13) (xy 142.875 161.29))
(stroke (width 0) (type default))
(uuid 4239a783-be48-4f66-8816-343975e69c5f)
)
(wire (pts (xy 60.325 151.13) (xy 60.325 156.845))
(stroke (width 0) (type default))
(uuid 4436f229-ef46-495f-bee5-f07b7da35e28)
)
(wire (pts (xy 51.435 140.97) (xy 51.435 143.51))
(stroke (width 0) (type default))
(uuid 480e691e-03da-4ba6-aee0-90acfe866f47)
)
(wire (pts (xy 80.01 66.04) (xy 87.63 66.04))
(stroke (width 0) (type default))
(uuid 4b1cdf53-63a5-4a19-b56e-60f3c9841856)
)
(wire (pts (xy 33.655 138.43) (xy 33.655 143.51))
(stroke (width 0) (type default))
(uuid 4bae2ed8-400b-4b46-98a8-3e1e3ef2897f)
)
(wire (pts (xy 133.35 50.165) (xy 138.43 50.165))
(stroke (width 0) (type default))
(uuid 4db8789a-029b-4a70-8a7d-3084ac4673a0)
)
(wire (pts (xy 72.39 81.28) (xy 72.39 90.17))
(stroke (width 0) (type default))
(uuid 4fed404c-9b46-4586-9a2b-61fcc49f5676)
)
(wire (pts (xy 47.625 73.66) (xy 59.69 73.66))
(stroke (width 0) (type default))
(uuid 524d9faf-5657-42b3-82e6-31569aa7a4f5)
)
(wire (pts (xy 127.635 55.88) (xy 130.81 55.88))
(stroke (width 0) (type default))
(uuid 570dad4a-2d68-4c84-92d6-736be517027d)
)
(wire (pts (xy 87.63 66.04) (xy 87.63 73.66))
(stroke (width 0) (type default))
(uuid 5b54b78a-5293-44f9-9e59-eab0281f6b60)
)
(wire (pts (xy 82.55 154.94) (xy 82.55 156.845))
(stroke (width 0) (type default))
(uuid 5b96b307-c549-4d91-8c55-a4afa5b59569)
)
(wire (pts (xy 123.19 138.43) (xy 131.445 138.43))
(stroke (width 0) (type default))
(uuid 5e6e19a9-47d1-40c4-815c-3c3b36b543e8)
)
(wire (pts (xy 72.39 90.17) (xy 80.01 90.17))
(stroke (width 0) (type default))
(uuid 609a29ef-d6f5-4541-9d75-1b59d66b3ae2)
)
(wire (pts (xy 80.01 66.04) (xy 80.01 73.66))
(stroke (width 0) (type default))
(uuid 62824b9a-087e-41bf-ac67-874b97a2f325)
)
(wire (pts (xy 102.87 81.28) (xy 102.87 90.17))
(stroke (width 0) (type default))
(uuid 63591fb5-f613-4ef9-b9a1-5108a9ef0f9c)
)
(wire (pts (xy 110.49 71.12) (xy 120.65 71.12))
(stroke (width 0) (type default))
(uuid 666cd304-4a68-4f39-9346-2093850fa2ce)
)
(wire (pts (xy 118.11 81.28) (xy 118.11 90.17))
(stroke (width 0) (type default))
(uuid 6a89a321-a8e3-4451-b07b-435fdc2c8998)
)
(wire (pts (xy 142.875 143.51) (xy 142.875 138.43))
(stroke (width 0) (type default))
(uuid 6ad2d455-0ccd-44ee-a634-6366671d4c88)
)
(wire (pts (xy 51.435 151.13) (xy 51.435 156.845))
(stroke (width 0) (type default))
(uuid 6f4f67e4-3f0d-45f0-b551-55d01173a478)
)
(wire (pts (xy 110.49 81.28) (xy 110.49 90.17))
(stroke (width 0) (type default))
(uuid 6fb33b9f-6875-4429-a4a1-d657218bc8fa)
)
(wire (pts (xy 95.25 81.28) (xy 95.25 90.17))
(stroke (width 0) (type default))
(uuid 708f118f-bbbe-456c-b636-fb4373000d89)
)
(wire (pts (xy 123.19 150.495) (xy 131.445 150.495))
(stroke (width 0) (type default))
(uuid 70f3e2b6-f8d9-4278-9b4e-444dcd023548)
)
(wire (pts (xy 99.06 138.43) (xy 108.585 138.43))
(stroke (width 0) (type default))
(uuid 71524649-a2a0-4644-8387-04b0c5751304)
)
(wire (pts (xy 64.77 81.28) (xy 64.77 90.17))
(stroke (width 0) (type default))
(uuid 71603b0c-c62a-4fe0-85e1-a98d855003f1)
)
(wire (pts (xy 24.765 107.95) (xy 32.385 107.95))
(stroke (width 0) (type default))
(uuid 74076ee4-4d6d-48ff-ab05-0a11202dac43)
)
(wire (pts (xy 95.25 66.04) (xy 102.87 66.04))
(stroke (width 0) (type default))
(uuid 7590a2a2-cd70-40e0-9fa0-91b4cc451a3e)
)
(wire (pts (xy 64.77 66.04) (xy 64.77 73.66))
(stroke (width 0) (type default))
(uuid 76ff2fd2-453b-478f-a2b0-7bb9e1d4f147)
)
(wire (pts (xy 135.89 55.88) (xy 135.89 58.42))
(stroke (width 0) (type default))
(uuid 78eefdde-b0e8-489d-8c13-209e8fb3a263)
)