-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSIMO_Non_inverted_Buck_Boost.kicad_pcb
15300 lines (15179 loc) · 750 KB
/
SIMO_Non_inverted_Buck_Boost.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")
(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") (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") (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 false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(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 false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "manufacturing/")
)
)
(net 0 "")
(net 1 "+12V")
(net 2 "/V1_AC")
(net 3 "GNDA")
(net 4 "Net-(C121-Pad1)")
(net 5 "+3.3V")
(net 6 "/V2_AC")
(net 7 "Net-(C221-Pad1)")
(net 8 "/V3_DC")
(net 9 "Net-(C321-Pad1)")
(net 10 "Net-(J1-Pad1)")
(net 11 "Net-(J2-Pad1)")
(net 12 "Net-(J101-Pad1)")
(net 13 "Net-(J101-Pad2)")
(net 14 "Net-(J111-Pad1)")
(net 15 "Net-(J111-Pad2)")
(net 16 "Net-(J201-Pad1)")
(net 17 "Net-(J201-Pad2)")
(net 18 "Net-(J211-Pad1)")
(net 19 "Net-(J211-Pad2)")
(net 20 "Net-(J311-Pad1)")
(net 21 "Net-(J311-Pad2)")
(net 22 "Net-(J401-Pad1)")
(net 23 "Net-(J401-Pad2)")
(net 24 "Net-(J501-Pad1)")
(net 25 "Net-(J501-Pad2)")
(net 26 "/Vin_MOS_S")
(net 27 "/L_V+")
(net 28 "Net-(PS101-Pad4)")
(net 29 "/V1MOS_S")
(net 30 "Net-(PS111-Pad4)")
(net 31 "Net-(PS201-Pad4)")
(net 32 "/V2MOS_S")
(net 33 "Net-(PS211-Pad4)")
(net 34 "/V3MOS_S")
(net 35 "Net-(PS311-Pad4)")
(net 36 "/Flywhell_Vin_MOS_S")
(net 37 "Net-(PS401-Pad4)")
(net 38 "/Flywhell_Vout_MOS_S")
(net 39 "Net-(PS501-Pad4)")
(net 40 "/Vin1_MOS_G")
(net 41 "/V1MOS_G")
(net 42 "/L_V-")
(net 43 "/Vin2_MOS_G")
(net 44 "/V2MOS_G")
(net 45 "/V3MOS_G")
(net 46 "/Flywhell_Vin_MOS_G")
(net 47 "/Flywhell_Vout_MOS_G")
(net 48 "Net-(R101-Pad2)")
(net 49 "Net-(R102-Pad1)")
(net 50 "Net-(R102-Pad2)")
(net 51 "Net-(R111-Pad2)")
(net 52 "Net-(R112-Pad1)")
(net 53 "Net-(R112-Pad2)")
(net 54 "Net-(R201-Pad2)")
(net 55 "Net-(R202-Pad1)")
(net 56 "Net-(R202-Pad2)")
(net 57 "Net-(R211-Pad2)")
(net 58 "Net-(R212-Pad1)")
(net 59 "Net-(R212-Pad2)")
(net 60 "Net-(R311-Pad2)")
(net 61 "Net-(R312-Pad1)")
(net 62 "Net-(R312-Pad2)")
(net 63 "Net-(R401-Pad2)")
(net 64 "Net-(R402-Pad1)")
(net 65 "Net-(R402-Pad2)")
(net 66 "Net-(R501-Pad2)")
(net 67 "Net-(R502-Pad1)")
(net 68 "Net-(R502-Pad2)")
(net 69 "unconnected-(U101-Pad1)")
(net 70 "unconnected-(U101-Pad4)")
(net 71 "unconnected-(U111-Pad1)")
(net 72 "unconnected-(U111-Pad4)")
(net 73 "unconnected-(U201-Pad1)")
(net 74 "unconnected-(U201-Pad4)")
(net 75 "unconnected-(U211-Pad1)")
(net 76 "unconnected-(U211-Pad4)")
(net 77 "unconnected-(U311-Pad1)")
(net 78 "unconnected-(U311-Pad4)")
(net 79 "unconnected-(U401-Pad1)")
(net 80 "unconnected-(U401-Pad4)")
(net 81 "unconnected-(U501-Pad1)")
(net 82 "unconnected-(U501-Pad4)")
(net 83 "Net-(Q111-Pad2)")
(net 84 "Net-(J601-Pad2)")
(net 85 "Net-(Q401-Pad1)")
(net 86 "Net-(C122-Pad1)")
(net 87 "Net-(C222-Pad1)")
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 03cc6b32-9e55-42c3-9bdd-b524cb1c8e89)
(at 105.41 99.06)
(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" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/38205875-8221-49f3-be2c-f9ec0f9d0bb4")
(attr smd)
(fp_text reference "C402" (at 0 -1.68) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 259dd5f6-e131-44a0-a0b7-07964a46bb7c)
)
(fp_text value "100n" (at 1.5025 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67d81c31-7843-4c19-a775-036d184f0c14)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 19103906-5603-4c27-b2d3-208a2c6693e1)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 255a96bb-f61d-469d-969d-551f2e5a791e))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 6bd31946-eec6-45d0-bde8-ac60e6564cec))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 7156b8de-8737-4420-9edd-a8d4e6c7710e))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp b19d2b58-ab2b-4219-9fdf-01b1500c085d))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp e54fc1f3-5ce9-4f07-b6b9-5c33f03097fa))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp e70876fe-a056-4cb2-8fb3-115232cc50ea))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 1481e735-f3d1-4b1b-9732-ce7e21721b03))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 65e4bbd9-8096-4ba0-8d56-9434aae5a72d))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9071c127-cb34-4aac-8df7-59ef190e54cc))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 9e00ae29-1204-44a0-89c9-d6d014778701))
(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 1 "+12V") (pintype "passive") (tstamp 47d0f541-2e7d-4da7-bcb6-4b82a87b77db))
(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 3 "GNDA") (pintype "passive") (tstamp 0570727d-9bd1-471e-a187-988a6fcb1faa))
(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")
(tedit 5F68FEEF) (tstamp 075fe67f-d6d2-4b94-8356-b5bc105ffa46)
(at 269.24 90.805)
(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" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/1ff22a6d-3f7f-49e7-a2fe-7c8e9c772d08")
(attr smd)
(fp_text reference "C112" (at 0 -1.68) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e666768-916f-407c-a35e-0af1900849d2)
)
(fp_text value "100n" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 772a2bc1-a82e-41c2-ab95-c5772c2df6b3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c5883352-1a38-48e3-ad77-8c0e67b9eca5)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 4b6fe330-7e31-4909-bdf2-0493b9ebfee0))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 7d89227d-26e2-4e3c-9e79-22a3f099c26c))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 3478d21c-20a3-4890-877d-aec81945fe0f))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 9f01bd44-1f85-4052-a088-db6ff4abd96d))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp a428e4bf-ab6e-43f7-adad-694b1f685398))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp c22198bf-19fa-4747-9a36-ed703d60b86c))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 2e04a79b-4ec1-4fda-84e6-eb0ea4269e22))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp c93f8445-0132-498f-8ed7-225da08f6375))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp cecaec69-c215-4449-a8db-397810894481))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp f46db3f9-f951-404f-9f67-40e4a81d6dbe))
(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 1 "+12V") (pintype "passive") (tstamp e22e62c1-e4f7-4266-befa-eb40e919ee6e))
(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 3 "GNDA") (pintype "passive") (tstamp 0aec215b-e372-4faa-ae63-bf337701d682))
(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 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 0b1805a2-92d8-41a3-863c-4b5f23e687df)
(at 116.835 45.085 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/705be537-58b2-47a3-979d-824e0e685a4e")
(attr through_hole)
(fp_text reference "J601" (at 2.54 2.545) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c15acef-16ee-4dac-a3e4-8f1f462bbf5b)
)
(fp_text value "IL_sense" (at 0 4.87 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c6a0608-113e-4952-aa98-067862a09b84)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d9398cf-9302-437b-88b0-dee67e548f41)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 0fa7207a-3b83-492c-ab83-b371dd026f56))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 364a02cb-c8c1-45d7-a0b5-781df1dd0cb6))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 3eb1f175-d31b-44cb-8b43-c941241d0933))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 5695674e-8d03-443a-9141-f3f012c2b3a0))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 86cefab3-1c2f-4f28-a5ba-6d52aa88e9a0))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e0287973-eff8-4a47-9d88-0ab61a3c3568))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 0330e7e4-c243-4bc8-8746-47755b5dd8bc))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1f5c104e-8e90-4260-9cc2-60d9ecc561c2))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp d0cfa7b0-d575-4610-8f1a-7d4b0b8ad8dd))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp dc8c39a7-b870-4a9f-9c23-aecde516ff1e))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0db07979-3a00-4c1a-8320-ccb83a143ba7))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 3843c98b-f2b6-4333-86f3-b2af0179db85))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp b94f2e21-36be-471a-8f11-b79f3bacee9f))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp d1bb98b6-722a-4487-aed1-56ddb654d6ad))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp f06c2e9a-eccc-46c9-b371-116f726dbf11))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "GNDA") (pinfunction "Pin_1") (pintype "passive") (tstamp c556c4da-2b6b-4ec1-9f88-5b2750c94c9a))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 84 "Net-(J601-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp d161f7eb-b265-461f-bc66-87b484c2cbfd))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 0fbec070-b655-4b05-9502-a66df7faa93b)
(at 177.62 68.58 180)
(descr "C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf")
(tags "C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor")
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/ea305e96-5cca-4dbd-8d77-9fbf5768a669")
(attr through_hole)
(fp_text reference "C311" (at 11.25 -7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 22087591-14a0-4e5d-a5a3-5ef9d408710b)
)
(fp_text value "22u" (at 11.25 7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da043f64-f524-4007-91a8-5509ab22c4a6)
)
(fp_text user "${REFERENCE}" (at 11.25 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 842989d7-8131-4ed4-b9a1-7b54ea249ef8)
)
(fp_line (start -2.12 5.87) (end 24.62 5.87) (layer "F.SilkS") (width 0.12) (tstamp 43db4849-5700-4a10-9d15-f8d5ad30f19c))
(fp_line (start -2.12 -5.87) (end -2.12 5.87) (layer "F.SilkS") (width 0.12) (tstamp 75b2d712-7433-4e04-881c-25c86c47e5c3))
(fp_line (start 24.62 -5.87) (end 24.62 5.87) (layer "F.SilkS") (width 0.12) (tstamp c756129b-37ea-4c42-ac75-6b1e91f4045e))
(fp_line (start -2.12 -5.87) (end 24.62 -5.87) (layer "F.SilkS") (width 0.12) (tstamp f0337dbd-1b5b-4f5a-a2e1-0ff5b5c917e9))
(fp_line (start -2.25 6) (end 24.75 6) (layer "F.CrtYd") (width 0.05) (tstamp 00053c1d-927e-4f5f-83db-3f6d22f7dbdf))
(fp_line (start 24.75 6) (end 24.75 -6) (layer "F.CrtYd") (width 0.05) (tstamp 83050d32-242a-45a1-b4e0-1842ba80a263))
(fp_line (start -2.25 -6) (end -2.25 6) (layer "F.CrtYd") (width 0.05) (tstamp 85ad49c0-19be-4c26-852f-3c25f0af69bc))
(fp_line (start 24.75 -6) (end -2.25 -6) (layer "F.CrtYd") (width 0.05) (tstamp 8dbb98a0-1472-45c0-98ed-227385db90e8))
(fp_line (start 24.5 5.75) (end 24.5 -5.75) (layer "F.Fab") (width 0.1) (tstamp 5b586890-8be6-4f29-931d-6a6064426ded))
(fp_line (start -2 -5.75) (end -2 5.75) (layer "F.Fab") (width 0.1) (tstamp 6cfc54ff-7d39-40d4-9aa0-c13fba8229fc))
(fp_line (start -2 5.75) (end 24.5 5.75) (layer "F.Fab") (width 0.1) (tstamp be52a898-2407-48d1-a053-37b505e28fc1))
(fp_line (start 24.5 -5.75) (end -2 -5.75) (layer "F.Fab") (width 0.1) (tstamp ed571dcc-54f2-4d2a-8025-b52a6c1d11d5))
(pad "1" thru_hole circle (at 0 0 180) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 8 "/V3_DC") (pintype "passive") (tstamp 99d7faf9-4741-42e5-833e-d4e26b4734c3))
(pad "2" thru_hole circle (at 22.5 0 180) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 3 "GNDA") (pintype "passive") (tstamp 82744a47-50f3-448e-ade0-282edf66db98))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4.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")
(tedit 5F68FEEE) (tstamp 1071bf3d-6790-44c9-924c-7e4f6cbfcae2)
(at 97.79 58.42)
(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" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/84a950d5-e829-4928-ab20-016ec88856d5")
(attr smd)
(fp_text reference "R403" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 221af55e-020b-4ba7-b1b9-729aba03f3be)
)
(fp_text value "1R - DNP" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 251e851c-8247-42ad-8a60-661684a8f422)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 5056be5e-6ac5-40da-a1b1-b87c101851f7)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 2f6c48be-586f-4ec1-80a4-bf358f4cd957))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 6d9589c7-ae87-4e55-9031-bbb619deffe2))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 11f31d7e-5efc-4776-afe0-c06912414ef7))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 3dc3e921-68a6-44a0-8664-167cda91706e))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4afd3171-a9c6-4fd7-9bcf-475381b389e1))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp d1138105-0358-48eb-a217-6eb7cb747f6c))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 01a4315a-2902-45db-8613-6073e31cd9c3))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 5c113cb4-2183-4c18-8ef6-e2698b0a2716))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp c2d44b6a-7750-415c-8fd8-34da161e4749))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp f1c856df-e406-4648-bef5-28a1704702a3))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 65 "Net-(R402-Pad2)") (pintype "passive") (tstamp 9fe20ec0-838c-4504-8b75-3541d401994b))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 46 "/Flywhell_Vin_MOS_G") (pintype "passive") (tstamp 7c327781-04ec-4798-bff2-4f32c11cd693))
(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")
(tedit 5F68FEEE) (tstamp 1072b206-4d2f-45f8-8a2e-b33ab0b2584e)
(at 84.455 71.601 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" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/7965c440-9c77-428d-b1a3-c7dfb9ad4db2")
(attr smd)
(fp_text reference "R201" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ae837e7-3f22-4891-af95-9559758df53c)
)
(fp_text value "220" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d9dd1491-911c-4f72-a760-0197fe2de4b1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 91028db7-044f-4623-8721-1acfb0f9924e)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 2c5a4440-bc57-44ee-b0de-21d4c24490a2))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 3b7928e9-cba3-4f1f-aaab-4c8765bb4721))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 344d0335-a589-47a9-a0f9-257e30143e28))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a89695fa-036d-4cb5-9a5a-54b16d3918de))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp cd21b99f-0add-4a89-aa3f-e0639899bab6))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp d60ada8d-6c3a-4d19-8c4e-aa43d7d29ff5))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 1db59510-1fd3-48fe-a5f4-2af51fbac323))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 4905632f-1771-4371-a35e-c04e39eda019))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 832c8b82-54da-4b68-807a-d93aab01df78))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp e06ecfe9-f92a-46a5-8750-6e74590dc035))
(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 16 "Net-(J201-Pad1)") (pintype "passive") (tstamp 7dcfd0ec-e30a-4df3-a99b-a0f1268b297f))
(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 54 "Net-(R201-Pad2)") (pintype "passive") (tstamp 8cb5c4b1-f0f9-41aa-9e8d-dd0e78d5990a))
(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")
(tedit 5F68FEEE) (tstamp 165fbfd8-889c-4c40-bc23-1e16be838630)
(at 186.69 67.31 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" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/5daa8924-b850-4359-b6eb-537c58b89188")
(attr smd)
(fp_text reference "R311" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eba967be-2f2c-4025-b575-76c3c980f234)
)
(fp_text value "220" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9b420f6-3ca1-4451-80e2-a9e19cf46cc5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 39cf854a-8118-4d29-b9ae-c17e43104d71)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 4bfeafc6-130f-4c6a-a33a-148fec45e59b))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 5139c7ae-f79a-4149-ba7c-3f0fd39124ce))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 58342f7b-37d0-4049-a248-d11c52473561))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 669c9bac-3608-4bae-9bd5-4e401f9af8cc))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp ab5f9192-1922-4dcc-8c06-d491d45af863))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp b5792f1c-7642-4837-a6a8-a51061ccd1e7))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 172d4214-13da-41ce-b5cb-84f98512b5ef))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 28490ea8-ed37-4e25-b911-7688d9e62243))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 64e37ffa-d570-4105-8caa-6c7be68ac6d9))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 96b420b7-0318-44e5-b15c-9bd5fca920a4))
(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 20 "Net-(J311-Pad1)") (pintype "passive") (tstamp 59f5c7b1-654f-48f9-aad5-322acd91feda))
(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 60 "Net-(R311-Pad2)") (pintype "passive") (tstamp c005bfb8-4c44-42d1-a5d5-d2d2f39f4dc3))
(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 "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 1c95d8be-8951-4377-ad11-6e3c1d8edaab)
(at 259.08 85.725)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/89e35407-3365-43ce-a4c1-05c4f97db910")
(attr exclude_from_pos_files)
(fp_text reference "TP112" (at 0 -1.648) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3cee5953-c6f3-4f31-8a58-e1ae7c2bc34e)
)
(fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a68db0ca-a3da-44a7-a167-d2cb9eb13fb7)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f868e14-012c-4793-8a8f-e42512945f9a)
)
(fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 26131943-2361-48fc-81b7-f45e93945890))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8aaecbab-352a-4f35-95c4-9aba05039d27))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 2 "/V1_AC") (pinfunction "1") (pintype "passive") (tstamp 71c11d90-1037-4047-aa9c-3a08f5e0442f))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 1ef98861-4856-440b-8491-4b9b5688b75a)
(at 64.765 75.774827 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/f1d061aa-0fdb-40f2-9abf-49392f78b9f4")
(attr through_hole)
(fp_text reference "J101" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2eae89d-9697-4015-97c6-d94556852644)
)
(fp_text value "Vin1_MOS_C" (at 0 4.87 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e2edd74c-8836-4484-af2f-33a1e042f214)
)
(fp_text user "${REFERENCE}" (at 0 1.27 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ba1b927-d878-4cfe-b204-6bbd7ef8656b)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 33024369-4b13-4461-bb61-e6636400fb1b))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 3957c3fd-69bb-44db-bc8d-162a0c20dda5))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 6b52b85d-1f9a-43ed-8a4b-81b6684845ae))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp aff613df-d6a4-4e36-b0a5-2f7e7849531c))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp f4335784-89e2-4144-ae94-8d04aea92efd))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ff07159a-07da-4cc4-99b3-d4ffb33e1d35))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1c412d1e-f553-47c8-b417-d0dad809f186))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 464f5715-4b3f-4541-8705-7bd2fa19c7c2))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp b46f2875-c0e4-41fe-95f6-18a487f8af71))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c4f37d27-84c4-498c-a707-8c64a364d33b))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1e046df8-c9e8-4d95-aaa2-9c6aa6fb73f8))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 2b8d5651-c0e2-449e-ba67-05b87da0cdae))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6b3328f3-70ab-49d0-b7b0-8736998f5bc8))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp a02342a2-4ad9-4d12-a6ca-b0c7ecdf3bf3))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp c90d9206-46f3-4395-8ead-0de12e7986c3))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "Net-(J101-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 07d7ce57-10aa-4301-9a6d-6123e3710117))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(J101-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 1d9a8e5d-8753-406c-9bc6-3c66be8369b3))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SIMO_PCB_Lib:IPA083N10N5" (layer "F.Cu")
(tedit 0) (tstamp 1fe993a2-43ab-406e-ab30-d8daeed721bd)
(at 250.19 51.809395)
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/f1383f10-b4ec-4b05-9a15-7cc31f141126")
(attr through_hole)
(fp_text reference "Q112" (at -8.89 -1.239395 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 399d69af-7952-4cfe-bda9-a3bc7ef1390e)
)
(fp_text value "IPA083N10N5" (at -8.89 0.260605 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8440338c-b526-4792-837d-d9b169bd85a2)
)
(fp_text user "${REFERENCE}" (at -8.89 1.760605 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 726d62f5-b2bb-4ceb-9ea6-8524e3fa1469)
)
(fp_rect (start -1.27 0) (end 6.35 2.54) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 63cef36e-95ca-44e2-aff0-556fc1a227ec))
(fp_rect (start -1.27 0) (end 6.35 -0.381) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 6aeb7018-7a38-426d-b28a-e3ae6d35724d))
(fp_circle (center 0 3.429) (end 0.35921 3.429) (layer "F.SilkS") (width 0.12) (fill solid) (tstamp a91ec4f4-4174-44b3-afac-bdbfefd59ab3))
(fp_rect (start -1.524 -0.762) (end 6.604 2.794) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ac0f29b3-7e51-48a1-9def-85b3cfa44dce))
(pad "1" thru_hole rect (at 0 1.27) (size 1.524 1.524) (drill 0.85) (layers *.Cu *.Mask)
(net 41 "/V1MOS_G") (pinfunction "G") (pintype "input") (tstamp 014c3d71-913a-4b32-8bd3-a4d7e3a026fb))
(pad "2" thru_hole circle (at 2.54 1.27) (size 1.524 1.524) (drill 0.85) (layers *.Cu *.Mask)
(net 2 "/V1_AC") (pinfunction "D") (pintype "passive") (tstamp bf1994a5-dc82-4665-9e9c-851483da7d4d))
(pad "3" thru_hole circle (at 5.08 1.27) (size 1.524 1.524) (drill 0.85) (layers *.Cu *.Mask)
(net 29 "/V1MOS_S") (pinfunction "S") (pintype "passive") (tstamp 2acf5d2c-7ae5-4ca7-9b94-089571129225))
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 229372ba-c97c-40f9-b88b-642853f30560)
(at 141.605 59.6425 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" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/d349f2c4-3017-49e0-901c-db27c5b4977a")
(attr smd)
(fp_text reference "R502" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d915005e-5b2a-4d4f-b36d-4d20010960e4)
)
(fp_text value "1R - DNP" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94694121-b996-4fa0-ab85-fedcc8a18545)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 6b067261-ddf6-477f-913a-3678b201b642)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 02183b3e-774c-49f2-8594-5353b6e6ebf0))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 629a7f49-b35d-4d10-ac3a-11223ae7208c))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp c1815e6f-43be-49f9-8666-5f59983d7953))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp cb12a501-34d5-4bdd-b127-f9f86f04c822))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp e783b048-a7c7-4804-a1bc-094137a95478))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp fc96dd35-c77a-46bc-bc41-1e4f01527189))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 1c66d1bd-a125-4059-b5bb-c6e2c01a3044))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 332cf03f-b15b-4c76-979e-8038de8d9d68))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 60815274-5e38-4958-9e0e-a33cba920984))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 9740f6f9-1b6c-43d3-b637-e63743730f36))
(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 67 "Net-(R502-Pad1)") (pintype "passive") (tstamp 3fcb2c1d-590f-413f-a51c-f0696072b784))
(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 68 "Net-(R502-Pad2)") (pintype "passive") (tstamp d7877d95-b0df-410a-b16c-1bc84e38168c))
(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 "SIMO_PCB_Lib:IPA083N10N5" (layer "F.Cu")
(tedit 0) (tstamp 25c792b0-00a2-47c5-8933-40d593b972c8)
(at 146.05 41.91)
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/0cb7c528-e265-4d9c-81f4-60ef10671e9c")
(attr through_hole)
(fp_text reference "Q501" (at 8.89 1.27 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f12f02f-482f-4a24-b977-dab1afa0bf39)
)
(fp_text value "IPA083N10N5" (at 11.43 1.276605 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5028d02e-62c1-4f3e-ab80-320711337364)
)
(fp_text user "${REFERENCE}" (at 11.43 2.776605 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef300e4d-f5f0-4717-9e5c-8d645d402be1)
)
(fp_rect (start -1.27 0) (end 6.35 2.54) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 2d3cde14-e535-4596-b648-b4c6c39f09f0))
(fp_rect (start -1.27 0) (end 6.35 -0.381) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 4aa0070e-ddb7-4d8c-9ac4-77a0ae040f62))
(fp_circle (center 0 3.429) (end 0.35921 3.429) (layer "F.SilkS") (width 0.12) (fill solid) (tstamp 21bb0c89-f5cc-4d8a-ab61-55ac90b08928))
(fp_rect (start -1.524 -0.762) (end 6.604 2.794) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp cc293d5b-f1bb-4dff-be63-46e4e30158e8))
(pad "1" thru_hole rect (at 0 1.27) (size 1.524 1.524) (drill 0.85) (layers *.Cu *.Mask)
(net 47 "/Flywhell_Vout_MOS_G") (pinfunction "G") (pintype "input") (tstamp ffd1bea7-4a73-43f0-9253-c54cf8a8e2b9))
(pad "2" thru_hole circle (at 2.54 1.27) (size 1.524 1.524) (drill 0.85) (layers *.Cu *.Mask)
(net 83 "Net-(Q111-Pad2)") (pinfunction "D") (pintype "passive") (tstamp 61f73844-1386-40c1-8b37-0015088578bb))
(pad "3" thru_hole circle (at 5.08 1.27) (size 1.524 1.524) (drill 0.85) (layers *.Cu *.Mask)
(net 38 "/Flywhell_Vout_MOS_S") (pinfunction "S") (pintype "passive") (tstamp 21b31ae5-8586-4b4e-9449-88b64c446dff))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 2745df6b-c809-4cc9-a2fd-1747af6db4bb)
(at 245.11 46.99)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/5c05a6d2-2001-4fe4-ab46-ad9a854d7325")
(attr exclude_from_pos_files)
(fp_text reference "TP111" (at 0 -1.648) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 513f52ae-9f09-47a1-9f62-06a9251502ab)
)
(fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6307302d-998e-4a90-b9e5-13b1114ddd84)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5667416-be3e-42a5-bce9-17ce596c329a)
)
(fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 34dd1c7c-cf9b-4b14-8593-d3be90e075b7))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp cbef1aaf-cea1-4668-872c-1666aa441ed2))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 41 "/V1MOS_G") (pinfunction "1") (pintype "passive") (tstamp 3de4ff1c-314e-4d37-906d-5cccf69f0997))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 2db589e2-8fe1-49cf-9cbb-c5cdbb54ed62)
(at 221.615 90.17)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/82e478d0-4133-4361-ad82-87a12ecad191")
(attr exclude_from_pos_files)
(fp_text reference "TP212" (at 0 -1.648) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2ab54a5-7965-4992-8aa4-722be18a0bd4)
)
(fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 534299f5-ac8f-4360-953a-1093fca8b161)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8023c90-a594-4231-97ed-a7ea7f0bb6f7)
)
(fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 23ad11d6-f5e4-4747-bade-178a240f0cb1))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 43d23d0d-8541-4356-ae8f-e95f82faee4d))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 6 "/V2_AC") (pinfunction "1") (pintype "passive") (tstamp f45f7713-4447-4d1d-96b6-b0ab857eac3f))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 2f4238e2-c7b7-44fe-b944-7bbd050ddfd1)
(at 142.24 50.8)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/3a2384b4-5f4b-4c59-b851-f0a6192b2212")
(attr exclude_from_pos_files)
(fp_text reference "TP501" (at 0 -1.648) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c45a4cad-73a7-4ea1-a697-2b72cea84d44)
)
(fp_text value "TestPoint" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1efef875-35d0-40a6-82c7-4352f493bbd7)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6311af0b-6421-4aa4-b563-65db4aba6f57)
)
(fp_circle (center 0 0) (end 0 0.95) (layer "F.SilkS") (width 0.12) (fill none) (tstamp b1c891b1-8f58-470d-a8dc-423054b85137))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 28005d00-a7ee-4da3-ac14-704958aeb8da))
(pad "1" smd circle (at 0 0) (size 1.5 1.5) (layers "F.Cu" "F.Mask")
(net 47 "/Flywhell_Vout_MOS_G") (pinfunction "1") (pintype "passive") (tstamp b20e28cf-dd02-42de-b896-ad6ad31a3eba))
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 321fb06d-a884-4b49-a2db-0222012008b8)
(at 81.645 58.15 180)
(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" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/d72df142-62b1-41ae-8058-d2f95390fdb0")
(attr smd)
(fp_text reference "R202" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5b51abf8-9f51-4356-a063-a34d02d3606b)
)
(fp_text value "1R - DNP" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6853b1cb-c42e-4fb9-8db5-85725db859e4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 72a3999e-5cbb-4eff-80fb-d1508aeabba6)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp b1f36c00-d27f-47a2-8637-aabb0746af1e))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp f81cff58-4728-4849-8747-56cbcbccfeb7))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 210bece6-4f0f-4d20-8911-95041103be0c))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 56950361-c050-41af-9af2-7dcb189c44b7))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 65c59cef-2269-431d-af2b-f9911b5c391a))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 877eb5e5-cadd-4115-87d9-0d39c392105c))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 6a87f2f8-aff1-45a5-b14c-ae61a6968792))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp b9c516eb-4cd3-4619-a2d3-9235de6bd3f0))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp f1885bad-315d-4070-8b29-37c926ab8e37))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp f7c0cecc-97a5-4532-a0eb-6c3cda647e19))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 55 "Net-(R202-Pad1)") (pintype "passive") (tstamp 341e271e-2e69-4eec-bb3f-c90b2d4bd63b))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 56 "Net-(R202-Pad2)") (pintype "passive") (tstamp 94aaaff0-2641-46c8-b2d0-ec8430442ff3))
(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")
(tedit 5F68FEEE) (tstamp 33a9a557-9f11-478c-b264-f8f5666e0ba4)
(at 226.06 66.04 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" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/a39ff91d-51ef-42df-b669-4788bc359683")
(attr smd)
(fp_text reference "R211" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43d808db-768f-4763-86e0-69bfb811972a)
)
(fp_text value "220" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11d6a09a-8ca5-4180-90f4-00a4a317ab02)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c85303ba-7649-45e1-993a-f40daad4dbe5)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp b658d55b-8d09-431c-aa50-b55617a69fd1))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp e8fa5b36-290a-43af-bfed-907585700e2f))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0792f60c-aab4-4977-913b-93081f9aff6f))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 74d0d483-14cf-4df4-aa98-68b372705e84))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 91bcef80-136b-473e-b164-291183ecec68))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp ecb0a146-0409-4f54-b738-3698e5922fa8))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 86b5f14c-c7bd-4278-a606-a64c8c7ee7c7))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 94492b2b-e455-4c39-9370-cbce323f0c00))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp b4e6bcec-7fe1-418a-afb6-5e451cb46256))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp eae1813e-4214-43d1-96d5-a791e4a4e113))
(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 18 "Net-(J211-Pad1)") (pintype "passive") (tstamp 386170a2-eacc-413a-bb89-7843d709f41b))
(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 57 "Net-(R211-Pad2)") (pintype "passive") (tstamp a0d6e13c-bc12-48cc-8d55-b61ef26c5ebf))
(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")
(tedit 5F68FEEF) (tstamp 348bb8f0-243f-4add-ac5a-7e2a56647064)
(at 90.17 90.651)
(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" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/eb10157f-eca0-4942-88a4-a8ca296a624a")
(attr smd)
(fp_text reference "C202" (at 0 3.329) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72fad75e-e363-4c43-a2cd-6769bf400dda)
)
(fp_text value "100n" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5bdcf5f2-9de6-425f-affc-9e59bacc2918)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c2dad6da-c725-41e1-845a-c3a48924096e)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 5da073c3-4799-4034-88ec-6d3054e3614a))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp afc4058f-31ab-4b73-8644-fb30176c1bef))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 1187e469-aece-4ebc-a76d-8f6cd1bf1ade))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 21df65a2-a68f-4ab5-8cf6-b5681c9d3caf))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 28c48512-5fbc-453b-b7fb-3e3df026f928))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp bee1cbaf-61b4-40a3-9cb7-0b87a9f3c771))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 1bb9552e-225d-471d-802c-d688f0662a84))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 2b9d9083-84b7-42fa-aec3-167232c6f58a))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp e5914d3e-f923-4b6e-beb4-2a2606372801))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp f5944717-de7d-4e4d-8bf6-1369ff42da24))
(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 1 "+12V") (pintype "passive") (tstamp a96b6644-b6e8-46f0-8557-e541d115c327))
(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 3 "GNDA") (pintype "passive") (tstamp 384932fe-007f-41ce-94f1-750d6a65150d))
(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 "SIMO_PCB_Lib:IPA083N10N5" (layer "F.Cu")
(tedit 0) (tstamp 350e3d59-05ae-441e-bfb7-f18c5cd4cdb0)
(at 101.6 55.88)
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/b7378ef6-94aa-409a-91cb-512ceb7937e2")
(attr through_hole)
(fp_text reference "Q402" (at 8.89 0.635 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a944057-aaa3-4356-8c60-5f79a5e61c97)
)
(fp_text value "IPA083N10N5" (at 0 -2.818 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f1962a3-3bd2-4977-b7e4-be9f16fa8c1b)
)
(fp_text user "${REFERENCE}" (at 0 -1.318 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b6434b2-238c-4ef8-b0ee-9bbc87d23804)
)
(fp_rect (start -1.27 0) (end 6.35 2.54) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 26c2b8ca-4ce8-4566-9b3e-bef331806552))
(fp_rect (start -1.27 0) (end 6.35 -0.381) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 426c1ee8-7879-429b-afc8-7c04c8ceb1e2))
(fp_circle (center 0 3.429) (end 0.35921 3.429) (layer "F.SilkS") (width 0.12) (fill solid) (tstamp 35682583-2ecd-479c-bbf7-4363e77a4923))
(fp_rect (start -1.524 -0.762) (end 6.604 2.794) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 68326dff-c2f7-4f4e-a06a-8acf262cf234))
(pad "1" thru_hole rect (at 0 1.27) (size 1.524 1.524) (drill 0.85) (layers *.Cu *.Mask)
(net 46 "/Flywhell_Vin_MOS_G") (pinfunction "G") (pintype "input") (tstamp a4fcec86-89be-41b2-8c08-c93493d0ac0b))
(pad "2" thru_hole circle (at 2.54 1.27) (size 1.524 1.524) (drill 0.85) (layers *.Cu *.Mask)
(net 3 "GNDA") (pinfunction "D") (pintype "passive") (tstamp e6fe1e8c-c5e1-4a80-ab3c-0a3cc6423e8d))
(pad "3" thru_hole circle (at 5.08 1.27) (size 1.524 1.524) (drill 0.85) (layers *.Cu *.Mask)
(net 36 "/Flywhell_Vin_MOS_S") (pinfunction "S") (pintype "passive") (tstamp 723be812-568b-4a81-ad60-e841aeefac74))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x01_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A434) (tstamp 36673a1d-d30d-4553-b386-0507fcfbbf9e)
(at 135.255 34.29)
(descr "Through hole straight socket strip, 1x01, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x01 2.54mm single row")
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/bdbe4ae7-2607-433f-bff0-a7734cb9ff6e")
(attr through_hole)
(fp_text reference "TP602" (at 0 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0ab62b4-2a71-45a0-b67a-c2cb70c45e1f)
)
(fp_text value "TestPoint" (at 0 2.77) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ca2c8c1-a64e-4230-bd2e-e05cf4c04859)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06147ca2-d415-449c-9fd6-4f0e44bb1efe)
)
(fp_line (start 1.33 1.21) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 4ac80dbb-3821-407b-98ed-aa176efff49b))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 5bbe245e-81c0-42fc-800a-3ed4535689fc))
(fp_line (start -1.33 1.33) (end 1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp 7232d437-7f6b-4ecd-a363-dcfe35b5e0f4))
(fp_line (start -1.33 1.21) (end -1.33 1.33) (layer "F.SilkS") (width 0.12) (tstamp ca68ea95-a24c-45b6-9ef3-e8be2057ac05))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d7cb769e-0930-4ed3-9687-0b59da190804))
(fp_line (start 1.75 -1.8) (end 1.75 1.75) (layer "F.CrtYd") (width 0.05) (tstamp 01fb5059-76c1-4a60-935f-e5a0aad750e4))
(fp_line (start -1.8 1.75) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 366a63ff-3f6c-4f22-b51d-2bf69d3ecfcb))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp b3728bad-5b9c-4aab-a726-f6f600bbd5c1))
(fp_line (start 1.75 1.75) (end -1.8 1.75) (layer "F.CrtYd") (width 0.05) (tstamp d0f18c8d-93b7-40ca-aa5e-85ea491feed4))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 092adf36-5b91-4666-969d-0d2f24c971b5))
(fp_line (start -1.27 1.27) (end -1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2327c6f2-81e0-469a-b528-5a3e4655f03c))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp 65e05000-f2da-4a3c-9e93-40b606746b2e))
(fp_line (start 1.27 -0.635) (end 1.27 1.27) (layer "F.Fab") (width 0.1) (tstamp 74153dd4-71e6-4db1-ada1-d51dc2b247be))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp bca85d05-d3ad-495d-acfc-bf9ccfa1ecc3))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 42 "/L_V-") (pinfunction "1") (pintype "passive") (tstamp 7ae81220-e3e5-4946-8ada-67d55cb99b38))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x01_P2.54mm_Vertical.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")
(tedit 5F68FEEE) (tstamp 37b0cd5e-0e90-4639-aa87-c40f9561adb5)
(at 184.42 48.26 180)
(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" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/5d695af2-83f8-4795-9310-c71bb41d5cc1")
(attr smd)
(fp_text reference "R313" (at 0.27 1.905) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6eeaa4b7-1410-4c65-be5f-ceb03ea053c4)
)
(fp_text value "1R - DNP" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 239d098e-c1b2-4dc1-834b-bb41a437494b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ea790c21-1d30-4461-a255-97521abea8fc)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp ec10c778-8833-47af-871c-e1b0ca099551))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp f0d6c952-e1a4-4091-9d42-e03576de0cfe))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 09400143-2a30-4f7b-8a26-e3a6026952fd))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 62c14327-161a-49c5-9852-75f3b1b59442))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6c34e848-3a64-41c6-ba01-2c08dd46dbe9))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 95f771af-694c-44c9-bece-c76f47e21a1a))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 3ba7d3dc-51c9-4d59-931a-2b9f250e3d85))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 7c0fc232-419b-4fbe-821b-8258d5d9711f))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp bfd5ab95-d8e7-4099-b886-510ae9d4724b))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp f6416df0-b393-442c-9fe9-c0270edf5f19))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 62 "Net-(R312-Pad2)") (pintype "passive") (tstamp 41915ddd-d262-43f1-8fb1-f9cd39b2e13a))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2083333333)
(net 45 "/V3MOS_G") (pintype "passive") (tstamp 099fd5e5-ea45-416b-9985-1c5a700eb1d6))
(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 "TerminalBlock_MetzConnect:TerminalBlock_MetzConnect_Type073_RT02602HBLU_1x02_P5.08mm_Horizontal" (layer "F.Cu")
(tedit 5B294EA2) (tstamp 38c48081-c679-4652-970f-d263078fbc31)
(at 81.915 43.225)
(descr "terminal block Metz Connect Type073_RT02602HBLU, 2 pins, pitch 5.08mm, size 10.2x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310731_RT026xxHBLU_OFF-022792U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect")
(tags "THT terminal block Metz Connect Type073_RT02602HBLU pitch 5.08mm size 10.2x11mm^2 drill 1.4mm pad 2.6mm")
(property "Sheetfile" "SIMO_Non_inverted_Buck_Boost.kicad_sch")
(property "Sheetname" "")
(path "/07f7ea04-1b11-4a78-b4f4-d7ee9db0f131")
(attr through_hole)
(fp_text reference "J2" (at 2.54 6.94) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c00b12c-f85e-48bb-aac4-2a06fa1cc240)
)
(fp_text value "Vin2" (at 2.54 6.56) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf25a6b9-1bad-45e1-908e-78492530a4e7)
)
(fp_text user "${REFERENCE}" (at 2.54 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))