-
Notifications
You must be signed in to change notification settings - Fork 9
/
bose-qc35-usb-c.kicad_pcb
7392 lines (7347 loc) · 337 KB
/
bose-qc35-usb-c.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Bose QC 35 USB-C connector board")
(rev "Rev 1")
(company "github.com/jamesturton/bose-qc35-usb-c")
(comment 3 "(C) 2020 James Turton")
(comment 4 "License: CC-BY-SA 4.0")
)
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" power)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010c0_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "../gerber/")
)
)
(net 0 "")
(net 1 "Net-(D1-K)")
(net 2 "Net-(D2-K)")
(net 3 "Net-(D3-K)")
(net 4 "Net-(D4-K)")
(net 5 "Net-(J2-CC1)")
(net 6 "unconnected-(J2-SBU1-PadA8)")
(net 7 "Net-(J2-CC2)")
(net 8 "unconnected-(J2-SBU2-PadB8)")
(net 9 "Net-(J3-Pin_1)")
(net 10 "Net-(J3-Pin_2)")
(net 11 "Net-(J3-Pin_4)")
(net 12 "GND")
(net 13 "VCC")
(net 14 "/LED_GREEN")
(net 15 "/LED_RED")
(net 16 "/LED_WHITE")
(net 17 "/LED_BLUE")
(net 18 "/USB_D-")
(net 19 "/USB_D+")
(net 20 "Net-(Q1-C)")
(net 21 "/LED_PWR")
(net 22 "/LED_PWR_ON")
(net 23 "/VBUS")
(net 24 "+5V")
(net 25 "/BTN_1")
(net 26 "/BTN_2")
(net 27 "/BTN_3")
(net 28 "Net-(U1-EN)")
(net 29 "Net-(U1-BP)")
(net 30 "Net-(D5-Pad1)")
(net 31 "unconnected-(U1-~{FAULT}-Pad3)")
(footprint "library:Molex_SlimStack_502426-2010_2x10_P0.40mm_Vertical" locked (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa72088)
(at 71.317771 66.354481 -145)
(descr "Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2010, 20 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex SlimStack side entry")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fa6df10")
(attr smd)
(fp_text reference "J1" (at 0 -2.65 35) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6dca076b-5422-45a6-a8f6-af904f3e85e3)
)
(fp_text value "502426-2030" (at 0 2.65 35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17bd344f-ae50-44ac-993a-012ee0d4fb6a)
)
(fp_text user "${REFERENCE}" (at 0 0 35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d621911a-ece1-41ad-a216-fa6b550b25f4)
)
(fp_line (start -3.66 -1.41) (end -2.17 -1.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b2020e1-7b40-46e1-8ae6-3f901c6a9f00))
(fp_line (start -3.66 1.41) (end -3.66 -1.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32be2f55-a6da-4a58-9279-f0240347863d))
(fp_line (start -2.17 1.41) (end -3.66 1.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0367bf22-450b-4c44-9202-3297b4c83c9d))
(fp_line (start 2.17 -1.41) (end 2.17 -1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5658f38-5913-4f7d-8cae-e7f51ddfd17a))
(fp_line (start 2.17 1.41) (end 3.66 1.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38b927fb-64ee-4b93-8fb8-8ad4cdf3fd94))
(fp_line (start 3.66 -1.41) (end 2.17 -1.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1537591-d779-432a-a801-25f337ec6d7b))
(fp_line (start 3.66 1.41) (end 3.66 -1.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d8c005c-07f9-4ddb-be10-ad6850feb52a))
(fp_line (start -4.05 -1.95) (end -4.05 1.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9bc634ad-e1df-478f-a9e8-8e2414c8a511))
(fp_line (start -4.05 1.95) (end 4.05 1.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 005bc0e5-fe41-40d6-b794-18d82d4d3741))
(fp_line (start 4.05 -1.95) (end -4.05 -1.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 879ddf3f-f5d0-4532-92db-55b2c22e0db2))
(fp_line (start 4.05 1.95) (end 4.05 -1.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e46f3c0-22c0-4bab-a3f5-25cbbe85c678))
(fp_line (start -3.55 -1.3) (end -3.55 1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b6f87128-aa4b-49eb-850a-245085dd6dfc))
(fp_line (start -3.55 1.3) (end 3.55 1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79320845-6468-46f0-b446-7ca15fccb212))
(fp_line (start 2.17 -1.3) (end 2.17 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f45c6824-cdf9-40de-af49-b179072a2d40))
(fp_line (start 3.55 -1.3) (end -3.55 -1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cab8d68-be81-4385-bde9-a66664b204d5))
(fp_line (start 3.55 1.3) (end 3.55 -1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7c086da3-4552-4d57-8ea6-783944efe3ab))
(pad "1" smd rect locked (at 1.8 -1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/LED_GREEN") (pinfunction "Pin_1") (pintype "passive") (tstamp d5e49534-255c-4fc7-9a61-47a3504fa41d))
(pad "2" smd rect locked (at 1.8 1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp e0e157c7-43cb-4334-8451-d1126f75e98e))
(pad "3" smd rect locked (at 1.4 -1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/LED_RED") (pinfunction "Pin_3") (pintype "passive") (tstamp 6ee7af55-c355-4e41-9197-6dd786f71a56))
(pad "4" smd rect locked (at 1.4 1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp a35cae2e-d310-420c-a8d7-fe1464a8f236))
(pad "5" smd rect locked (at 1 -1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/LED_WHITE") (pinfunction "Pin_5") (pintype "passive") (tstamp 5f76bce3-46d2-4595-9f99-cfd70d359a8f))
(pad "6" smd rect locked (at 1 1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 1ed463a3-950e-4cac-9996-b963cc291a5d))
(pad "7" smd rect locked (at 0.6 -1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/LED_BLUE") (pinfunction "Pin_7") (pintype "passive") (tstamp 165b1863-50ae-41fe-82d2-e012e1e4e51c))
(pad "8" smd rect locked (at 0.6 1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 9b1bab12-d38c-4f4f-b400-7ee361726eb5))
(pad "9" smd rect locked (at 0.2 -1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/USB_D-") (pinfunction "Pin_9") (pintype "passive") (tstamp 5e5913d0-f526-41cd-8fa6-dc24b9f143dd))
(pad "10" smd rect locked (at 0.2 1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "GND") (pinfunction "Pin_10") (pintype "passive") (tstamp dfdaa9fd-fa8a-4eb5-a7cf-9315d8e194d6))
(pad "11" smd rect locked (at -0.2 -1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/USB_D+") (pinfunction "Pin_11") (pintype "passive") (tstamp dea3af9f-3c5e-4ff4-9748-65a8b94831d9))
(pad "12" smd rect locked (at -0.2 1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "VCC") (pinfunction "Pin_12") (pintype "passive") (tstamp 25383bab-2ee7-498d-83db-33a4c1210956))
(pad "13" smd rect locked (at -0.6 -1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "/BTN_1") (pinfunction "Pin_13") (pintype "passive") (tstamp f21465a3-4504-4c41-9bb3-e84a0c4be710))
(pad "14" smd rect locked (at -0.6 1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "VCC") (pinfunction "Pin_14") (pintype "passive") (tstamp 6e47b5d1-1daa-46a3-8811-4b900f50fbc8))
(pad "15" smd rect locked (at -1 -1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "/BTN_2") (pinfunction "Pin_15") (pintype "passive") (tstamp 0b930178-32e1-4cd5-b50c-80c91a70fd4e))
(pad "16" smd rect locked (at -1 1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "VCC") (pinfunction "Pin_16") (pintype "passive") (tstamp 6d5f44fa-e14d-464c-b017-f4d31999be77))
(pad "17" smd rect locked (at -1.4 -1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/BTN_3") (pinfunction "Pin_17") (pintype "passive") (tstamp 3e71d577-7cc1-4afe-8493-4f73d79772d8))
(pad "18" smd rect locked (at -1.4 1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "VCC") (pinfunction "Pin_18") (pintype "passive") (tstamp 49f4f9ee-ba1b-4046-b9c0-516af2e3afed))
(pad "19" smd rect locked (at -1.8 -1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "/LED_PWR_ON") (pinfunction "Pin_19") (pintype "passive") (tstamp d7003688-0aa3-4bf1-bcf0-e1abecf3cf37))
(pad "20" smd rect locked (at -1.8 1.2125 215) (size 0.22 0.475) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "VCC") (pinfunction "Pin_20") (pintype "passive") (tstamp f1588bd3-6026-43d5-802a-a2ef3446002f))
(pad "A" smd rect locked (at 2.75 -1.085 215) (size 0.32 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "GND") (pinfunction "Pin_A") (pintype "passive") (tstamp 7fcdf1df-465b-4932-ad9a-7d7af01519a0))
(pad "A" smd rect locked (at 2.75 1.085 215) (size 0.32 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "GND") (pinfunction "Pin_A") (pintype "passive") (tstamp f9324b44-a9b5-423f-9259-15d441a47adb))
(pad "B" smd rect locked (at -2.75 -1.085 215) (size 0.32 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "VCC") (pinfunction "Pin_B") (pintype "passive") (tstamp fc70cc26-40a2-43f0-96ab-0b92d6a2415d))
(pad "B" smd rect locked (at -2.75 1.085 215) (size 0.32 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "VCC") (pinfunction "Pin_B") (pintype "passive") (tstamp c3bd3209-e9f1-401b-b679-f140f4cf2d73))
(model "${KIPRJMOD}/custom_parts/5024262030.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "library:TE_0-1734839-5_1x05-1MP_P0.5mm_Horizontal" locked (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa734e7)
(at 81.477772 62.114481 90)
(descr "TE FPC connector, 05 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0")
(tags "te fpc 1734839")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-00005faa76c8")
(attr smd)
(fp_text reference "J3" (at 0 -3.1 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 452429de-72ab-449f-b8c3-d248aea2521a)
)
(fp_text value "51281-0598" (at 0 2.05 90) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp dcfa14b5-60b3-4c9a-a338-9d0564b0e8ac)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b8e75be-a374-4b30-acb7-09cf9ec3c18b)
)
(fp_line (start -2.425 -2.31) (end -2.425 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0329a443-d93b-4374-8dfe-3bb709ffe708))
(fp_line (start -2.315 -2.31) (end -2.425 -2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db382ba5-6b4f-4c69-9edf-557183bb183f))
(fp_line (start 2.315 -2.31) (end 2.425 -2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2483fdc0-8f07-435c-9409-b84577f61b0e))
(fp_line (start 2.425 -2.31) (end 2.425 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 771d4d38-13dc-4969-8a33-ce3379e59cee))
(fp_line (start 2.3 1.55) (end -2.3 1.55)
(stroke (width 0.1) (type solid)) (layer "Dwgs.User") (tstamp de117093-56f9-48bc-a630-f3fbd6552642))
(fp_line (start -2.55 -2.8) (end -2.55 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c9e8713-b773-49f7-a8e9-cd514fba226f))
(fp_line (start -2.55 1.8) (end 2.55 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ced8e326-1521-4ef8-9058-3a5de0b72a63))
(fp_line (start 2.55 -2.8) (end -2.55 -2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fedd90d8-779b-4eaf-ae48-e3c6ec86a0e7))
(fp_line (start 2.55 1.8) (end 2.55 -2.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp be5b17de-0fdc-4a05-9022-f772aab5b31c))
(fp_line (start -2.3 -2.2) (end 2.3 -2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cfdb56d0-d729-4956-89c9-0d24d60b572e))
(fp_line (start -2.3 1.55) (end -2.3 -2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1adc86f2-589b-4b08-95a5-15c391659c59))
(fp_line (start 2.3 -2.2) (end 2.3 1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e549295-3c2b-4f28-b350-fa7ab81c07fa))
(fp_line (start 2.3 1.55) (end -2.3 1.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5830e541-80d6-4b0a-bc0f-78efe4921cee))
(pad "1" smd rect locked (at -1 -2.3 90) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(J3-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp af3fb971-419d-446d-a9dc-3970c7d0dc21))
(pad "2" smd rect locked (at -0.5 -2.3 90) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(J3-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp dcca27e6-681e-417a-862a-6d7f07b0b773))
(pad "3" smd rect locked (at 0 -2.3 90) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 2403f079-56d2-410c-8c5b-c3723b04b8c0))
(pad "4" smd rect locked (at 0.5 -2.3 90) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(J3-Pin_4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 02cfc673-f17f-4022-bede-ac3290349899))
(pad "5" smd rect locked (at 1 -2.3 90) (size 0.3 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 9f5c486a-89ec-491f-bc2f-d828c78b7753))
(pad "MP" smd rect locked (at -1.9 0 90) (size 0.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b7dad11b-f822-4148-a0ff-89feb969b902))
(pad "MP" smd rect locked (at 1.9 0 90) (size 0.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3a146768-11e7-46d1-9f9d-52e6020ea7a2))
(model "${KIPRJMOD}/custom_parts/512810594.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa82621)
(at 74.99209 64.07883 125)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/00000000-0000-0000-0000-00005fbc9a5a")
(attr smd)
(fp_text reference "C1" (at 0 -1.17 125) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a17467b-5ee2-4082-af6f-489ddd13e37d)
)
(fp_text value "4u7" (at 0 1.17 125) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd2fd0ba-fe73-4ea3-b0f9-18ac6552562c)
)
(fp_text user "${REFERENCE}" (at 0 0 125) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp be8e1d66-212f-4b89-b944-f464470dd900)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 727dfc7b-30cc-49a8-8395-2951cc534503))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4036df7-f442-46c7-b53f-8431613d52b2))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b8b38080-252d-465f-937f-62ac4d8ad76f))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cee74637-3898-4553-b252-eaeb75aea69d))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9678ae1d-993d-4585-959e-f2a2b6f5f523))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ba085bf-1214-41ba-9219-be428ae4a8aa))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac966fc3-f38d-4ec2-a4de-2cb55925b1b2))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84b11797-ba26-4ebd-8e2b-141ba46311da))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08c5367c-c8b9-4d82-b1be-3ce50197561f))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0fff6c1f-6b7a-4869-83c4-006f6cf2a7e1))
(pad "1" smd roundrect (at -0.48 0 125) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "VCC") (pintype "passive") (tstamp fa80a25b-f753-44e8-8951-eea1ff9eb157))
(pad "2" smd roundrect (at 0.48 0 125) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "GND") (pintype "passive") (tstamp c509b27e-483b-4d97-808e-42bf65c4c9b5))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Fuse:Fuse_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa826c0)
(at 66.890284 70.430887 35)
(descr "Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "fuse")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Ferrite bead, small symbol")
(property "ki_keywords" "L ferrite bead inductor filter")
(path "/00000000-0000-0000-0000-00005fbd7a6f")
(attr smd)
(fp_text reference "FB1" (at 0 -1.17 35) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20bbb4ec-d7a1-4525-b657-402374153edf)
)
(fp_text value "330R @ 100MHz" (at 0 1.17 35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7481255-b379-4c5a-b082-e7eb97200d57)
)
(fp_text user "${REFERENCE}" (at 0 0 35) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 87f2bd68-b659-4851-a8c2-f80422381e06)
)
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b30aca3-6589-40a7-9193-0f6baa8438a5))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp afb3c54b-330f-48af-9584-794ce6c3e1ae))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6092b1c8-9640-439c-bc3d-41ac1dde0a2f))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c066cb0-3c6b-4bdd-b44a-9493fa804ce7))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55f8a4f3-ecfd-49db-becf-70175ccf0b6e))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 318476c3-4b5f-43d4-93db-e79c69351ef2))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91d0be29-029a-46e7-b05c-c18da35de828))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3730f57d-43f3-4110-bdb8-ba57ced8cf0c))
(pad "1" smd roundrect (at -0.485 0 35) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "+5V") (pintype "passive") (tstamp ca2e13d5-d0bd-4675-95da-173546b03dc8))
(pad "2" smd roundrect (at 0.485 0 35) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/VBUS") (pintype "passive") (tstamp dcc9eb08-4405-485f-b1a0-f87400178ad7))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa8294e)
(at 73.28777 68.514483 125)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00005fc5b493")
(attr smd)
(fp_text reference "R14" (at 0 -1.17 125) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f299cdfd-6ad0-468e-ab98-22f6da0af06c)
)
(fp_text value "1k" (at 0 1.17 125) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 87c2c269-e8d0-42a3-9ce6-ec4fed67fd81)
)
(fp_text user "${REFERENCE}" (at 0 0 125) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp c5a07479-c350-4fd8-8049-36b9001485eb)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f59d9fe-b62f-4337-a67c-867728d2b2e6))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 889c1362-2862-4cfe-9525-fd6b5cf3afb3))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f8fe4f6-c404-472e-aa58-67fedd5266ee))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c5b99886-07e2-4070-96e7-54f4739b3c59))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8945bed1-894c-49bc-9f47-b9c00f9d8877))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp da85cea0-b9b7-48c9-8953-496a73e640dd))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0380601a-602d-4b1b-b043-79dcb38529f2))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec223dbe-3569-4917-8104-4d4250492b22))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bf2e2aa9-2d14-4c70-a1e8-b5091bea685f))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 119561ec-79f0-412c-96ca-91ba8fcaeebf))
(pad "1" smd roundrect (at -0.51 0 125) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(J3-Pin_1)") (pintype "passive") (tstamp 0562280d-b057-4e32-b629-bdcd2bd711d8))
(pad "2" smd roundrect (at 0.51 0 125) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/BTN_1") (pintype "passive") (tstamp 97be3b4b-5f95-46bf-b87a-e7804f2b6b48))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa8295d)
(at 74.207772 67.864485 125)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00005fc748de")
(attr smd)
(fp_text reference "R15" (at 0 -1.17 125) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72676bfa-bdc7-4a56-98b9-ebb87f76f4c2)
)
(fp_text value "1k" (at 0 1.17 125) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 26803898-1e80-4a4b-8759-ba5b9a8b7210)
)
(fp_text user "${REFERENCE}" (at 0 0 125) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 807a39f0-3501-4f67-9d35-492789364425)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6849c971-b1b1-4809-8f90-e6c07642b8ed))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 589301b5-79aa-40a5-abb6-b978979ad6b9))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f2882e2-93fc-4fd9-b6b8-578b89904922))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9882e75-284e-4316-8c8d-485a401108b5))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98fa3cb1-117a-4a01-98bc-e20def6a902f))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c9c9965-c4c4-4786-bf86-9b5881ec5601))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5302ce6-74fc-4ec9-8f01-3e188329182f))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4eb93cf4-62d9-4266-b9eb-bb89d05ee358))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a686ab8e-0177-4e03-9850-f39c07f1249d))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12be5b38-9fa5-4442-842b-fa12f8e6b914))
(pad "1" smd roundrect (at -0.51 0 125) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(J3-Pin_2)") (pintype "passive") (tstamp 405671b2-c69d-4f5b-b1be-85bab9855017))
(pad "2" smd roundrect (at 0.51 0 125) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/BTN_2") (pintype "passive") (tstamp cb4fc5d9-988c-48fc-a456-dc979e1afb63))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa8296c)
(at 75.097771 67.224486 125)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00005fc78976")
(attr smd)
(fp_text reference "R16" (at 0 -1.17 125) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83b1d24a-73d1-4e48-90d7-ac3b47e787f2)
)
(fp_text value "1k" (at 0 1.17 125) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9022f11-fc9b-437e-8198-7c44c6988326)
)
(fp_text user "${REFERENCE}" (at 0 0 125) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp ad7bb89e-6689-41e9-8b84-e174826d1c7c)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03b8bf43-091a-45c5-87c0-bc61ebaeadaf))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e25d276a-d920-4cba-b6d6-8b21c0209411))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7ff22471-0efe-4c41-a931-1092417d2af2))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b273e37-4a7a-476b-bda1-63373ce32aab))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e16d69d7-4d20-40f6-b1b8-d5b2555d7435))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7254572-c911-4ee9-86c5-c319904db790))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c54fbea6-0da6-4eec-b758-64c39055cd0c))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc701803-1483-4678-89c5-83ea9ca16f84))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8e502307-b583-4b9c-953b-57e2ea4c6ef6))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 150f7e5b-cd55-4a03-8120-c4bcc3076199))
(pad "1" smd roundrect (at -0.51 0 125) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(J3-Pin_4)") (pintype "passive") (tstamp 4292460b-8496-4022-98c7-b45fedbb47c4))
(pad "2" smd roundrect (at 0.51 0 125) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/BTN_3") (pintype "passive") (tstamp 158d9aa2-05ed-4a7d-abb6-d07a87798160))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa8297b)
(at 81.187773 65.664485 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Voltage dependent resistor")
(property "ki_keywords" "VDR resistance")
(path "/00000000-0000-0000-0000-00005fc841c2")
(attr smd)
(fp_text reference "R17" (at 0 -1.17 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ac3566d-7878-47d8-aed1-a924be994853)
)
(fp_text value "CG0402MLC-05LG" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 22af4b5a-9a16-4799-bf4a-640547d8d3fb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp c6ee5e4c-a822-4053-9a66-9fc181865959)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a46ff349-d414-451e-9f69-2a552925e4c1))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac3c638e-f141-4db8-b79d-dc0d7837a532))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fcb0903d-71df-4eb4-af91-ffae00a9ad3e))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12f9557a-60dd-4e66-9b3a-ffec319a9650))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1584ee4e-27cd-4606-8596-dbea93da4d88))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1cd309cb-4ac3-4135-916c-3a12e5a7939c))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a2f6e1a-26de-44c8-a1c2-a3a763909e14))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1b81aff-37c7-4788-a04c-fabee40f0c3f))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b8f3b22-99db-4eec-98ff-af1f49333786))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8709ca1a-92ca-46b8-a0ec-571b04f44ce6))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(J3-Pin_1)") (pintype "passive") (tstamp bfd4f4bb-7a55-44c4-b509-92140c99c2e0))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "GND") (pintype "passive") (tstamp 56a10e92-5922-4d2f-aadb-85c882930ba1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa8298a)
(at 77.78 63.62 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Voltage dependent resistor")
(property "ki_keywords" "VDR resistance")
(path "/00000000-0000-0000-0000-00005fc8950a")
(attr smd)
(fp_text reference "R18" (at 0 -1.17 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d4c4c9e-4818-4e94-8c96-c180943d99e7)
)
(fp_text value "CG0402MLC-05LG" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ba349c4-57cd-4b1d-9859-6bf610a9d3e4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 0bec4cad-fff7-43d7-b8bd-e6a8f32cddc9)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf65c877-d912-4324-89d6-7cf458ee3f2d))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 818dd912-ffd5-4723-9428-5a3fd3092236))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8cbb9700-f02e-4c2d-a685-3cdf8b884e1b))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bb9d8e91-10d6-4867-8ae2-1e610ee8dcf7))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 05060ee2-5c2c-41e1-b16d-532a0e95a24c))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 50639b93-3e22-4778-abd6-36f52ee373e9))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d325d2a-dd2a-4b81-9728-4ccfb023ccd8))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 022c18ec-42de-4daf-819b-614d55ecd362))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ebc7994-d905-40c1-a9b5-7a88072446e1))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 636539cc-17e9-461d-9449-8b02e5320019))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(J3-Pin_2)") (pintype "passive") (tstamp f4e57118-a738-481c-ad9b-625102e9c590))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "GND") (pintype "passive") (tstamp 02d9b558-b7e3-4393-8b2b-2d9444927031))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "library:MountingHole_1.6mm" locked (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa8856d)
(at 75.577773 62.004487)
(descr "Mounting Hole 2.1mm, no annular")
(tags "mounting hole 2.1mm no annular")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/00000000-0000-0000-0000-00005fd2e965")
(attr through_hole)
(fp_text reference "H2" (at 0 -3.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12a941c5-835b-4be6-aafe-e3d48c2dc65c)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77d87443-0872-4061-8a50-c7cea471bdb9)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ea048ec-e64f-401e-8dc0-46106151c40e)
)
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 5a84fd92-b705-40c2-a297-6720915e4b06))
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp fe09b6bd-5950-42eb-a2d9-49dc6d0c022b))
(pad "" np_thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 1.6) (layers "F&B.Cu" "*.Mask")
(clearance 0.1) (tstamp 66feda5c-8ec9-4761-81d1-1f19294b3857))
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa8b404)
(at 65.677773 68.614485 35)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/00000000-0000-0000-0000-00005fabf832")
(attr smd)
(fp_text reference "C2" (at 0 -1.17 35) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 192aa9a1-7404-4c00-a9d5-1a94303d8a46)
)
(fp_text value "1u" (at 0 1.17 35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b5b8f89-2cd9-4362-ba42-d48bdfbd275c)
)
(fp_text user "${REFERENCE}" (at 0 0 35) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 8bcff51b-2364-4be3-8506-85efe73031b1)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06d2530e-96b3-416f-a4aa-db0fec1bef96))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 691ef712-b667-457e-a591-fe39882bd7c3))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33560a51-b304-451d-8512-b871ba6ae3be))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2481ff6-d55e-4b97-81f8-a147fa56aebb))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b36b5bf-1bc8-4292-8046-990ea1cb7a6f))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 112f02a5-0df3-4d70-b7ec-db29de25a654))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 715ad3b3-74de-49bc-ba7a-e87284a4622d))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19ab6e74-2eda-4890-9df7-431f1c63fcf6))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d53e4b63-79a1-45ae-9303-141e222ab554))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d643ae76-99ed-4ffa-86db-d1821245c541))
(pad "1" smd roundrect (at -0.48 0 35) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "+5V") (pintype "passive") (tstamp 533cc067-3b4b-48be-ab54-b6d58f1dbd70))
(pad "2" smd roundrect (at 0.48 0 35) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "GND") (pintype "passive") (tstamp d3345d8e-a47b-41a2-8b09-91d494e8a2f6))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fac2b57)
(at 77.83 60.29)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Voltage dependent resistor")
(property "ki_keywords" "VDR resistance")
(path "/00000000-0000-0000-0000-00005fc8997e")
(attr smd)
(fp_text reference "R19" (at 0 -1.17) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f6823ca-8a43-4383-8754-c0ac6e5853b6)
)
(fp_text value "CG0402MLC-05LG" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8caab80a-73dc-4ed2-9665-b75343951ca0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp d0e6c611-23a5-40a8-a872-3329aae8f2a9)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78ef82c1-8ac9-45b8-996b-25627520f029))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8823f4d-1a52-4f17-a7ce-355d024f42da))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f4f9ff47-4700-4f99-a54c-1e7ea2dcad7b))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c321dfc3-dc65-42ea-94fe-5b7cb85fc0dc))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 46614f92-c893-4b65-a9a6-290664c7d4be))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78f8bf2c-493e-4f88-ba62-8ddfd1055a57))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5e37e36-4448-4a5e-b644-008957b8ff42))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a35a2a43-f466-4c70-86f4-b8bacaabfbba))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 397a832f-18c7-41f0-995e-f70a0d39691c))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47eda11b-9239-4eb7-a051-a3cf03ea768d))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(J3-Pin_4)") (pintype "passive") (tstamp 970ebb95-0df4-4cfa-bc88-9f65bd75c19d))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "GND") (pintype "passive") (tstamp a8eb4ee8-4199-4613-94ee-2e9cb1fed4d9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "library:WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fad601c)
(at 69.847773 64.114486 -145)
(descr "WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "WSON NoLead")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005faa4c62")
(attr smd)
(fp_text reference "U1" (at 0 -1.95 35) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a616d1db-0b18-45ae-bda4-dea402ad0aaf)
)
(fp_text value "TPS25200" (at 0 1.95 35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2da30be0-6aca-4ace-a658-b0dbd834d2e8)
)
(fp_text user "${REFERENCE}" (at 0 0 35) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 314125a5-acce-41de-b21d-b660917a7b96)
)
(fp_line (start -1 1.11) (end 1 1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 812b632c-1d4b-431f-bb48-669c54a65b4f))
(fp_line (start 0 -1.11) (end 1 -1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a5452fb-95c6-491d-92be-97b373cba974))
(fp_line (start -1.32 -1.25) (end -1.32 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2e8dd96-0847-46b5-adf3-45e61d73be40))
(fp_line (start -1.32 1.25) (end 1.32 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37d0832c-6e48-49b0-ad92-650cf62bf36b))
(fp_line (start 1.32 -1.25) (end -1.32 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a5fcbcd-e15c-4863-801e-f7dcb09724c9))
(fp_line (start 1.32 1.25) (end 1.32 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7938c9fb-ab02-4a2d-bc5f-890496540600))
(fp_line (start -1 -0.5) (end -0.5 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15dd451d-d4d8-48a5-82d3-34a780fdfafb))
(fp_line (start -1 1) (end -1 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92ea0300-ca85-49f2-a925-885644afb3fe))
(fp_line (start -0.5 -1) (end 1 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dbbe3b58-5ab4-419f-b1bd-d3db45a493f0))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b66adc37-de3d-4d2a-9796-a8560448c4a5))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c12037ac-1c59-4014-a617-c15b67010af5))
(pad "" smd roundrect (at 0 -0.4 215) (size 0.81 0.64) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp a26a87b3-2a65-4467-a3f5-6732116a0748))
(pad "" smd roundrect (at 0 0.4 215) (size 0.81 0.64) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 1c926161-663c-49e6-8e96-6076641ac8cb))
(pad "1" smd roundrect (at -0.975 -0.65 215) (size 0.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "VCC") (pinfunction "OUT") (pintype "power_out") (tstamp 174d1370-0cd6-42ec-b6bd-14fc11dd1313))
(pad "2" smd roundrect (at -0.975 0 215) (size 0.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "Net-(U1-BP)") (pinfunction "BP") (pintype "passive") (tstamp 85bbcc4b-c473-4c26-b283-5bf36d49b073))
(pad "3" smd roundrect (at -0.975 0.65 215) (size 0.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "unconnected-(U1-~{FAULT}-Pad3)") (pinfunction "~{FAULT}") (pintype "output+no_connect") (tstamp b47b08ac-4236-4c75-b912-1558182825b2))
(pad "4" smd roundrect (at 0.975 0.65 215) (size 0.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(U1-EN)") (pinfunction "EN") (pintype "input") (tstamp 4d9623ed-cdd4-4fa3-83c6-f04012d93044))
(pad "5" smd roundrect (at 0.975 0 215) (size 0.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 148c0f35-e82a-4655-8967-bb7392679bcc))
(pad "6" smd roundrect (at 0.975 -0.65 215) (size 0.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "+5V") (pinfunction "IN") (pintype "power_in") (tstamp 2c4d1bb9-eedf-42b3-b490-2d16bf328c7c))
(pad "7" smd rect (at 0 0 215) (size 1 1.6) (layers "F.Cu" "F.Mask")
(net 12 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 90254cfc-1c09-4c53-9d91-7974c1be8096))
(model "${KICAD6_3DMODEL_DIR}/Package_SON.3dshapes/WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fad675a)
(at 67.957773 65.494484 -55)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00005facfbaa")
(attr smd)
(fp_text reference "R20" (at 0 -1.17 125) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d03f6749-c47f-40d4-b6c5-e5b6fd3f313e)
)
(fp_text value "10k" (at 0 1.17 125) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7658f121-4f44-4408-8132-3a1086703e3e)
)
(fp_text user "${REFERENCE}" (at 0 0 125) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 64687479-07e9-4250-bfd5-c44cad68c2cb)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8efdcf7e-cbe0-442e-8faf-52a320a2caf3))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbb8cc61-49f5-496a-bc29-6307fc1f87a1))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f587b5d9-80dd-4ae7-be94-c344d9d8ecd0))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d56ff783-bfc5-44b0-963d-137b0f6614cb))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a99c628-f81a-4f74-a545-3ce945936173))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aebae452-ad1a-4467-9aaf-23aad61de1eb))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 345ade5f-16ab-4500-951c-65f98346ceff))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a531de1-0af0-49ad-95c1-55a1da351287))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 669a9e90-37b0-428a-bfe8-e3148ae4d216))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a2730e0-6d9a-4c9c-8ecd-6eedf1e86505))
(pad "1" smd roundrect (at -0.51 0 305) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(U1-EN)") (pintype "passive") (tstamp cf612a33-22a0-4dee-aa32-9d650c4728a7))
(pad "2" smd roundrect (at 0.51 0 305) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "+5V") (pintype "passive") (tstamp 85f6bd2f-bc2b-4bcc-902e-a7c689bdb80f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fadeb6d)
(at 71.797771 62.864485 125)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00005fbd40cf")
(attr smd)
(fp_text reference "R22" (at 0 -1.17 125) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c029366-9a74-41ea-ada1-198dcb65d4c1)
)
(fp_text value "220k" (at 0 1.17 125) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 600aef06-2b74-4e95-9231-ad70fff1c4b6)
)
(fp_text user "${REFERENCE}" (at 0 0 125) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp fe71e795-0392-482e-bdff-f508585c15b6)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b74d2a94-ee18-4437-aa76-c21bc143dbad))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5aa9d793-c739-4ed8-aa31-cba3c0721a03))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ba20344-b1c3-424d-a643-711ea5ec8ab6))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5f5f955-5887-4956-8dde-fe97bd7b975b))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ca85219-ee41-467c-9776-8129d06b8e19))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad48b90a-aecf-435d-8353-caf39d5c95e2))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ad76b26-6555-4c48-90a3-91a68bac49c6))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8988a21a-0013-48a7-86d9-48f59041df64))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02d17b43-aaf5-43cb-aceb-f8e424f81cba))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a258c0f-f0e7-406c-91ab-9affaa5ee7a7))
(pad "1" smd roundrect (at -0.51 0 125) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "Net-(U1-BP)") (pintype "passive") (tstamp ca54096f-2b74-4b0d-b20f-ed5a6359326a))
(pad "2" smd roundrect (at 0.51 0 125) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "GND") (pintype "passive") (tstamp 0d4ed18b-c13c-46cb-846f-6e2f3f16411c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fb01518)
(at 66.277926 69.521481 -145)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "bose-qc35-usb-c.kicad_sch")