-
Notifications
You must be signed in to change notification settings - Fork 5
/
Pi5_PCIe.kicad_pcb
22369 lines (22307 loc) · 893 KB
/
Pi5_PCIe.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.6162)
)
(paper "A4")
(title_block
(title "Raspberry Pi 5 PCIe Breakout")
(date "2023-11-11")
(rev "0.4")
(company "George M1GEO, Chris G8OCV")
(comment 1 "https://www.george-smart.co.uk")
(comment 2 "https://github.com/m1geo/Pi5_PCIe")
(comment 4 "** Controlled Impedances: JLC04161H-7628 Stackup **")
)
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user "plugins.config")
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "White") (material "Direct Printing"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.015) (material "Liquid Ink") (epsilon_r 3.8) (loss_tangent 0))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "prepreg") (color "FR4 natural") (thickness 0.2104) (material "FR4") (epsilon_r 4.4) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 2" (type "core") (color "FR4 natural") (thickness 1.065) (material "FR4") (epsilon_r 4.6) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 3" (type "prepreg") (color "FR4 natural") (thickness 0.2104) (material "FR4") (epsilon_r 4.4) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.015) (material "Liquid Ink") (epsilon_r 3.8) (loss_tangent 0))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White") (material "Direct Printing"))
(copper_finish "HAL SnPb")
(dielectric_constraints yes)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 "Gerbers_PCIe_V099/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+3V3")
(net 3 "+12V")
(net 4 "+5V")
(net 5 "PCIE_TX0N")
(net 6 "PCIE_TX0P")
(net 7 "PCIE_RX0P")
(net 8 "PCIE_RX0N")
(net 9 "PCIE_CLKN")
(net 10 "PCIE_CLKP")
(net 11 "PCIE_PERST#")
(net 12 "Net-(Q1-G)")
(net 13 "/PRSNT1#")
(net 14 "PCIE_PRSNT2#")
(net 15 "+3.3VA")
(net 16 "PCIE_CLKREQ#")
(net 17 "PCIE_WAKE#")
(net 18 "PCIE_SMCLK")
(net 19 "PCIE_SMDAT")
(net 20 "/REG_IN")
(net 21 "RESET")
(net 22 "UNKNOWN?!")
(net 23 "unconnected-(J3-PadA5)")
(net 24 "unconnected-(J3-PadA6)")
(net 25 "unconnected-(J3-PadA7)")
(net 26 "unconnected-(J3-PadA8)")
(net 27 "unconnected-(J3-PadB9)")
(net 28 "Net-(D4-A)")
(net 29 "Net-(D5-A)")
(footprint "Connector_BarrelJack:BarrelJack_Horizontal" (layer "F.Cu")
(tstamp 006c69e4-fbaa-40db-84ca-08fba7093942)
(at 161.9575 89 -90)
(descr "DC Barrel Jack")
(tags "Power Jack")
(property "LCSC" "C319099")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "DC Barrel Jack with an internal switch")
(property "ki_keywords" "DC power barrel jack connector")
(path "/2b76457e-c035-412f-b7f0-718b06278d82")
(attr through_hole)
(fp_text reference "J1" (at 0 5.75 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de474982-4e8e-4347-a027-281509a65434)
)
(fp_text value "12V IN" (at -6.2 -5.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f243b09-e565-4432-93ab-7f29f28466f6)
)
(fp_text user "${REFERENCE}" (at -3 -2.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf6f542a-3ed2-4b29-8ea1-f9c5175132ca)
)
(fp_line (start -13.8 -4.6) (end 0.9 -4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7bd15a2-fafd-4137-977a-5474c1061b9e))
(fp_line (start -13.8 4.6) (end -13.8 -4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77cd828f-9d5e-4c85-bb3d-c558ece7f25c))
(fp_line (start -5 4.6) (end -13.8 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb57801e-67ed-448d-bfd3-ba27119ca681))
(fp_line (start 0.05 -4.8) (end 1.1 -4.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6145122a-f833-40c2-b128-95e403d9e2eb))
(fp_line (start 0.9 -4.6) (end 0.9 -2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72f3a54a-68d9-4868-80b1-a0cd7809b4f4))
(fp_line (start 0.9 1.9) (end 0.9 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f7936e3-6cae-4de8-b0df-812d3ba4216b))
(fp_line (start 0.9 4.6) (end -1 4.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7b9d696-712e-45ab-83e3-071fceadcec0))
(fp_line (start 1.1 -3.75) (end 1.1 -4.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18ffed8e-6074-4a48-80aa-6ed8d9ac33eb))
(fp_line (start -14 4.75) (end -14 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9616f9d5-65ee-4ad1-ac0b-e7b9d4f769a6))
(fp_line (start -5 4.75) (end -14 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e5dfbb1-b7f8-40d0-bf23-dd96ca2cefb7))
(fp_line (start -5 6.75) (end -5 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44075589-a781-4114-b5b7-73963db7d8b3))
(fp_line (start -1 4.75) (end -1 6.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e81cbaf6-7480-4144-8e2b-8fc6b0265521))
(fp_line (start -1 6.75) (end -5 6.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp abee3a93-eb9a-4367-864e-b778e0fae415))
(fp_line (start 1 -4.75) (end -14 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 045c7a56-3865-4790-9d13-9a713956a04f))
(fp_line (start 1 -4.5) (end 1 -4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81420bdb-7424-4424-8ebc-c295d997176a))
(fp_line (start 1 -4.5) (end 1 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a93943a6-3d9c-4e3b-b210-44e67de40529))
(fp_line (start 1 -2) (end 2 -2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61273fdc-b9ae-4737-908e-aae971d39fd7))
(fp_line (start 1 2) (end 1 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27091e2e-3df4-4930-a08a-59988e0a6419))
(fp_line (start 1 4.75) (end -1 4.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68ec5e72-45a7-4b52-b23e-10ade02a0b9f))
(fp_line (start 2 -2) (end 2 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb6682ca-dfe8-4967-91d0-b110cf75da9a))
(fp_line (start 2 2) (end 1 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 871ca1f8-4c45-4b6d-9667-c63061bfdada))
(fp_line (start -13.7 -4.5) (end -13.7 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7618a0ce-4602-41fc-84a1-f4493bd66b8d))
(fp_line (start -13.7 4.5) (end 0.8 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8bac9b00-8a1f-4688-96d7-66399cb9f400))
(fp_line (start -10.2 -4.5) (end -10.2 4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7349f4c2-c440-4928-aa35-c91ddba7e242))
(fp_line (start -0.003213 -4.505425) (end 0.8 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cff77c19-9655-4da6-a75c-3f5388a2454d))
(fp_line (start 0 -4.5) (end -13.7 -4.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4f38809-e3ea-4bc5-84bb-da9be9b0db7c))
(fp_line (start 0.8 4.5) (end 0.8 -3.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81a2a21d-a56f-4260-9093-6f6c539c563d))
(pad "1" thru_hole rect (at 0 0 270) (size 3.5 3.5) (drill oval 1 3) (layers "*.Cu" "*.Mask")
(net 3 "+12V") (pintype "passive") (tstamp bac5d7e0-3507-4870-a4d8-647840969364))
(pad "2" thru_hole roundrect (at -6 0 270) (size 3 3.5) (drill oval 1 3) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp dc3ed7a1-805b-48ff-9693-ff1bb3fd8f5e))
(pad "3" thru_hole roundrect (at -3 4.7 270) (size 3.5 3.5) (drill oval 3 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 242bcf0f-780f-4c36-a237-35d25b248343))
(model "${KICAD6_3DMODEL_DIR}/Connector_BarrelJack.3dshapes/BarrelJack_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 049a8ca7-d951-4f7a-b6b5-6cba265ae65d)
(at 157.2875 120.25)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/136c4b24-ae7b-468d-b236-6ad1f29dc511")
(attr smd)
(fp_text reference "C19" (at 3.33 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb44c65d-6637-45e2-9b3f-b5eb53af56ee)
)
(fp_text value "100n" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a7eadb06-161f-4ff5-a740-e502b1a9b6f8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 97930526-0634-411e-b49f-e4a87812d71f)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d34e6e20-caf4-406f-a6b2-a9052ec829f2))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5572f4e5-bd44-4a87-b060-24493df58da0))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 325b61e9-7cfa-4b4f-b4a8-efd256724e77))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d5eb198-3ac4-4e93-90a7-2c03eea3a547))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7fa7b26-fc0a-453f-90b3-ad0ea2e196cc))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74112f8f-66ac-44f6-97d0-ad2937fb6683))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2185c1f4-2b3f-4787-b4ca-db75704cc56e))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 128cf0af-ee26-49a7-b467-219f73f6d80b))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be77f880-5bca-4882-be6a-38b86f26fcfd))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c59c6062-43ec-4256-b480-79d8efaa2947))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 3 "+12V") (pintype "passive") (tstamp f1b58595-f5cb-4a97-94e4-1d3acddccbab))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "GND") (pintype "passive") (tstamp 84ec9012-8323-4d0c-9c49-8d1616581e65))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 0765f1d1-a632-4389-8bd0-3406aaf0a017)
(at 142 102.9625 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/03c94c81-10af-4236-ad2d-0287c9f3e525")
(attr smd)
(fp_text reference "R5" (at 2.6625 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 510ffc74-fc67-436e-b193-b050fdf4f5ef)
)
(fp_text value "0" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86a804cf-b382-4437-81a6-e6f7a41de73a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp d288738f-9953-453f-acd8-91bc0a943c53)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f981076-5b6b-4455-a6c4-8fd62ecbb928))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebc79ac2-4d97-4ac1-9082-94754ef83991))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c418306-a6c7-4b58-970c-6ae1c827375c))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c09bc5a-5ddc-46a9-a66d-1e03bedff571))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 420c1a1a-22d3-4a91-ab4f-e3a5bdc12a94))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e56aac0d-f838-4ebf-be7f-dc78bf947701))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3033e89-7bfc-4cc8-b150-61c5df9fde4e))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2966ea9b-2332-43d6-a648-2a544db2ea67))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4bf780cd-3372-4d2f-bd2f-a8448d13ee28))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b66569a-743e-44a4-a352-184f79bd584c))
(pad "1" smd roundrect (at -1 0 90) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 12 "Net-(Q1-G)") (pintype "passive") (tstamp e2c79eda-c2da-428c-9a8b-86d5d3a4d87d))
(pad "2" smd roundrect (at 1 0 90) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 21 "RESET") (pintype "passive") (tstamp 5736468e-016c-4fdc-9ddb-bcbde9eb629a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 0ed8f09e-32cf-47a3-abb6-809372ce60be)
(at 139 103 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/815d41bf-627c-4f46-a133-579a267890bd")
(attr smd)
(fp_text reference "R11" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a40e6302-4c24-4b18-a0f1-e4601ed90787)
)
(fp_text value "0" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b81a9dc-2c69-4b34-bfac-3c715acf148c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 1797343a-e6d8-4794-8dd1-d4b1caeec500)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbbbbe1a-ba05-48e2-a972-84cfeea5ea6c))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d310503-146b-4f93-8d70-aabfad05ad4c))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b6044cc-a512-4e4b-9544-d67358160ad5))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81e12461-a688-4821-8ed5-26995bbed65b))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67c123f1-e68a-4e25-87ea-24d6184831e9))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed26b228-186d-415a-8611-bd0a7af06b28))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c327480-79c9-4dbb-af64-7f3014cd6c86))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b681f63-63c0-4106-a572-e78a56e81fe3))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fddccd0f-3e0c-4f0c-b806-447022de4e6f))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c11ca673-6ee6-4359-80ec-44ba96e53ab3))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 15 "+3.3VA") (pintype "passive") (tstamp cf2b97f9-48e0-45ef-9b72-a5c7e538dbae))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 2 "+3V3") (pintype "passive") (tstamp dd32cc42-7dd3-4810-a9c7-6833a70b6bb5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 1755e5aa-1722-4a36-bbae-69d706a1a4bd)
(at 140.0375 98)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/966e4968-d72c-48e5-be07-71cdbb11550c")
(attr smd)
(fp_text reference "C1" (at 2.7125 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b4300cc-006a-41da-ac88-68bab50ec9e6)
)
(fp_text value "100n" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 094e9dfe-cf8b-4dd1-8686-b80e06a81235)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp bdf3bdee-59dc-4483-a4cc-6031eb22af75)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp adf09f49-b7d0-42ab-9cf5-679cbdfc02ca))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff34f794-815e-4db6-897f-c3c5c30937aa))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2957c16b-0a2b-4e6a-aa84-d2642c921c0d))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fdb94e76-050d-4c87-9444-8a8a542ccfac))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b2d5ec2-3a17-4e8d-a434-564cfda011ca))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c41a8492-4525-4277-b032-7406884c7e51))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01cf22de-edfa-4af0-a764-6c200368c811))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5f9f822-4ba7-4850-9243-8a1815d5b03e))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cda19355-ac3c-4fa1-a117-518c63d30211))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6385294-2db7-4023-a827-d5ffa042677b))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 20 "/REG_IN") (pintype "passive") (tstamp 576dea26-660a-456a-9011-900d3a710515))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "GND") (pintype "passive") (tstamp be3b2823-11ac-4394-b01e-0c05d0392b15))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 21921331-5dd9-4869-9af6-adff5c37b5cd)
(at 162.5 96.4625 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/41e8aff6-25f3-410a-9e96-d19d054988df")
(attr smd)
(fp_text reference "R10" (at 3.2125 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6de24a3d-5f25-4a6a-a5e8-76a8c958b214)
)
(fp_text value "10k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5d3c0c6-6144-4b17-a539-767a99497da2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 47ed58a5-1bb6-4367-821b-77f7d0e4bae4)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da0ee111-96f2-41cc-8df4-f728a0e7f619))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5fc33657-2e85-4c08-87f7-a0bb42a99c85))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 482c6587-1974-4f03-bb60-a67b807866dc))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2597896-1555-405b-bba1-c47764072a2d))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a768a52-221f-4edb-a80d-3591ff3ac96f))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94378521-82ae-41e8-90c1-6597eecec72d))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91ab68d8-ea50-47fe-9d81-619a9a0a86c1))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf4f717d-4381-445c-bb9c-3acd388de333))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 008ebe7e-7861-469d-9775-82e9e30997b4))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f82e34b6-9b3d-468b-a778-b0ca2139b417))
(pad "1" smd roundrect (at -1 0 90) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 19 "PCIE_SMDAT") (pintype "passive") (tstamp 19e15d4a-13ec-4c25-82ca-1f910f8168a7))
(pad "2" smd roundrect (at 1 0 90) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 15 "+3.3VA") (pintype "passive") (tstamp d072167b-2517-4502-a100-ae72408ed4bc))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 230e95bb-2d9c-4efd-8b1d-e30a9a019e1d)
(at 134.99 80.9625 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/33679448-df19-484b-bd5f-e3b07290ef28")
(attr smd)
(fp_text reference "C3" (at 2.9625 0.01 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79878fc2-50fe-4325-b504-0d66fb2e1a0f)
)
(fp_text value "100n" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55903e2e-426b-4dd2-827d-0f9f4c53f71b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2ae4b4ca-217a-4c47-8319-167a3e281256)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 275202c1-fa5f-4133-8948-e8eb46be7198))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 316d6c1a-aa05-4e14-8415-8e1157406473))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0be978ca-329b-4a99-a617-5f3229660b20))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68891a46-74be-429c-9615-7e230b0944b0))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0422555b-ea4b-4861-8663-12cb7ce200a7))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43616a90-f84e-4f2c-8fd8-ef59255281c3))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89d4d9f8-cffa-46c1-ad3e-8a0313d8a101))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa52a9b0-a299-4fb6-9440-e292b4f00d7d))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dcc82553-3ec8-4395-902a-5878a1ed286f))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64bc54bd-2b69-4bcf-8472-08ccb87d8785))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "+3V3") (pintype "passive") (tstamp 5dcee7e2-bbab-4cc8-afe5-225371532dbb))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "GND") (pintype "passive") (tstamp e60c44b7-f03a-440a-a57c-6acc924ebfda))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 2616c458-d4fc-4467-a009-0b530f8f691c)
(at 157.2875 118.25)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/bc22dfdc-532f-4e62-87c4-c47b0ef3cfea")
(attr smd)
(fp_text reference "C17" (at 3.33 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7591b9f1-e7a4-4ed6-99ff-a8d7eb040baa)
)
(fp_text value "100n" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd5d4045-bfe9-4647-a89b-4edff615fae6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 038c00d3-e566-4c02-a9d6-4ec44504c8f2)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e4bea02-d654-424d-9b11-72debfd98ef8))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e0a35059-f7d2-4c4f-b6af-4622ebfb0a55))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f9ff29e-f0d9-437f-af84-00c648b72716))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17c72bc5-8bc6-46b1-a096-31c6cb713469))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c10eba6-830e-4c75-b60d-d82977491c85))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ef18149-6697-4de0-a8a5-970f153fb60a))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f66194bc-14ff-4ca1-a66d-0084ef731ccf))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bcef4841-b296-4b31-bc62-0ea48b4a079d))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1de5b4f2-4d44-43ee-8b05-267bdfd5e21f))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32798ccd-749f-4bb5-bf0e-5238eb14f8b2))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 3 "+12V") (pintype "passive") (tstamp ef9d133f-da09-49fc-8863-f61f04c5acc4))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "GND") (pintype "passive") (tstamp 9836e2ae-3366-4e04-a22f-dae09073131b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 28f73077-0e84-490f-a97b-29521ed55516)
(at 140.0375 96)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/02c6c152-a1bb-47a4-ab6c-39b495f22333")
(attr smd)
(fp_text reference "C2" (at 2.7125 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fad8e74b-a122-4e4d-a9f8-334f1a7cdc04)
)
(fp_text value "10u" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6229d316-0fd6-41ab-89f7-8f50acc53727)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ecd36db3-2d44-4d23-a44b-8165e2633aa0)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1f2f803-f292-4324-9c6b-aac6528b9acd))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f33550ab-633d-47f8-a57b-7917b5555e23))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa4d7132-e29c-42d1-a98a-35b12e8cda75))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a6e77ab7-6188-4454-ad67-3949c075ecfc))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d06d633-0806-4252-be62-c60b10b87668))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57593a4a-9415-4bc6-ade3-b4c55494f92a))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76cc6678-c470-449c-8658-0b1fc48027e1))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26ad9241-bb39-49a2-8945-3cbfce0d8bae))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e28f07a4-d28a-409f-a997-8057c16b764d))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e88d184-9105-488c-9206-07d260ffff08))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 20 "/REG_IN") (pintype "passive") (tstamp cc781970-f508-48ae-a032-d8e4d30f0a2c))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "GND") (pintype "passive") (tstamp 1ff59d9f-ff2e-475a-b230-a16f7acb2737))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 2a4d4d82-8b0d-48c3-bbeb-b543be567a2e)
(at 139 107 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/81fad550-1c17-47c1-8934-e0429de03337")
(attr smd)
(fp_text reference "R4" (at 0 1.5 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5429ae4a-8bcf-4fe9-8793-d4b65187f553)
)
(fp_text value "10k" (at 0 1.65 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b67b2de6-d6a6-4db4-961b-a6fe1e949bc8)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 623c9579-6a83-4453-b650-643ab5df7b2a)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 850b9533-19e1-4fb0-ab7c-08651859084f))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70741a5c-ef9e-44d7-b731-5880f1831ed5))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad61897a-8398-41d3-9f5a-16d3a4e8bfaa))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cfd4d500-b726-4596-87ad-f5192c8aa78d))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b53ef17-7a47-4e21-9ea5-65ba33aabf28))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae372692-310e-4b6c-afe6-320dec339053))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab9988ba-18e6-4145-a396-95840deefa10))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94078011-c3ab-4d9f-884e-62de5eb33ec4))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4795dd2b-5126-4007-8a71-00a09a63b177))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bae13979-8170-4476-b5fd-2dd2710a55db))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 12 "Net-(Q1-G)") (pintype "passive") (tstamp ddcc7426-eeee-4669-9b55-698cec9273a3))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 1 "GND") (pintype "passive") (tstamp d9d88390-0278-449a-90a7-da284d0afee6))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:CP_Elec_6.3x7.7" (layer "F.Cu")
(tstamp 306d79d0-dbed-4579-b5b5-9089c71184f9)
(at 151.5 81.3 90)
(descr "SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm")
(tags "capacitor electrolytic")
(property "LCSC" "C3032176")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor, small symbol")
(property "ki_keywords" "cap capacitor")
(path "/8fa10513-f743-4194-ac81-256b3346e95e")
(attr smd)
(fp_text reference "C5" (at -3.7 -3.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d4be373-eb4f-4326-b644-582373d2b5dd)
)
(fp_text value "150u" (at 0 4.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99c5653f-09c7-4fab-ad1b-334d541f53d5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 970af78d-ab15-4625-b57d-34c57aee5052)
)
(fp_line (start -4.4375 -1.8475) (end -3.65 -1.8475)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ff323ba-4d1c-4d50-a18b-02bb65a9c9e4))
(fp_line (start -4.04375 -2.24125) (end -4.04375 -1.45375)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2040afef-dae7-4758-956e-5a9bc2f9177a))
(fp_line (start -3.41 -2.345563) (end -3.41 -1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 054e9c1f-7b06-49f7-8ced-78ff7045fd53))
(fp_line (start -3.41 -2.345563) (end -2.345563 -3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d054d020-61c5-4a17-a541-a57bd1d0b1d0))
(fp_line (start -3.41 2.345563) (end -3.41 1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40006e19-e6ed-4245-8b0d-10b504e6df53))
(fp_line (start -3.41 2.345563) (end -2.345563 3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2cf032cf-85b8-48a0-a949-7be2234c7408))
(fp_line (start -2.345563 -3.41) (end 3.41 -3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c18afe2-4116-45da-9bac-b092094eb10a))
(fp_line (start -2.345563 3.41) (end 3.41 3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b5625ac-ddb1-4fe3-a493-6ff035703696))
(fp_line (start 3.41 -3.41) (end 3.41 -1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b821683a-e353-4ea0-b027-85ddbc70cff2))
(fp_line (start 3.41 3.41) (end 3.41 1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24a3552f-4cd0-4dde-b137-aaef782b0608))
(fp_line (start -4.7 -1.05) (end -4.7 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 593a7203-1a43-43ff-93db-f10f7dff1cb1))
(fp_line (start -4.7 1.05) (end -3.55 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1c5128f-48c0-44fe-900a-9710b0d6d4cf))
(fp_line (start -3.55 -2.4) (end -3.55 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d255c98d-767b-49e7-8f70-8d371a950bff))
(fp_line (start -3.55 -2.4) (end -2.4 -3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 75268a8c-6cea-4ad5-8c79-f2c6c6f7247a))
(fp_line (start -3.55 -1.05) (end -4.7 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee3b8f8e-d22f-4d73-8a78-a0ac86a0f088))
(fp_line (start -3.55 1.05) (end -3.55 2.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7dd99070-a1bb-4775-b155-62f658a1c7a5))
(fp_line (start -3.55 2.4) (end -2.4 3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12860822-56be-4dec-8aeb-888f0c010a96))
(fp_line (start -2.4 -3.55) (end 3.55 -3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4b88e98-4014-4fc1-801f-4804eabc1685))
(fp_line (start -2.4 3.55) (end 3.55 3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45d98905-9f92-4592-8fbb-861a21d5f2c2))
(fp_line (start 3.55 -3.55) (end 3.55 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8e1033e-7bd7-4a39-a833-b44e1210869d))
(fp_line (start 3.55 -1.05) (end 4.7 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6ef6961-8e99-4f41-b8d2-b5a37bb7a48d))
(fp_line (start 3.55 1.05) (end 3.55 3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8181398-81ef-40ed-9675-2aae24339ed7))
(fp_line (start 4.7 -1.05) (end 4.7 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 11333427-2b35-4a33-aeba-7d3b4cb63d65))
(fp_line (start 4.7 1.05) (end 3.55 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cd14f5dc-3948-4131-9e42-45f4102f6291))
(fp_line (start -3.3 -2.3) (end -3.3 2.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed186f54-c181-4649-b13a-e8658143c511))
(fp_line (start -3.3 -2.3) (end -2.3 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d243485-23ef-49a6-99b6-fad186b771ec))
(fp_line (start -3.3 2.3) (end -2.3 3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af77e154-4bb4-4453-8862-87ed91b7b9bf))
(fp_line (start -2.704838 -1.33) (end -2.074838 -1.33)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e32cb50-f860-41fc-b685-26468f126cfc))
(fp_line (start -2.389838 -1.645) (end -2.389838 -1.015)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e4127e3-a89a-42d0-9ef3-edd16c5275ad))
(fp_line (start -2.3 -3.3) (end 3.3 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44ac9639-d17b-463c-951c-1f2160c7e17c))
(fp_line (start -2.3 3.3) (end 3.3 3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a5360fa-de4f-42ad-b028-676893ac78d8))
(fp_line (start 3.3 -3.3) (end 3.3 3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68bffa38-25dd-4374-8433-05691317c9b3))
(fp_circle (center 0 0) (end 3.15 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 302420cc-69f0-479e-bd71-ad7343647380))
(pad "1" smd roundrect (at -2.7 0 90) (size 3.5 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.15625)
(net 3 "+12V") (pintype "passive") (tstamp 8c73a1d8-a0aa-4f3b-93e3-4f151cddd1a5))
(pad "2" smd roundrect (at 2.7 0 90) (size 3.5 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.15625)
(net 1 "GND") (pintype "passive") (tstamp ee3f0cff-ff28-4656-822b-90030c271d65))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/CP_Elec_6.3x7.7.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tstamp 3f4dd45e-ffc8-48c9-94d7-720b8f9be781)
(at 127 104)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/baeeac63-cfa4-4bcb-a81b-c3441712df6d")
(attr exclude_from_pos_files)
(fp_text reference "TP1" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85590520-9410-4a9c-b307-badcbd45bbb6)
)
(fp_text value "3V3" (at 2.75 0.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5476b0e4-48fb-4248-bbb9-c8dc1b606fad)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10ee017e-058e-44b7-8198-9922e6bad7f7)
)
(fp_circle (center 0 0) (end 0 0.95)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 43dbb4df-c37e-4ff3-9938-96b65629e148))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 209f00df-3dd4-479f-87b6-fad9ee4d61d3))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 2 "+3V3") (pinfunction "1") (pintype "passive") (tstamp 5bf68a96-f718-4816-8657-960da77f6087))
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 4444ac1d-7738-48d8-bc8e-9d84d0fd15f5)
(at 142.2125 112.25 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/ed168f6f-4953-42c9-98e1-e98c5d8466fc")
(attr smd)
(fp_text reference "C14" (at 3.4625 -0.04) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp edfa2be0-310a-44f1-9fc1-fbb34cd4a8bb)
)
(fp_text value "100n" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c776c3cd-536c-43cd-889e-2163236880c9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e54344b9-ea13-4c66-a9fd-0de886580d64)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97978741-1f5b-4763-ad32-afedf51eadf0))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2f5a5a8-f8d3-4620-833e-aa46cba9a56e))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c498cc22-681c-4bd9-af4a-d75391d01bc4))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6dd26c14-3596-4c7f-877d-43a1cec8c9a0))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39161ec4-359a-45c1-8642-dd8bb4cd34f0))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc7aff2b-3d79-46de-ab71-53f16a6c5b9d))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2801ec1-1c85-411b-bdfa-e2040b34c1ac))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b2e2a3b-e031-4f74-bd81-81e540eae075))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8b41d8b8-bc61-41d8-8349-9f089bbb3891))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d09f6e93-898d-4646-8e34-e05da1473d84))
(pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "+3V3") (pintype "passive") (tstamp fcb10e7e-98f3-41d9-90a8-7c2ead5b153e))
(pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "GND") (pintype "passive") (tstamp 6b2257af-16d5-45b3-b4ca-322cad47a2b4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 456b44c2-84e6-4605-ab78-d91bad599f14)
(at 142.2125 114.25 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/d9a07402-3ad7-403e-87d0-31b7817ae656")
(attr smd)
(fp_text reference "C12" (at 3.4625 -0.04) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb4fcf02-2058-4d84-ac46-64a4e6dd4b99)
)
(fp_text value "100n" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b60edd5a-0772-40ff-9766-71b76c7da208)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ff9ac9f6-d6e6-4e61-a432-35f0130447f3)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 806eb2b2-e099-4305-820e-5f51dd7ef525))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e8d3e97-08d4-4175-b2b9-1df437b3764a))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90766686-27e9-42de-a4f4-68d0cf8af693))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95b414fc-1626-49c9-8963-32a2a4793612))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae452a44-39fa-4536-9482-897084588291))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d99089b-2bbb-4689-8ce1-e4609a66d12f))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0242963b-1247-49f0-ae67-368f7fed04f3))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ddc3a66a-e1fa-4a27-b16e-3d70c14bdea3))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6ff1484-1cc6-4745-bb05-3ed721e90c46))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b64f25e8-bf03-4a24-95e8-e9675b56bd61))
(pad "1" smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "+3V3") (pintype "passive") (tstamp 495297c5-21b5-4ea1-bdcc-04355d5d1fd4))
(pad "2" smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "GND") (pintype "passive") (tstamp 18cf366f-b48c-4e98-9f14-f8c911e05b09))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:CP_Elec_6.3x7.7" (layer "F.Cu")
(tstamp 4953d9f8-9490-4945-aa12-bb2fc696ea33)
(at 143.5 81.3 90)
(descr "SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm")
(tags "capacitor electrolytic")
(property "LCSC" "C3032176")
(property "Sheetfile" "Pi5_PCIe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor, small symbol")
(property "ki_keywords" "cap capacitor")
(path "/fe18e8bf-31fa-4469-a09d-87ddd36285ba")
(attr smd)
(fp_text reference "C6" (at -3.7 -3.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71f80236-3640-452d-a71b-a06216191849)
)
(fp_text value "150u" (at 0 4.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 970b31d6-48a7-44a7-a7c4-7cf9c66c79eb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64ddeb3c-9aa9-4f1d-b607-935756728eab)
)
(fp_line (start -4.4375 -1.8475) (end -3.65 -1.8475)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9f3b654-9b6f-426f-8a0b-5f761ee713a5))
(fp_line (start -4.04375 -2.24125) (end -4.04375 -1.45375)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eef7df3e-dcd4-4b27-bbda-77b3424df34c))
(fp_line (start -3.41 -2.345563) (end -3.41 -1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8aed416-c895-4b72-9769-52dc04cf32fd))
(fp_line (start -3.41 -2.345563) (end -2.345563 -3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22b04725-d721-4ae7-9295-55f1ce6980d0))
(fp_line (start -3.41 2.345563) (end -3.41 1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b14e4c0-e619-4982-b44e-879794d87469))
(fp_line (start -3.41 2.345563) (end -2.345563 3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f35b0bf-68e3-4bd8-909a-1d5348e10d82))
(fp_line (start -2.345563 -3.41) (end 3.41 -3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3e2b873-f453-45c7-a43f-9e4d1d02a55f))
(fp_line (start -2.345563 3.41) (end 3.41 3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dfcc940d-0005-4c8a-88f7-941a6df10a72))
(fp_line (start 3.41 -3.41) (end 3.41 -1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee852fbe-8058-40b9-a991-3fa23ba73847))
(fp_line (start 3.41 3.41) (end 3.41 1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2617db3b-5ebb-4e4c-a3e7-e330ffb28745))
(fp_line (start -4.7 -1.05) (end -4.7 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cac05c00-f297-4c3e-b6f2-b3acaf13dec2))