-
Notifications
You must be signed in to change notification settings - Fork 1
/
TPS5430.kicad_pcb
25931 lines (25879 loc) · 930 KB
/
TPS5430.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "TPS5430")
(date "2021-07-17")
(rev "1.1.1")
(company "Max Stabel")
(comment 1 "https://github.com/M4a1x/TPS5430")
)
(layers
(0 "F.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)
)
(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 1.51) (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 0x00010fc_ffffffff)
(disableapertmacros true)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "fab/gerber/")
)
)
(net 0 "")
(net 1 "VCC")
(net 2 "GND")
(net 3 "Net-(C5-Pad1)")
(net 4 "Net-(C6-Pad1)")
(net 5 "Net-(C6-Pad2)")
(net 6 "VDD")
(net 7 "Net-(F1-Pad1)")
(net 8 "Net-(JP1-Pad1)")
(net 9 "/Feedback")
(net 10 "Net-(JP2-Pad1)")
(net 11 "Net-(JP3-Pad1)")
(net 12 "Net-(R5-Pad2)")
(net 13 "unconnected-(U1-Pad2)")
(net 14 "unconnected-(U1-Pad3)")
(net 15 "unconnected-(U1-Pad5)")
(net 16 "Net-(JP4-Pad1)")
(net 17 "Net-(R10-Pad1)")
(net 18 "Net-(D3-Pad1)")
(net 19 "Net-(Q2-Pad2)")
(net 20 "Net-(C8-Pad1)")
(footprint "Diode_SMD:D_SMA" (layer "F.Cu")
(tedit 586432E5) (tstamp 084b4fdf-ce7e-4b3f-b92e-9f6c22e63e57)
(at 177 92.2)
(descr "Diode SMA (DO-214AC)")
(tags "Diode SMA (DO-214AC)")
(property "JLC" "SMA,DO-214AC")
(property "LCSC" "C8678")
(property "MPN" "SS34")
(property "Manufacturer" "MDD(Microdiode Electronics)")
(property "Notes" "40V 3A 550mV @ 3A SMA(DO-214AC) Schottky Barrier Diodes (SBD) RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/e7c83ef6-30ca-492a-a606-973253566c32")
(attr smd)
(fp_text reference "D1" (at 0 2.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed4fdb7d-c422-460f-97f4-90bff16b6aa9)
)
(fp_text value "SS34" (at 0 2.6) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e5375b9-b195-4724-8a85-696779be6b04)
)
(fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a030e3df-279b-4e19-8a95-2a76f9c710cc)
)
(fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer "F.SilkS") (width 0.12) (tstamp 170acf49-8070-4e78-a09e-27675d433a1d))
(fp_line (start -3.4 -1.65) (end 2 -1.65) (layer "F.SilkS") (width 0.12) (tstamp cf4ddc3e-cfd9-4048-a72b-7e9fa88b1ae7))
(fp_line (start -3.4 1.65) (end 2 1.65) (layer "F.SilkS") (width 0.12) (tstamp e463f329-a798-47bb-b4f2-4d3be276fbd0))
(fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 1b3fb3ce-964c-46a2-8770-e577b718ea3f))
(fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 654fed89-dbf9-40a8-9b06-7190666294bf))
(fp_line (start 3.5 1.75) (end -3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp bf5feb96-b498-4a52-afa4-441e9c3dfc3a))
(fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer "F.CrtYd") (width 0.05) (tstamp d56e71f5-a4db-4ab1-a781-57d61ee9aa75))
(fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 00c200d0-4444-4604-8e51-57b1e54fcfa6))
(fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 16e09c91-c4d7-4444-8c90-12ddb1bdc45d))
(fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp 434af313-89e8-454a-a5ea-3adeafdfffe5))
(fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer "F.Fab") (width 0.1) (tstamp 49729180-da5d-4f15-b483-60d1de97891d))
(fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 5a52762c-06e4-46f7-8a80-920126f9a448))
(fp_line (start 2.3 1.5) (end -2.3 1.5) (layer "F.Fab") (width 0.1) (tstamp 5ccdffeb-342f-4513-8059-0c18dc5df516))
(fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 99b93588-c282-4b91-8dd7-86b8713f00fb))
(fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp dd46fc01-0625-4cdf-bb15-f2ed7eb3179f))
(fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp e25b8cb1-17e2-427a-bc1e-77552e3ebd5b))
(fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp e927cb2f-ee63-4e44-8de2-9f42f4fc3a92))
(pad "1" smd rect locked (at -2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(C6-Pad2)") (pinfunction "K") (pintype "passive") (tstamp 721c0a00-5aa7-47f2-b47f-ce6c25b7fbbd))
(pad "2" smd rect locked (at 2 0) (size 2.5 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 656856c1-afc5-4821-9ef7-d4d7d684c587))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMA.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" (layer "F.Cu")
(tedit 5EBA9318) (tstamp 0b1ec8ba-13f8-4266-b569-7093ce82aabd)
(at 190 78.3)
(descr "Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
(tags "capacitor tantalum")
(property "JLC" "CASE-B_3528")
(property "LCSC" "C16133")
(property "MPN" "TAJB107K006RNJ")
(property "Manufacturer" "AVX")
(property "Notes" "Tantalum Capacitors 100uF 6.3V CASE-B_3528 RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/d1592f85-fe3b-4820-bb0c-9a46a4979ebd")
(attr smd)
(fp_text reference "C10" (at 6.6 -1.6 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e703959-c4dd-4518-8cca-13eaabd45f5c)
)
(fp_text value "100u/6.3V" (at 0 2.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76145859-912d-45e2-9373-e12e7c954ae7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.88 0.88) (thickness 0.13)))
(tstamp 68e24809-90ac-41f6-ab69-393247e38ef2)
)
(fp_line (start -2.46 -1.51) (end -2.46 1.51) (layer "F.SilkS") (width 0.12) (tstamp 18a4960e-4b07-436f-aff3-06f692cf22dc))
(fp_line (start 1.75 -1.51) (end -2.46 -1.51) (layer "F.SilkS") (width 0.12) (tstamp 3b88f5ec-3c8d-4e25-8f77-c351d5c11889))
(fp_line (start -2.46 1.51) (end 1.75 1.51) (layer "F.SilkS") (width 0.12) (tstamp 5f0d548f-2c47-4f57-8f3a-629e58d09ab8))
(fp_line (start 2.45 1.65) (end -2.45 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 292c6e4d-5a47-4f8c-bf13-c5907448151a))
(fp_line (start -2.45 1.65) (end -2.45 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 67b6aa06-b03b-46f3-98b5-ac4b0601e2fa))
(fp_line (start 2.45 -1.65) (end 2.45 1.65) (layer "F.CrtYd") (width 0.05) (tstamp cc9d2d1d-c979-40bd-a8c7-3cf73ff7fc8a))
(fp_line (start -2.45 -1.65) (end 2.45 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp dd135bbc-ca02-4cf6-aad9-d6c8e6fb20b0))
(fp_line (start 1.75 1.4) (end 1.75 -1.4) (layer "F.Fab") (width 0.1) (tstamp 055cd7a1-7399-4d45-b17a-8e7dae5a4a50))
(fp_line (start -1.05 -1.4) (end -1.75 -0.7) (layer "F.Fab") (width 0.1) (tstamp 1160db1f-8bdd-4081-8468-481c727edd31))
(fp_line (start 1.75 -1.4) (end -1.05 -1.4) (layer "F.Fab") (width 0.1) (tstamp 1e3d14b7-8780-4ca5-8abb-e8443b4195da))
(fp_line (start -1.75 -0.7) (end -1.75 1.4) (layer "F.Fab") (width 0.1) (tstamp 3bf18635-0f27-4adf-bc13-9912a36c3756))
(fp_line (start -1.75 1.4) (end 1.75 1.4) (layer "F.Fab") (width 0.1) (tstamp 575deaa6-cef7-4328-8005-5f811f32a037))
(pad "1" smd roundrect locked (at -1.5375 0) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 6 "VDD") (pintype "passive") (tstamp 09719b50-8fa5-458f-ac0e-ff21423acb14))
(pad "2" smd roundrect locked (at 1.5375 0) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 2 "GND") (pintype "passive") (tstamp 5d18cf7f-5ffc-45ab-a796-d4b50d58a32a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-21_Kemet-B.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 0cb8a7e8-a99d-4e58-9094-3ca7673ad9a9)
(at 165.7 87.5375 90)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "JLC" "SOT-23-3L")
(property "LCSC" "C15127")
(property "MPN" "AO3401A")
(property "Manufacturer" "Alpha & Omega Semicon")
(property "Notes" "MOSFET P Trench 30V 4A 1.3V @ 250uA 44 m? @ 4.3A,10V SOT-23-3L RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/9a318088-4d93-418f-afaf-4303a06e8293")
(attr smd)
(fp_text reference "Q1" (at 1.0375 -2.3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 87dbbc8d-09ca-42bc-9ba8-609574be6cde)
)
(fp_text value "AO3401A" (at 1.3 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c99bd29-0610-4c55-9299-5861010aadc5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp f7c2516a-5ada-4cde-8207-17e5e9e78484)
)
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 09d0dd25-03f4-41c2-96dd-775cfe017606))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 65be34cb-33cb-4f56-b195-d25196e55a7a))
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp acccb079-d0bf-443b-98c1-2ab0bbc8745c))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp d6d51b78-806b-4456-ad90-47f8952772af))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 3de1c4c7-767e-49ad-9b95-7e1813a7851f))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 6dd3656b-db79-4292-83cb-dbf742e91802))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 80485759-7a7a-40a0-8812-1175b3bfb45d))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp ee390f79-92e8-49e5-80f8-2f8af11677fd))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 82d6caaf-1f7b-484e-b0f0-6b0477e1a73f))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp bc29dfb8-5455-4db7-b1f3-f8891709928e))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp ef7fd84f-0c6b-41cf-bcde-a083f49fdafd))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp eff2942f-2ebd-4ee6-9213-5c73cf5036c4))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp f597568d-b6c8-4f89-b010-42ab6414d3f6))
(pad "1" smd roundrect locked (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(C8-Pad1)") (pinfunction "G") (pintype "input") (tstamp 88f8160b-e300-4565-a5b0-b775506015b3))
(pad "2" smd roundrect locked (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pinfunction "S") (pintype "passive") (tstamp fd434f79-e450-4fa8-b657-97f87667db7a))
(pad "3" smd roundrect locked (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C5-Pad1)") (pinfunction "D") (pintype "passive") (tstamp 64b46bc8-6219-448e-b997-fe5054d40aca))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tedit 5B391E66) (tstamp 0f27b4eb-3b3e-4056-a04a-9d990113e0b6)
(at 168.7 79.3 90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/a4129d30-c06b-44d6-b2ed-1b444bd1eaa8")
(attr exclude_from_pos_files)
(fp_text reference "JP4" (at 1.1 -1.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b52e392c-3cb6-4cff-bc5e-675f1eb89d20)
)
(fp_text value "SolderJumper" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1edf37b9-7881-4d36-95a5-17b8e4c81de9)
)
(fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 2416e8ca-c927-4c4f-a227-a2067da1d128))
(fp_line (start -0.7 -1) (end 0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 2cffcadc-126e-4576-b413-fbdbd167d3f1))
(fp_line (start 0.7 1) (end -0.7 1) (layer "F.SilkS") (width 0.12) (tstamp ab9c724e-e99a-4641-804a-1c254bbe7df2))
(fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp c26c5415-1720-4223-8893-de9610389927))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 0b6c7bea-256f-4e69-8998-91f754f6cf36))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 43736cc7-2d97-4a1c-9312-45e3cf302c32))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 821eb034-bd91-47cb-bd5f-6a87ade5832d))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp aa0394ba-9f66-4e94-a538-b55b703fda69))
(fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 064061e8-ff74-4451-b5a3-22359a8453e1))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 09d7016c-2475-47e0-9c04-8ba06566f6ae))
(fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 28be9369-6383-4aeb-aa82-58d33126bf15))
(fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 3339392c-df75-4b08-8607-a2bb537c2a93))
(pad "1" smd custom locked (at -0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 16 "Net-(JP4-Pad1)") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 -0.75)
(xy 0.5 -0.75)
(xy 0.5 0.75)
(xy 0 0.75)
) (width 0) (fill yes))
) (tstamp 88198b50-c250-4976-91f1-5f267ddf527b))
(pad "2" smd custom locked (at 0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 9 "/Feedback") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 -0.75)
(xy -0.5 -0.75)
(xy -0.5 0.75)
(xy 0 0.75)
) (width 0) (fill yes))
) (tstamp 9b25ff95-6164-4a24-bc9b-e9b41d2ea8b7))
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1b60587c-1a69-451f-89a8-cacba60b2c9b)
(at 181.1 92.28 -90)
(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 "JLC" "0402")
(property "LCSC" "C15195")
(property "MPN" "CL05B103KB5NNNC")
(property "Manufacturer" "Samsung Electro-Mechanics")
(property "Notes" "Multilayer Ceramic Capacitors MLCC - SMD/SMT 10nF 50V 0402 RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/f9a0e6f3-40b6-4da1-8f50-2d8a5fb62eaf")
(attr smd)
(fp_text reference "C6" (at 1.92 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53d9607d-a310-465b-bc0d-359b60f1c6a9)
)
(fp_text value "10n" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee287af9-6285-46dd-8fa3-183ab04865a5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 0f5ac649-6da7-4d54-9715-b78404011545)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 5c233bd8-a7c3-4539-80f7-bce3cf8bb826))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 73375ec0-8ead-42e6-b138-273131ef0cb5))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 153b2e7d-39fb-43e1-a2a1-e8e7a4da8451))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 2f33049d-0e5d-4d23-8061-045633572da1))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 7bea6254-8e05-444d-983d-235e6f7e7d52))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp d56586ad-1008-40ab-bcb5-01fa886b1707))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 14c860ea-7439-49c7-ae1c-20b27ac1d865))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp be8e9979-37dc-4140-a40e-b078eb83374c))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp c25f7a6c-f22c-4231-a30e-8d82c6bed1a4))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp e975179e-25ef-42c0-8788-5866f814106c))
(pad "1" smd roundrect locked (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C6-Pad1)") (pintype "passive") (tstamp 37092eef-defb-4a40-86da-4c00d359fb65))
(pad "2" smd roundrect locked (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C6-Pad2)") (pintype "passive") (tstamp a79daa3d-c31c-44f1-9b34-38f251484894))
(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 "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 22ff866c-7e27-42a9-a1e0-18d5b0ad554a)
(at 166.7 92.6)
(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 "JLC" "0402")
(property "LCSC" "C1538")
(property "MPN" "0402B472K500NT")
(property "Manufacturer" "FH(Guangdong Fenghua Advanced Tech)")
(property "Notes" "4.7nF ±10% 50V X7R 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/a6219a4d-b95d-4f7e-8680-253c565c655e")
(attr smd)
(fp_text reference "C8" (at -0.6 1.1 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0db85b9a-3d82-4cac-bc84-8d3d23ee988c)
)
(fp_text value "4n7/50V" (at 0 2.46) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51e2c4af-a7b2-4cb1-9af7-657dbdd90504)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 33ead004-db94-4511-83fa-a0f402c200d7)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp 11544834-e7a0-447f-b24b-d69a205eccc4))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 32a2133c-ca04-4201-aea6-35677c9a6d74))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 8f80c065-5db6-4690-bd55-87f709965161))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp a5d7fa46-3c46-44a9-8269-f2389b13a60c))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp a642f0ed-5e65-4904-b15c-c09159bc5768))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp bfaae104-c152-4adc-a279-1b3f00e63dd6))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 1d904279-b528-455e-afff-14d5a6b9b485))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 3093ff71-7bb2-4a22-8315-166c1830ef34))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4783ff29-a813-4cef-943e-9cebca24033f))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp dda91a80-68e4-4d75-926e-51a315919554))
(pad "1" smd roundrect locked (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(C8-Pad1)") (pintype "passive") (tstamp 0981b4d6-dd57-4a5d-979d-34fd662935ee))
(pad "2" smd roundrect locked (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp a92c3d0b-07a7-4865-bf00-dca1280c26e0))
(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 "MountingHole:MountingHole_2.2mm_M2_ISO7380" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 2519ad23-9262-4080-a1de-679bc7e833f9)
(at 200 94)
(descr "Mounting Hole 2.2mm, no annular, M2, ISO7380")
(tags "mounting hole 2.2mm no annular m2 iso7380")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/9e1de121-1cf1-419b-a3aa-cf07d8cc8066")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45a62802-527c-4f9f-82ef-6357979356ba)
)
(fp_text value "MountingHole" (at 0 2.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 811827ad-18bd-4b95-bfd1-76101f0764b1)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 57d978e4-1e86-461c-aeb3-83175e45d350)
)
(fp_circle (center 0 0) (end 1.75 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 79e25456-847e-41ed-b056-33390468fea3))
(fp_circle (center 0 0) (end 2 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp c66b406d-5a77-4344-8be5-6d8e69e805be))
(pad "" np_thru_hole circle locked (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask) (tstamp 16e84aba-4b5d-4158-8bc1-57b3984c89a2))
)
(footprint "Diode_SMD:D_MiniMELF" (layer "F.Cu")
(tedit 5905D8F5) (tstamp 31e4093f-42ab-407b-a372-91823f8445f9)
(at 165.7 90.8 180)
(descr "Diode Mini-MELF (SOD-80)")
(tags "Diode Mini-MELF (SOD-80)")
(property "JLC" "LL-34")
(property "LCSC" "C8062")
(property "MPN" "ZMM5V6")
(property "Manufacturer" "ST(Semtech)")
(property "Notes" "5.6V 500mW <100nA @ 1V LL-34 Zener Diodes RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/b756d846-4116-4a13-b58e-f7c723e80733")
(attr smd)
(fp_text reference "D2" (at 3.2 -0.3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3165aab2-e53e-4b70-97e8-f3e9b26e9322)
)
(fp_text value "ZMM5V6" (at 0 3.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 575f18c2-e974-4e2a-875e-80778447fe67)
)
(fp_text user "${REFERENCE}" (at 0 -2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 140c788a-37c0-401c-a048-47c662d964d1)
)
(fp_line (start 1.75 -1) (end -2.55 -1) (layer "F.SilkS") (width 0.12) (tstamp 166bbe50-68b4-4cb7-8cbd-349de21553a3))
(fp_line (start -2.55 1) (end 1.75 1) (layer "F.SilkS") (width 0.12) (tstamp 33541beb-746b-4d5c-9c84-4e928d35ce8f))
(fp_line (start -2.55 -1) (end -2.55 1) (layer "F.SilkS") (width 0.12) (tstamp 7a99907f-6298-40a7-97fa-e925a0647b72))
(fp_line (start -2.65 -1.1) (end 2.65 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp 140c4c03-ad19-4338-b71f-0d7704a719a7))
(fp_line (start 2.65 1.1) (end -2.65 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 1523676f-5082-45a1-ac3f-cfc1c76cf707))
(fp_line (start 2.65 -1.1) (end 2.65 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 2ce1ea92-1377-453a-a21a-c6afeebe6ec3))
(fp_line (start -2.65 1.1) (end -2.65 -1.1) (layer "F.CrtYd") (width 0.05) (tstamp a740200e-fe11-44a5-892e-adb9d1510d89))
(fp_line (start 1.65 0.8) (end -1.65 0.8) (layer "F.Fab") (width 0.1) (tstamp 03dcb9ab-b393-4fc1-b544-fb16092d4fe4))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 14563927-64c1-4412-b52a-8f21f0099611))
(fp_line (start 1.65 -0.8) (end 1.65 0.8) (layer "F.Fab") (width 0.1) (tstamp 147d11f2-f143-4d53-bb51-b861ca594f83))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 159e7861-4258-4f25-b17c-046c7f86e9fa))
(fp_line (start -1.65 0.8) (end -1.65 -0.8) (layer "F.Fab") (width 0.1) (tstamp 3b7e0ef4-136a-4535-9030-eca62a0bd28a))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 600fb171-d966-4914-8773-60a8dc05817a))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 8a875f3e-d647-487c-b831-62b61d013d7a))
(fp_line (start -1.65 -0.8) (end 1.65 -0.8) (layer "F.Fab") (width 0.1) (tstamp a9a571c9-0364-4e58-82c7-567612e8f4e0))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp c6f07557-29df-4946-b5f3-f78583ed4e29))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp e83d5550-2b0f-4b3b-a189-03bb1eee35b5))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp faf301a0-c76b-4d6a-a349-e5020b04685d))
(pad "1" smd rect locked (at -1.75 0 180) (size 1.3 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VCC") (pinfunction "K") (pintype "passive") (tstamp 62191800-a9bb-4b88-ac5a-3facfc97d45b))
(pad "2" smd rect locked (at 1.75 0 180) (size 1.3 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(C8-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 5369543b-26ed-4384-9b99-8da71465158b))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_MiniMELF.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 4762ca6e-6384-40c1-84cd-9ddb3feb245d)
(at 166.5 84.6)
(descr "Capacitor SMD 0603 (1608 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 "JLC" "0603")
(property "LCSC" "C14663")
(property "MPN" "CC0603KRX7R9BB104")
(property "Manufacturer" "YAGEO")
(property "Notes" "100nF ±10% 50V X7R 0603 Multilayer Ceramic Capacitors MLCC - SMD/SMT RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/ee400fa5-3fbd-422a-b761-ea0603f2def4")
(attr smd)
(fp_text reference "C5" (at -2.4 0.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 056f3566-e9ce-44fa-8888-00942f4b942e)
)
(fp_text value "100n/50V" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd1d8d54-8669-4cd7-aafd-11bcbc759b73)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a949b198-cf9f-4df2-8d47-e9fbb6a6c347)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 1db709ce-26db-4de6-b104-ed92f86954ec))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 7d7ee091-7034-493c-89f3-8d7ede9371a9))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2a5cf146-336f-430d-bbdb-abd0c742ca13))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8c769e34-7c31-428a-9e32-c6b45edc765c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9f50ffe1-adf8-41ef-94f6-d3aa6fb367c3))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp fff91ba6-bb5c-43db-a123-4cf13c72fc34))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a461fdd5-9e11-43e9-af24-085432105699))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b60e4310-c1f6-4250-8ad2-2364c7aac19d))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c836ade8-d7a2-49b3-982b-2f7424e452c6))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cc8e154b-95b4-4b0b-9021-f8953afa904c))
(pad "1" smd roundrect locked (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C5-Pad1)") (pintype "passive") (tstamp c3ef4830-63d5-450b-88c2-c53dbe5efddf))
(pad "2" smd roundrect locked (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 0ee411a2-e4d8-4bb0-a65f-ecf714635d2c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tedit 5B391E66) (tstamp 49f4b997-42dd-44c5-b092-5f2978f80304)
(at 175.7 79.3 90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/ebdf58f3-05f8-4df7-93fe-90feac7bd51b")
(attr exclude_from_pos_files)
(fp_text reference "JP2" (at 0 -1.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8c59704-b756-4939-a57e-d2f17e08547e)
)
(fp_text value "SolderJumper" (at 1.3 1.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7e61e24-ca97-4812-a739-9fc668054554)
)
(fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 55801572-6570-429d-8905-bb9f424c0612))
(fp_line (start 0.7 1) (end -0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 5e30d313-1569-400e-b98e-b9c88b0013a7))
(fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 8360c7a4-5d65-4fd3-bf99-b0fffc60cc27))
(fp_line (start -0.7 -1) (end 0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp a52a3f09-78c3-4038-9d72-63f8655f2ea2))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 27ce83a2-ec26-47a8-aca0-5ce7fbfd43af))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 62ee8b66-6123-4bac-9972-f6594b6e1238))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 86a60fe5-c34d-456a-ad3e-6ae0cb3f93e5))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 88267505-ad52-40dd-9fb5-abf0f1245a54))
(fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 10b74f16-3f5a-4fab-b74c-9ec76a32d6fd))
(fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 1683a27e-9318-4466-afe8-86960bbdadfb))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 5a6d01fc-140d-45fd-bc8e-1fe3ee47e666))
(fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp e228bf4e-2ff5-442f-9511-8b15f4fc81f9))
(pad "1" smd custom locked (at -0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 10 "Net-(JP2-Pad1)") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 -0.75)
(xy 0.5 -0.75)
(xy 0.5 0.75)
(xy 0 0.75)
) (width 0) (fill yes))
) (tstamp 813c2f87-390c-43ef-9fc4-85722fde56de))
(pad "2" smd custom locked (at 0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 9 "/Feedback") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 -0.75)
(xy -0.5 -0.75)
(xy -0.5 0.75)
(xy 0 0.75)
) (width 0) (fill yes))
) (tstamp 300f9aa1-329b-4289-82e8-b54a8960f042))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 57b53f89-135c-4103-952f-baf59a39b5ea)
(at 171.7 82.1 -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 "JLC" "0402")
(property "LCSC" "C25890")
(property "MPN" "0402WGF3301TCE")
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)")
(property "Notes" "3.3kΩ ±1% 1/16W ±100ppm/℃ 0402 Chip Resistor - Surface Mount RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/1b7baf3e-2712-4b0a-883f-6e7e3ef2697a")
(attr smd)
(fp_text reference "R3" (at -0.15 1 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f1307bf-1477-458e-8b01-3f6c5f2b57d8)
)
(fp_text value "3k3" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1110522-e900-47c1-98b3-d62633c728b9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp fc93afdf-fb82-4294-806d-76d8dce8db16)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 112e8e4f-64b4-49ff-9c50-e419be59e840))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp d1defb1d-a259-447b-8ceb-eec5a35bff43))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5625b26d-44d6-4fe1-b683-2b3e18bc9c02))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp a363c2e2-952d-423d-83a3-68b7242c26dd))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp abf45c8a-6120-4b1e-afe4-13a32298eef1))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp ba2c4931-e09d-4701-a790-fa062e4710d4))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 313a681b-25b5-45c2-9b6f-aa6326752cd6))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 315d65c6-9445-4b60-8055-fc1c8db03b6f))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 415bb5fc-75dc-489c-a0c6-d16823220ccb))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 9216a031-a813-4033-a1f2-c3ce1715f320))
(pad "1" smd roundrect locked (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(JP1-Pad1)") (pintype "passive") (tstamp 748b08ee-646b-4073-943f-c541a90321d2))
(pad "2" smd roundrect locked (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp e0175290-f140-44d8-87c0-6ad954f94fe2))
(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 "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5e4205a6-4b5f-4915-9ef6-ee360821daae)
(at 172.2 86.6 90)
(descr "Capacitor SMD 1206 (3216 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 "JLC" "1206")
(property "LCSC" "C13585")
(property "MPN" "CL31A106KBHNNNE")
(property "Manufacturer" "Samsung Electro-Mechanics")
(property "Notes" "10uF ±10% 50V X5R 1206 Multilayer Ceramic Capacitors MLCC - SMD/SMT RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/6e889bf6-701a-4ba9-993e-9fed9cd70862")
(attr smd)
(fp_text reference "C4" (at 2.95 0 270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ec7e423-5510-4ed1-9cab-cd57a914e3d4)
)
(fp_text value "10u/50V" (at 0 1.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 252daa3b-62b7-4b62-b874-c1a17a457f9f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 11df1598-2b6f-4519-8967-19e9a8c772d4)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 05923723-e8e8-460b-ba38-8f385831dfba))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp a3bff151-45e5-4b18-8213-90b89548f2eb))
(fp_line (start 2.3 1.15) (end -2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 4b3809bf-8faa-4364-8ce0-71dd5baf00c7))
(fp_line (start -2.3 1.15) (end -2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 69dcc5c3-20bb-4a05-a993-2e535ca58072))
(fp_line (start 2.3 -1.15) (end 2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp d968ef30-047a-4f09-ade2-6a938123f5ca))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp dcfda913-4f66-4d79-a6e9-2a194918fd9e))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 27d02e67-8c96-4713-a834-8e5cb1a7335f))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 35086c44-ab48-441b-9713-5046c838c7a2))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp adb77509-a46c-42d5-ad4d-6f703a1d248d))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp bb405427-0d21-4ba5-9450-041d398b213c))
(pad "1" smd roundrect locked (at -1.475 0 90) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 1 "VCC") (pintype "passive") (tstamp 10418229-83ff-48e0-a1b6-5c91374bb5c3))
(pad "2" smd roundrect locked (at 1.475 0 90) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 2 "GND") (pintype "passive") (tstamp 46965a68-41b4-47cb-b9aa-4cd52a7025f6))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.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")
(tedit 5F68FEEE) (tstamp 6f8049ec-8b35-495f-a6a3-026c3fa70871)
(at 179.7 82.15 -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 "JLC" "0402")
(property "LCSC" "C25768")
(property "MPN" "0402WGF2202TCE")
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)")
(property "Notes" "22kΩ ±1% 1/16W ±100ppm/℃ 0402 Chip Resistor - Surface Mount RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/085f92ef-1cf7-469f-a522-7c6066e1c128")
(attr smd)
(fp_text reference "R7" (at 1.85 -0.1 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84ae8022-5928-4757-ab3a-a8ac9d661be2)
)
(fp_text value "22k" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0ffb005-4565-4c9c-af72-4f19b69a9d2e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp b6282275-fb4c-4528-b7b5-d25d9bdb522a)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp e4285325-bd63-445d-9719-630bdb8baf3a))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp ee4ed7d1-a05e-4edf-bfa1-2153c7687e8d))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 02a77916-7b96-49b1-912e-1fa18b6d533b))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4a201915-bb75-4405-b1e2-5156845c8f4d))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 796e6d98-22da-44ec-9c46-d910ef8bc677))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp fa5d25f3-61c4-457d-a1e9-41c79e6c7462))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 148cdfe6-500d-49fd-a63f-cd2c2de43ea8))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 35ca052e-5783-4b75-becd-508f210eb428))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 770804ff-9d5b-4ef7-83f4-e155032c0929))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp ff9601ae-1372-4519-a6ec-b363f662697f))
(pad "1" smd roundrect locked (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(JP3-Pad1)") (pintype "passive") (tstamp 3a54bc60-7582-48b1-8b0c-648fd994467d))
(pad "2" smd roundrect locked (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp d4466c93-a2e4-4a25-9e97-777cac2711b6))
(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")
(tedit 5F68FEEE) (tstamp 71d7f559-efad-4392-8833-11383f869ff0)
(at 169.3 82.1 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 "JLC" "0402")
(property "LCSC" "C25079")
(property "MPN" "0402WGF1200TCE")
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)")
(property "Notes" "120Ω ±1% 1/16W ±100ppm/℃ 0402 Chip Resistor - Surface Mount RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/22284af9-9da3-4e62-9202-da833c097772")
(attr smd)
(fp_text reference "R10" (at -2.15 -0.95 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12837b0f-1b4a-4c45-9b19-5c82c0cb0716)
)
(fp_text value "120" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1172f54f-7814-462f-8400-118240564217)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp beb63ee8-42f8-4ee6-8e51-e860ae9da9b0)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp cdfe3c35-fcd5-4ccd-af4d-f39e254c6185))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp cff02b0f-6779-402e-8bcb-3984618e590c))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 00724fda-301c-4b19-9e5c-650986b4e4f3))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 140ca3a5-2dbb-4fa0-950b-19cd401a1f05))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5f8d0eda-b189-4ab8-b03f-7c5e68ef4cc9))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp d34e10fd-0454-458a-a27d-718962e61383))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 0a36515b-49fc-4093-b139-f449ba5b8b5f))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 2d4ed2f3-84dc-486c-9047-4c620665b2f5))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 79f1bf79-82b0-4c42-ae3d-dd50ab8e2da1))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp c533538b-3e6a-4b66-ba86-44d9da5eba3d))
(pad "1" smd roundrect locked (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(R10-Pad1)") (pintype "passive") (tstamp 1115a19d-81fc-4ac7-bd8d-c234af3d5aef))
(pad "2" smd roundrect locked (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp f8025664-af23-4880-b692-c775e3fc7dbf))
(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 "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tedit 5B391E66) (tstamp 7a8515e0-daa8-4e0f-a223-fb83c200c8d9)
(at 172.2 79.3 90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/74638cb3-d4a0-4ec6-8d48-db06454c02ff")
(attr exclude_from_pos_files)
(fp_text reference "JP1" (at 0 -1.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6042b9d2-180e-482d-8ca4-4203ccca0589)
)
(fp_text value "SolderJumper" (at 1.3 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9cdb4d4-519f-4f25-9716-ed7f698351e1)
)
(fp_line (start -0.7 -1) (end 0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 33586df5-b7e2-4b8d-ac93-59c905e82ee9))
(fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 58737c3c-1dbd-49e4-82d4-f635f277c2aa))
(fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 72a30783-a666-40ac-987f-69090b171d1f))
(fp_line (start 0.7 1) (end -0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 9e04d280-58cb-44c3-a931-8fdb28d9a501))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 2a1433e9-c14a-48ee-93ca-687af5c42cd3))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 2a2f902f-ce39-40dc-8526-44f830b1ef01))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 8045dcfc-a338-4fe5-9c82-df82a319f7d6))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "F.SilkS") (width 0.12) (tstamp b4c31701-dc30-4f90-ac6d-3c8138a89f7a))
(fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 0b2fa900-c664-4b01-9181-961c4d391f04))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 43ae59f7-0a56-4e0c-9868-fdaac56facdd))
(fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp b4dc26b0-2909-42e1-83e8-c853236d002a))
(fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp b987eeb5-f3a8-4d61-bf91-0c39085cc8cb))
(pad "1" smd custom locked (at -0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 8 "Net-(JP1-Pad1)") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 -0.75)
(xy 0.5 -0.75)
(xy 0.5 0.75)
(xy 0 0.75)
) (width 0) (fill yes))
) (tstamp 63930166-49d8-4192-be65-8560f3d68d73))
(pad "2" smd custom locked (at 0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 9 "/Feedback") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 -0.75)
(xy -0.5 -0.75)
(xy -0.5 0.75)
(xy 0 0.75)
) (width 0) (fill yes))
) (tstamp d1d4b4c7-4519-4324-a1a6-6780611afa0f))
)
(footprint "Package_SO:TI_SO-PowerPAD-8_ThermalVias" (layer "F.Cu")
(tedit 5A02F2D3) (tstamp 7fc2efa5-d2e7-4e03-b59d-cfa4b2839d04)
(at 177.3 87.5 180)
(descr "8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm² body, exposed pad, thermal vias with large copper area, as proposed in http://www.ti.com/lit/ds/symlink/tps5430.pdf")
(tags "HTSOP 1.27")
(property "JLC" "LSOP-8_EP_3.9x4.9x1.27P")
(property "LCSC" "C9864")
(property "MPN" "TPS5430DDAR")
(property "Manufacturer" "Texas Instruments")
(property "Notes" "36V 3A SOP-8_EP_150mil DC-DC Converters RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/4d358fe7-ab96-4a84-bfe6-2edbfa72df00")
(attr smd)
(fp_text reference "U1" (at -3.8 -3.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f8ec86a-f308-4786-9e74-fd4a927d589c)
)
(fp_text value "TPS5430DDA" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a11cbc53-2d3b-4c93-83f9-e9e58bb01d5f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.9 0.9) (thickness 0.135)))
(tstamp 487e666e-4164-4ddd-a4f0-b7d19551a6e5)
)
(fp_line (start 2.075 2.575) (end 2.075 2.43) (layer "F.SilkS") (width 0.15) (tstamp 172444fe-092a-4646-a463-000e062abf00))
(fp_line (start 2.075 -2.575) (end 2.075 -2.43) (layer "F.SilkS") (width 0.15) (tstamp 636a485c-09b5-4a4f-8ac5-f58df71f370d))
(fp_line (start -2.075 -2.525) (end -3.475 -2.525) (layer "F.SilkS") (width 0.15) (tstamp 700b52e2-8449-4976-acaa-1546d37c1ab0))
(fp_line (start -2.075 2.575) (end 2.075 2.575) (layer "F.SilkS") (width 0.15) (tstamp 80b48dbc-480c-4b8b-b852-c5ff0b44cc5c))
(fp_line (start -2.075 -2.575) (end -2.075 -2.525) (layer "F.SilkS") (width 0.15) (tstamp a8029e7b-8a80-4caf-8558-f2d2045d4def))
(fp_line (start -2.075 -2.575) (end 2.075 -2.575) (layer "F.SilkS") (width 0.15) (tstamp cd7ac51d-af89-4d85-866a-2aa136add17d))
(fp_line (start -2.075 2.575) (end -2.075 2.43) (layer "F.SilkS") (width 0.15) (tstamp d6ae749a-18cd-4e93-8f2c-dafd2603fefb))
(fp_line (start -3.75 -2.75) (end 3.75 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 30704e55-f75e-45b8-889b-ef198a92fae8))
(fp_line (start 3.75 -2.75) (end 3.75 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 7bf79969-8874-41e9-aacd-7a468c151825))
(fp_line (start -3.75 2.75) (end 3.75 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 86e5bf06-1df6-4e08-8333-bbe2ed126051))
(fp_line (start -3.75 -2.75) (end -3.75 2.75) (layer "F.CrtYd") (width 0.05) (tstamp ee8402da-6f1d-4703-87a6-3e1caf5b4579))
(fp_line (start 1.95 -2.45) (end 1.95 2.45) (layer "F.Fab") (width 0.15) (tstamp 4d4669ef-a9de-4dcc-aa86-eb70b76126e7))
(fp_line (start -1.95 2.45) (end -1.95 -1.45) (layer "F.Fab") (width 0.15) (tstamp 96069cb5-8245-448c-a5c3-5d514830cc0e))
(fp_line (start -1.95 -1.45) (end -0.95 -2.45) (layer "F.Fab") (width 0.15) (tstamp cbe80819-b230-47c3-9a43-c699f4fc9a57))
(fp_line (start -0.95 -2.45) (end 1.95 -2.45) (layer "F.Fab") (width 0.15) (tstamp e3138522-6c3c-4436-8f25-81f6c706f6aa))
(fp_line (start 1.95 2.45) (end -1.95 2.45) (layer "F.Fab") (width 0.15) (tstamp f039418c-95ea-447b-bf1a-bdba6dd97d17))
(pad "1" smd rect locked (at -2.7 -1.905 180) (size 1.55 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(C6-Pad1)") (pinfunction "BOOT") (pintype "input") (tstamp df0e8ef6-6888-4f28-897b-69da9fa6d9a3))
(pad "2" smd rect locked (at -2.7 -0.635 180) (size 1.55 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "unconnected-(U1-Pad2)") (pinfunction "NC") (pintype "no_connect") (tstamp a356720a-c42e-495c-ac40-8bd4f688268b))
(pad "3" smd rect locked (at -2.7 0.635 180) (size 1.55 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "unconnected-(U1-Pad3)") (pinfunction "NC") (pintype "no_connect") (tstamp c9b38185-a991-4da6-9770-0958da72c4a1))
(pad "4" smd rect locked (at -2.7 1.905 180) (size 1.55 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/Feedback") (pinfunction "VSENSE") (pintype "input") (tstamp 7bdcf35d-421a-48e8-bf10-def25be46565))
(pad "5" smd rect locked (at 2.7 1.905 180) (size 1.55 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "unconnected-(U1-Pad5)") (pinfunction "EN") (pintype "input+no_connect") (tstamp d2a350f3-22fd-4268-a56f-8cb385733491))
(pad "6" smd rect locked (at 2.7 0.635 180) (size 1.55 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 4ac4f840-b30f-481f-ac7f-e05449bdec07))
(pad "7" smd rect locked (at 2.7 -0.635 180) (size 1.55 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VCC") (pinfunction "VIN") (pintype "power_in") (tstamp 9321e0c0-f024-4c60-803a-f2c40238fb4c))
(pad "8" smd rect locked (at 2.7 -1.905 180) (size 1.55 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(C6-Pad2)") (pinfunction "PH") (pintype "output") (tstamp 3f46ffbc-1ce2-48dd-b5eb-9ae89eedb3b1))
(pad "9" thru_hole circle locked (at 0.6 1.8 180) (size 0.6 0.6) (drill 0.3) (layers *.Cu)
(net 2 "GND") (pinfunction "GNDPAD") (pintype "power_in") (tstamp 094cf674-21e6-482c-b79c-1219ba9638dd))
(pad "9" smd rect locked (at 0 0 180) (size 2.6 3.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GNDPAD") (pintype "power_in") (tstamp 0d603c99-7e7f-4229-8652-79d0c7e46f8e))
(pad "9" thru_hole circle locked (at 0.6 -0.6 180) (size 0.6 0.6) (drill 0.3) (layers *.Cu)
(net 2 "GND") (pinfunction "GNDPAD") (pintype "power_in") (tstamp 2722e4ed-ffb1-4ea1-a1e4-d60fdfadf007))
(pad "9" smd rect locked (at 0 0 180) (size 2.95 4.5) (layers "F.Cu")
(net 2 "GND") (pinfunction "GNDPAD") (pintype "power_in") (tstamp 46b7322d-111d-41dd-a724-3b3c4113a88d))
(pad "9" smd rect locked (at 0 0 180) (size 2.95 4.5) (layers "B.Cu")
(net 2 "GND") (pinfunction "GNDPAD") (pintype "power_in") (tstamp 5ddc97ba-a88c-4571-be74-ea7f1e10fdba))
(pad "9" thru_hole circle locked (at -0.6 -1.8 180) (size 0.6 0.6) (drill 0.3) (layers *.Cu)
(net 2 "GND") (pinfunction "GNDPAD") (pintype "power_in") (tstamp 77acfe33-d6a8-453d-afbe-d8e9454b4807))
(pad "9" thru_hole circle locked (at 0.6 -1.8 180) (size 0.6 0.6) (drill 0.3) (layers *.Cu)
(net 2 "GND") (pinfunction "GNDPAD") (pintype "power_in") (tstamp 795f3c32-25cc-472a-a630-0bb5a9317c76))
(pad "9" thru_hole circle locked (at -0.6 0.7 180) (size 0.6 0.6) (drill 0.3) (layers *.Cu)
(net 2 "GND") (pinfunction "GNDPAD") (pintype "power_in") (tstamp 7e944645-8524-4c52-9094-299d0d09e19a))
(pad "9" thru_hole circle locked (at 0.6 0.7 180) (size 0.6 0.6) (drill 0.3) (layers *.Cu)
(net 2 "GND") (pinfunction "GNDPAD") (pintype "power_in") (tstamp a315cc56-9a05-4405-86bc-136c6614c218))
(pad "9" thru_hole circle locked (at -0.6 -0.6 180) (size 0.6 0.6) (drill 0.3) (layers *.Cu)
(net 2 "GND") (pinfunction "GNDPAD") (pintype "power_in") (tstamp c7fa70eb-72cb-4047-8558-64d989e93a70))
(pad "9" thru_hole circle locked (at -0.6 1.8 180) (size 0.6 0.6) (drill 0.3) (layers *.Cu)
(net 2 "GND") (pinfunction "GNDPAD") (pintype "power_in") (tstamp ead7153c-a055-47fa-b618-dbbf4c047661))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/HTSOP-8-1EP_3.9x4.9mm_Pitch1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 95f19df6-dd73-49c6-9253-174531b2a1f4)
(at 196.7 81)
(descr "Resistor SMD 0603 (1608 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 "JLC" "0603")
(property "LCSC" "C25804")
(property "MPN" "0603WAF1002T5E")
(property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)")
(property "Notes" "±1% 1/10W Thick Film Resistors 75V ±100ppm/℃ -55℃~+155℃ 10kΩ 0603 Chip Resistor - Surface Mount ROHS")
(property "Sheetfile" "TPS5430.kicad_sch")
(property "Sheetname" "")
(path "/96239c57-f07b-4e98-8e16-76896743074e")
(attr smd)
(fp_text reference "R11" (at 1.1 -1.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c3c01ec-b349-44fd-9996-de7b2f610012)
)
(fp_text value "10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eebc4328-44b0-4805-830c-e1a82a6cd7bb)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8ce04a1a-6b60-4ab6-87c9-2a3db3652e8f)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7a499d7d-e854-45a9-9fbe-473caa8652aa))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp f91ba5c6-fde3-4302-8d0f-17e1c773737a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 64b94ec4-55fe-4945-a082-fecec95de0cc))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9ecee501-fb50-4233-90e1-558c2ecfd11d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c18b1f10-ff07-4e77-a32a-a74b4abad132))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp de0a85d1-e7b9-4366-b973-51da477175e2))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3baa1aab-1091-40ea-ad17-019669a1c68c))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3e714811-ba3e-4f52-9bda-0bacf88c193e))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a5795658-769e-4d6d-ba21-c2a59aeda422))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b62a4e62-166c-49c7-9bee-ffca3d5c94a4))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(Q2-Pad2)") (pintype "passive") (tstamp 50705fbd-63d2-4fb7-88e4-2585ea23740e))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp f7b7d007-eb94-4b1e-ab21-9b9326f020fb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 9824a82d-e26a-4c50-9b94-b7365690f3bc)
(at 172.2 91.3 -90)
(descr "Capacitor SMD 1206 (3216 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 "JLC" "1206")
(property "LCSC" "C13585")
(property "MPN" "CL31A106KBHNNNE")
(property "Manufacturer" "Samsung Electro-Mechanics")
(property "Notes" "10uF ±10% 50V X5R 1206 Multilayer Ceramic Capacitors MLCC - SMD/SMT RoHS")
(property "Sheetfile" "TPS5430.kicad_sch")