-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmbus.kicad_pcb
5691 lines (5645 loc) · 258 KB
/
mbus.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" power)
(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") (color "Black"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "White") (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 "White") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "Black"))
(copper_finish "HAL lead-free")
(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 3)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "manufacturing/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/CH340_V3")
(net 3 "+34V")
(net 4 "/USB_D+")
(net 5 "/USB_D-")
(net 6 "/-")
(net 7 "/+")
(net 8 "VBUS")
(net 9 "/USB_FUSE")
(net 10 "Net-(Q1-Pad1)")
(net 11 "Net-(Q1-Pad3)")
(net 12 "Net-(Q2-Pad1)")
(net 13 "Net-(Q2-Pad3)")
(net 14 "/BOOST_OUT")
(net 15 "/USB_CONN_D+")
(net 16 "/USB_CONN_D-")
(net 17 "unconnected-(J1-PadA8)")
(net 18 "/USB_CC2")
(net 19 "unconnected-(J1-PadB8)")
(net 20 "/BOOST_FB")
(net 21 "/UART_TX")
(net 22 "/UART_RX")
(net 23 "unconnected-(U3-Pad4)")
(net 24 "unconnected-(U3-Pad5)")
(net 25 "unconnected-(U3-Pad6)")
(net 26 "/USB_CC1")
(net 27 "unconnected-(J1-PadS1)")
(footprint "MountingHole:MountingHole_2.2mm_M2" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 0447d0ed-2bca-47ad-9485-0d961180d781)
(at 45.78 69.02)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/b3d7c665-d952-450e-9e30-ce60507693f4")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa6a7ee8-bd0b-4726-91a3-4faa7c7b558b)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37aa1de0-a894-4ff8-9313-494c7f566e03)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ecc3e8d-5822-438f-a238-e4c46724c72f)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 411c98e4-0e86-433c-a6ad-e33cb6a1ebe6))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp df4ceb71-9d41-4473-af02-b80691252886))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask) (tstamp d73d1376-a1d8-459d-8fb7-94dfc30cd45c))
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 0b81851f-0601-4301-9cfb-995dc618987b)
(at 80.675 76.0375 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 "LCSC Part" "C82369")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/e40038aa-5775-43b1-937a-f22e94c1fb91")
(attr smd)
(fp_text reference "Q3" (at 2.65 -0.025) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38d7bab2-743d-4893-a149-24e5dad01db6)
)
(fp_text value "BC807" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 035099f1-c57f-429d-9a8f-5f1a4ed887fb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp 2a25bfca-b161-40c1-9707-f8602367cb0a)
)
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 4ea7c3ef-daf7-41ac-b343-d6cb83294331))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 7f7cee6a-7195-4ca1-b0af-b02c3887e91f))
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 9418dbcc-2398-438b-a5e0-235d3bed934e))
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp eec90c44-9954-4de4-8556-f4cb30772d6a))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 29d4a5ba-e8d6-4e1b-9390-901b6f64301c))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 30054bf6-e5ad-467b-814c-527c3741b61e))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 67060ee9-0da3-47b2-996a-faf70ab9a3f6))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp acc30a2b-a69f-472c-9bf1-45108a7cda82))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 33704369-0473-40ad-8a88-3e0d73054e0e))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 9f6f47a7-50b2-4345-9d5a-b33d08c4a538))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp b7061746-68f1-4fd8-b72f-1edc4b34ddea))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp d6c13c66-bb74-4e86-b763-d30868b92ed0))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp ebe5a6f6-f809-4b2d-bf03-ff96178e1149))
(pad "1" smd roundrect (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(Q1-Pad3)") (pinfunction "B") (pintype "input") (tstamp 44e751c9-c1c8-412a-9a5c-400f606b921d))
(pad "2" smd roundrect (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/-") (pinfunction "E") (pintype "passive") (tstamp 59f9d503-f0b6-47b3-b675-84c756e79aed))
(pad "3" smd roundrect (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(Q2-Pad1)") (pinfunction "C") (pintype "passive") (tstamp a8a1002c-b133-45b2-b98d-b253a5320d0d))
(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 "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tedit 5F6F9B37) (tstamp 12fc1ae4-3f6b-4700-9ff2-3f6a395c35ba)
(at 60.425 85.2 180)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC Part" "C151334")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/9a857bb3-458d-4ebf-b736-27620f2ba818")
(attr smd)
(fp_text reference "U1" (at -3.075 -1.1 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c1125ac-ed3d-40ad-93f3-bba518b60d74)
)
(fp_text value "AP3015" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a34b4d8c-c7f2-4a2c-9e07-f98d83d576f0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ffd14834-2b79-4793-b6a7-cf98fa5ae3fc)
)
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 684dee07-4a34-4a44-9602-5dd2e38404c6))
(fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 7fa8d415-b461-4cee-a540-c4ed7555eaf1))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp bf2c3654-7559-4d29-8fb3-a35f3b6b927b))
(fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp deb79c54-bdf6-40d0-8e43-a9c1e0e5de20))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 346b470c-a03d-4ee6-ac4d-6be1163c3994))
(fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 667b22b8-0a24-4f01-98cd-9a454d7f6b37))
(fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp b1d4c709-7d8c-49aa-98e0-609887198b75))
(fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp c32f7d02-284c-4b97-a873-21b1937a978e))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp 05e5a314-364c-41db-8c8d-2ff0f655e5f7))
(fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 49e96dac-9f28-46ad-8b8c-f17561a3a0e1))
(fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp 538f6281-5d51-4421-9b18-2e7ddf38771b))
(fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 7c6eea31-fc52-4d57-b4b9-b4e12be7205a))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp a8015dd5-d666-41a4-98aa-c0e33909e2e2))
(pad "1" smd roundrect (at -1.1375 -0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/BOOST_OUT") (pinfunction "SW") (pintype "passive") (tstamp d7c9b678-7911-4314-a624-fdbb36f648a8))
(pad "2" smd roundrect (at -1.1375 0 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c2e7b9dd-a9c2-439f-b387-1e722f2be34f))
(pad "3" smd roundrect (at -1.1375 0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/BOOST_FB") (pinfunction "FB") (pintype "input") (tstamp 12eaffc5-fc9b-4d19-8b6e-dd75742d1c15))
(pad "4" smd roundrect (at 1.1375 0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VBUS") (pinfunction "~{SHDN}") (pintype "input") (tstamp 11469345-460c-4b04-9940-91fd2724f4c7))
(pad "5" smd roundrect (at 1.1375 -0.95 180) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VBUS") (pinfunction "IN") (pintype "power_in") (tstamp 979efad7-ea64-448b-8417-2682300501fe))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.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 1d4b8af4-3493-4545-b9a3-07366b3f4863)
(at 65.7 74.9 90)
(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 "LCSC Part" "C14663")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/65298d15-1d4a-4023-850b-6a40ad9ba02a")
(attr smd)
(fp_text reference "C6" (at 0.275 -1.75 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a756062-4e0c-4114-bc6d-4d6635f2d703)
)
(fp_text value "0.1u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 758f4e53-9507-488a-960b-2e8e487b7ac8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3f0c3fb9-57f0-4439-b2df-3c934842d7db)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp de91796c-56de-4405-8fcc-748bd6a08e86))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp f76f4233-905d-4cb5-a153-eed7fe8e458e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1f70d207-e63d-4692-be1f-5b6fa8599d57))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d7de2887-c7b2-4bb7-a339-632f4f906224))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ea3cd08e-2d6a-4ba3-9c39-87a3d44d2015))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f69de914-d2d4-4fcf-a7d6-ce76fea2e1a7))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 65d0582b-c8a1-45a8-a0e9-e797f01caa63))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 6e24aa9b-c7e6-40f2-905b-b9c541e0e2f6))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 88f2670e-1113-4ed9-b644-cfdac6e8b249))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e978c208-72f4-4c78-b109-bcb5e56d4024))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/CH340_V3") (pintype "passive") (tstamp 58e02161-61cc-4d0f-bdc8-c497a25ae380))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 7da78911-dd6f-4bbd-9a74-8a3476ec1fb5))
(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 "Package_TO_SOT_SMD:SOT-23-6" (layer "F.Cu")
(tedit 5F6F9B37) (tstamp 1dcc097b-2d59-4290-bec0-d43917b32806)
(at 55 76.5)
(descr "SOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "LCSC Part" "C2827654")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/bafebaed-0135-4b43-ab4e-edd3f4a614ff")
(attr smd)
(fp_text reference "U2" (at 1.825 -2.425) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19761492-62eb-4ea3-884c-8facf0ba3042)
)
(fp_text value "USBLC6-2SC6" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6db6629d-cfdc-4345-82f6-4688dae498b0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e5a10f39-e4c5-40be-9cc2-7679166315fe)
)
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 0ef75dfd-5f39-48cb-8acc-e0b7dcfb9b3c))
(fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 72f946d0-1e49-49fd-92cb-b5f25e429ffa))
(fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp b00d3b1e-1bfe-40cc-af47-b01fb18f5bdb))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp f85fc71f-d6a7-42df-9357-feb088ea0844))
(fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 9c62cee8-92e1-4d8c-ae39-608e89b46f51))
(fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp c4341add-cd9b-4cb5-b7c9-44f97b8f1899))
(fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp c97dd8c7-e959-42b4-a051-507cf6b54fb9))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp dab160f9-ae30-44e4-8239-3e87b3a84715))
(fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 8557c1bb-10d1-4c8d-b814-0bd3acbb6ae9))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp 8e31fd6a-f44b-4db1-a4ea-24892240e36e))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp d7330338-c0d5-4a64-b93d-2554a72179c2))
(fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp e6d03eaa-0515-4e2e-92e1-471af9e7ac83))
(fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp f1702a20-9c5a-48b7-9be6-2a98dafa3d53))
(pad "1" smd roundrect (at -1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/USB_CONN_D+") (pinfunction "I/O1") (pintype "passive") (tstamp 71563fde-9d16-4742-8a5b-f000a436d239))
(pad "2" smd roundrect (at -1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 5d200cfb-7bcf-4320-9cad-9eb377b5787c))
(pad "3" smd roundrect (at -1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/USB_CONN_D-") (pinfunction "I/O2") (pintype "passive") (tstamp 15d33ba9-67a6-4431-8cba-40cb1f099b0e))
(pad "4" smd roundrect (at 1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/USB_D-") (pinfunction "I/O2") (pintype "passive") (tstamp a6a4eea9-f75e-4f3a-bb3d-08d711b31662))
(pad "5" smd roundrect (at 1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 3c53ba54-f6a7-4939-8a51-97b70f82972d))
(pad "6" smd roundrect (at 1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/USB_D+") (pinfunction "I/O1") (pintype "passive") (tstamp df66ab10-6441-4ec7-9c67-c4393ec260f4))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.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 208bc914-d78f-4993-91c7-ca143a919f9b)
(at 76.975 74.85 180)
(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 "LCSC Part" "C445805")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/f1ece10d-1b17-4cd3-89ab-1710f2ec1fc7")
(attr smd)
(fp_text reference "R12" (at 0 1.475) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 210d8dbc-db22-4852-8381-7acf38c5bc8e)
)
(fp_text value "82" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 297279d6-d05f-483a-be87-fdfd7cd8994f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d89c0c33-dd13-452e-9127-6b1769532434)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7bbc0029-73f8-4489-bf2d-0b53ca6b852a))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp fae3032e-a8a4-4e52-95b2-4eeefe69ef99))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 12d8f9b7-8804-4c98-a9ef-a92d5dc963e4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 256adfd0-10fb-4001-ba53-34b908fca4ce))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 27d9761c-f3c8-4151-a57f-d29cb9d2407f))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f06a6d12-e339-412a-be24-557c326818c0))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 292517ba-8e9e-4000-8976-d5bd780955b6))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5e268d0e-890c-4633-bf69-a573d38de338))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7fddbb95-0671-4dcc-87c9-31f35b31fb43))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c0af3d21-2ee5-426f-9ffd-762fccf06494))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(Q2-Pad1)") (pintype "passive") (tstamp 43cd34eb-8147-4b4d-8f5f-1b40310c92b7))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6399f4c9-c7be-4a6d-a012-e0bb4d2b0b45))
(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 "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 28aaaeae-72f4-43f7-8dcf-e064b1a71b4b)
(at 73.075 80.75 180)
(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 "LCSC Part" "C441928")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/9f87ed63-acd5-41c0-ad48-34d498175453")
(attr smd)
(fp_text reference "R8" (at -0.325 -1.45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 439a7764-0ed4-49ce-bf09-6f16fbd5f429)
)
(fp_text value "22k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c3c72fc-68a6-43e2-ae3f-44ebc41d634e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b805b899-f44e-4f16-9483-1ba07aa8c363)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 6e9dbe26-8698-4b7e-9831-90ee2a6a181b))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp b8709d9d-8c9d-4e5f-86c5-f311957ce59d))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 05f7d081-9223-4974-9000-65349f8629a4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7e3034e4-1dc5-40b7-83f6-fa80d55a5e3d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bb111f08-f42a-49e0-8b82-4d1383957724))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp d56c18a1-64ca-4ec9-8ab3-f2ac1be3370f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 221dd52b-64a6-418a-b8b2-cef3b57fb052))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 41d107ff-38a2-44f3-8df3-b804eb8ac2e3))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 6dff6b83-e087-40dc-9d6b-fa7dcf20b5aa))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f1d32b20-31d6-4ffc-baa8-707ac0add229))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(Q1-Pad3)") (pintype "passive") (tstamp 0349e2d4-6227-4207-9651-3c595bf3e15d))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 29d2a845-2f13-4c83-936a-0611b0e32209))
(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 "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2bb5ce24-606d-42cd-b9f0-a763b2401d1c)
(at 52.95 79.85 90)
(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 "LCSC Part" "C105580")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/0f837caf-9bda-4958-9ffa-b69ee7665711")
(attr smd)
(fp_text reference "R1" (at -2.375 0.125 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88a7e34c-57e7-48ce-a358-6866b2c01d90)
)
(fp_text value "5k1" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b878984-ad62-40d5-87be-d30f465ae2b3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ad2d033c-4040-4813-b5da-82cf827f9d86)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 33b48673-c959-4510-b6fa-fd3f7bdb00fd))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp c78d97f4-1d1b-46c3-bcbb-8424944a8978))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1c57f8a5-0a6c-44cd-b514-5b9d5f8cc98b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8e5a3783-142f-42f6-a215-d0f81a05c5c0))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b7013b78-ce5a-47df-9e6f-e993b6073985))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c2d24be9-0a91-4ad8-a6f8-4f606bd871ac))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1354903a-b7d2-4e04-b220-6c6c8f058ef7))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4a56ac62-5ec2-46fc-a86c-9adf2d8fead1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 78d3a4a0-e724-44e1-963f-de88a39d4158))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e0660a46-ff2a-4b28-b311-cf71bc999b82))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 335263d3-7e35-4a9c-83c2-cd71d45f0688))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/USB_CC2") (pintype "passive") (tstamp a17368fb-646b-4ffd-9057-0994609f8a46))
(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 "Inductor_SMD:L_Sunlord_MWSA0518_5.4x5.2mm" (layer "F.Cu")
(tedit 5DB5FB51) (tstamp 2f755b4d-4bf6-431e-b43c-1286f37ca41e)
(at 61.375 90.025)
(descr "Inductor, Sunlord, MWSA0518, 5.4mmx5.2mm")
(tags "inductor Sunlord smd")
(property "LCSC Part" "C408412")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/115a8bbf-72f0-444c-873d-acec8c2fd24b")
(attr smd)
(fp_text reference "L1" (at -4.195 -0.125 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fbbfe344-c4a0-44c3-b0ea-dc613bae6ef5)
)
(fp_text value "10uH" (at 0 4.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dfa794ca-1ee0-4404-8f4e-628566b824bd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e203579-687d-412a-a85a-8f62616e645f)
)
(fp_line (start 2.8 -2.7) (end 2.8 -1.55) (layer "F.SilkS") (width 0.12) (tstamp 13deb219-1dbc-4e61-9c7a-357de7d61dda))
(fp_line (start -2.8 2.7) (end -2.8 1.55) (layer "F.SilkS") (width 0.12) (tstamp 31f07217-f6d0-4a14-b3f7-3402d2d3454b))
(fp_line (start 2.8 2.7) (end 2.8 1.55) (layer "F.SilkS") (width 0.12) (tstamp 5d0c20d3-b764-401f-8eba-c22ee30ed4ee))
(fp_line (start -2.8 -2.7) (end 2.8 -2.7) (layer "F.SilkS") (width 0.12) (tstamp 61490b19-1a3c-4fd2-832e-6c05fe2eb2f0))
(fp_line (start -2.8 -2.7) (end -2.8 -1.55) (layer "F.SilkS") (width 0.12) (tstamp 72f98dce-d364-4f4a-8b48-372f18aec9a9))
(fp_line (start -2.8 2.7) (end 2.8 2.7) (layer "F.SilkS") (width 0.12) (tstamp bd3777e9-5d23-4378-97b9-d0d3c2977b52))
(fp_line (start -3.25 2.85) (end -3.25 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 007ceeaf-6adc-489d-86d9-4ceb8ad79ba3))
(fp_line (start -3.25 -2.85) (end 3.25 -2.85) (layer "F.CrtYd") (width 0.05) (tstamp 31880846-8324-4b1f-b227-370d5797cda6))
(fp_line (start 3.25 2.85) (end -3.25 2.85) (layer "F.CrtYd") (width 0.05) (tstamp 608d69ae-4563-4202-8862-4c31d2c6aa07))
(fp_line (start 3.25 -2.85) (end 3.25 2.85) (layer "F.CrtYd") (width 0.05) (tstamp 62bee8e5-cfc7-48d7-aec3-83392a44e971))
(fp_line (start -2.7 2.6) (end -2.7 -2.6) (layer "F.Fab") (width 0.1) (tstamp 0ae66870-61a8-4071-89bc-4791886dcd39))
(fp_line (start -2.7 -2.6) (end 2.7 -2.6) (layer "F.Fab") (width 0.1) (tstamp 86a09ee4-552b-40ca-8743-41855fde0a2a))
(fp_line (start 2.7 -2.6) (end 2.7 2.6) (layer "F.Fab") (width 0.1) (tstamp f7a325bc-ce84-4121-ac16-91206cbc22a1))
(fp_line (start 2.7 2.6) (end -2.7 2.6) (layer "F.Fab") (width 0.1) (tstamp f913be6d-a461-4ee1-9ba9-2f72e2ee23c4))
(pad "1" smd rect (at -2.05 0) (size 1.9 2.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "VBUS") (pinfunction "1") (pintype "passive") (tstamp aced5d63-7766-4c0c-89e0-c8858180f946))
(pad "2" smd rect (at 2.05 0) (size 1.9 2.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/BOOST_OUT") (pinfunction "2") (pintype "passive") (tstamp fb7e4a85-9f10-46e3-914c-04196ccb5e31))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_Sunlord_MWSA0518.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/3D/IHLP2020BZ.STEP"
(offset (xyz -0.7 6 -2.5))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 30d78a8a-040f-4f3e-aaa0-dac019e1b733)
(at 73.075 79 180)
(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 "LCSC Part" "C441894")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/154f7807-a3df-4439-bf1c-66b1d9d2a0a9")
(attr smd)
(fp_text reference "R10" (at 2.675 -3 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66ae9f71-6157-4c5d-a73c-098667f4227b)
)
(fp_text value "4k7" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1ae81b4-e945-4c98-aae2-7c5c5aca713c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8045307e-8cd4-4281-b289-34e2a1f351f0)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp afa97cc7-19e1-46c3-b3d2-42d6237c8de4))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d09f3f8c-874e-4493-aa59-c6e94111d3d2))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 099c362c-af51-4c2b-bdcf-83e882ab8734))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 42a0dd2f-213e-4ba5-9282-5f1a2486f4da))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5f9a39a2-3789-457c-91c4-665cafe3b515))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c465286d-ca85-48e3-8fd7-1751f852dca5))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7f61998d-e04d-4388-b7dc-a68602295164))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp b9b067ce-38ac-4b8a-b54c-132dbd63e06a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp bf057173-9741-4001-b5ef-8295ad203027))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp c23a006f-46af-4d13-b89e-ff6253c4c7c4))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(Q2-Pad3)") (pintype "passive") (tstamp 4d3052b8-5ff7-40c7-a37d-19ef34e3aef8))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp ebd4451c-4265-4c46-b902-087f9e359f33))
(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 "MountingHole:MountingHole_2.2mm_M2" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 31faba2f-5fb9-40bf-92f6-bf3870517aab)
(at 45.78 91.25)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/638c345f-f3cb-4465-811b-f572fa9d749b")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a4de1a6-ed26-4299-a02c-c65c63e7eccd)
)
(fp_text value "MountingHole" (at 0 3.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fdb89b58-2166-4574-89a2-dad8c17edf7a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 28eeccb7-d654-4720-bbe9-84d66ff41aaa)
)
(fp_circle (center 0 0) (end 2.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 11776fe4-4721-440e-9d16-0f4a13d4e4d5))
(fp_circle (center 0 0) (end 2.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 853367c4-35cb-44c0-8597-ec684eef7667))
(pad "" np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask) (tstamp 853fda3b-a538-4f44-886f-f0c5f7c29185))
)
(footprint "Fuse:Fuse_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 3438dc41-962e-4989-a941-ede9a05290f1)
(at 80.825 81.5)
(descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "fuse")
(property "LCSC Part" "C70065")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/1f89f0dc-6d0b-4177-9518-3c440f6e8bf8")
(attr smd)
(fp_text reference "F2" (at 0.025 1.975) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53aa074b-aae3-49e3-8466-0dbb7474b5c9)
)
(fp_text value "nSMD010" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 757e3c3f-ecb5-4657-b259-bde54b5ed114)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 53ec6b3a-ba07-4f35-8ada-0d81499b12d6)
)
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 1fdef611-b103-43bf-8892-374c177bc926))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp ce10c672-576f-4ed7-b2c8-49a94e67c245))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 41399be4-c28e-4509-b8d0-aac67bb548cb))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 748d0bf1-3310-4d3f-8b4f-eaded085fc35))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 8e171d8d-57e9-4ecb-bfbb-686bd31afb30))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 975374a1-077d-4b8a-a2f1-c003407326b2))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 092bca0e-20b7-4e40-ab3a-5f54fea1d246))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 1524cc07-19a9-4304-be8e-9f58972bc1d1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp ab6ef883-6bd2-44be-8f31-5753441d917a))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp e78183e7-4346-45f4-8213-180851052254))
(pad "1" smd roundrect (at -1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 3 "+34V") (pintype "passive") (tstamp 287f346e-3dbd-4041-838f-2414f3bb14d9))
(pad "2" smd roundrect (at 1.4 0) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 7 "/+") (pintype "passive") (tstamp d28f0480-a44b-45cc-8389-98d350f44fdf))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1206_3216Metric.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 434ebdfa-476a-4309-898f-23ef6dec49e7)
(at 59.975 80.425 180)
(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 "LCSC Part" "C109455")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/dc67a19f-10b5-424b-ae0c-425798cc78d9")
(attr smd)
(fp_text reference "C4" (at 3.075 0.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc93ecb4-fd7b-48b7-868d-89f294f07c27)
)
(fp_text value "10u" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b4eddc61-2cab-493a-b874-62b106cef9f4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b8eb5c02-d344-4431-a592-0e7ad9f9a78f)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 8e981540-9cda-414d-abbb-d34e005f000e))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp e7f989f7-95da-4be3-9e33-743523ae1ee0))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 26edc121-4167-44e5-9aaf-65f4ac255233))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 35e13391-5257-46f3-93a5-87ffd4e862a4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 92ee3d85-c13e-4120-ad64-bd390adf040c))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c96fb61f-984b-4e24-874e-ad2f1e86f9d7))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7f9c0307-e84d-4f8a-93be-34fc4b3feb89))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 8a3381a5-19d1-47f5-85b0-cf20b0f3bb61))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a06bd114-6488-4d22-b31a-c3a8f70a2574))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp db97118a-0872-4a5d-aaa5-b35f9498f22a))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VBUS") (pintype "passive") (tstamp 9c5b8388-0c5b-43a4-a3f4-d7cd72b89084))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 52820a90-7869-43b3-b870-39c015371964))
(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 "Fuse:Fuse_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 49bdaa67-149f-4f2e-8c60-9195ba6be32f)
(at 54.975 73.15 -90)
(descr "Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "fuse")
(property "LCSC Part" "C2760255")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/b42b3d16-0988-4f7b-ad3f-dfc376005ee3")
(attr smd)
(fp_text reference "F1" (at -1.25 -1.625 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e2631437-99d2-41f3-ba09-28f2b097e746)
)
(fp_text value "SMD0603-020" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0007e6f5-ad9a-4848-9892-60b937c244a1)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7431ff9e-72b1-43ae-bc6a-a31b80516d6e)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 80a90ec1-2aa8-4ed8-ad49-eac8c1a98713))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp a7262880-7db7-4327-af28-4ff7a323ea6f))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 54c27061-0469-4ab6-bb4c-048a1ba1c9c9))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6632d75c-5002-438f-9c39-2c0837a9461c))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8cc9ae96-0b56-4dcf-a834-c235f5443d6e))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8e9fa413-942b-4c93-ae63-0c4810c88678))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6336394d-7e46-45c7-b073-13cf1cd71142))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7f3f4807-4744-448d-971c-11cf29b1668e))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a90fe392-ecf6-4078-bb71-4cea6a1b7bf1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp c6d4813c-be0f-4ef2-854c-de499e07b7b9))
(pad "1" smd roundrect (at -0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/USB_FUSE") (pintype "passive") (tstamp 74097e6c-0dc1-43ce-ab88-c08de32f66ac))
(pad "2" smd roundrect (at 0.7875 0 270) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VBUS") (pintype "passive") (tstamp a77f222a-7823-46b1-8e3a-d2a424b8632b))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_0603_1608Metric.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 4bdd2267-4c66-45d7-b968-4d149af8cfb2)
(at 68.075 86.875 90)
(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 "LCSC Part" "C2911377")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/a0439b88-3e45-44e1-8767-8368e6e4cdf0")
(attr smd)
(fp_text reference "C2" (at 1.275 -1.725 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07ee5296-896a-4813-b447-ba592863abc3)
)
(fp_text value "10u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19e03d7e-0f88-402d-984c-a4843a1bc72a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 1e474927-d044-48fb-bc05-52b3fa0eea54)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 4fe40dbe-4397-4641-b015-fdfcdde4dcee))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp aa2e1cb6-42a1-4b92-9de2-3dfa279406a6))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 503c6bff-ffde-4d49-8717-a0634efd564a))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 57ad5d8a-70fb-4d80-a668-cd69f19b8759))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8f19934a-bb2c-4cd6-9b7c-3e9f68ca569b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b0408e4e-98ad-40fc-b7cc-2384a86c2f3f))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9a5a4dc2-b094-428b-acbf-a21497c3a90a))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp bd164860-3257-42d0-af67-269f69a71a6e))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp cc6376db-6798-4c7a-b234-b860fa7819d3))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e16e4294-2e77-4855-bbcc-2f1344efc559))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+34V") (pintype "passive") (tstamp a6a47508-8877-4ab7-828f-fbfd1a8194aa))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 05c11f86-2b28-40b8-980e-cf7608ddca0a))
(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 "Diode_SMD:D_SOD-123F" (layer "F.Cu")
(tedit 587F7769) (tstamp 4eba73c1-22c1-4a07-b602-681475a08395)
(at 66 89.35 -90)
(descr "D_SOD-123F")
(tags "D_SOD-123F")
(property "LCSC Part" "C190475")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/53f103ac-c1aa-46e7-a84b-10b04785fe33")
(attr smd)
(fp_text reference "D1" (at 3.025 -0.025 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2818dda9-e0a8-4f2b-ad6d-5e1d88c0e0a9)
)
(fp_text value "SS14" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68df789b-75eb-4c44-92bb-64cefd789ca7)
)
(fp_text user "${REFERENCE}" (at -0.127 -1.905 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb3e1c72-8175-4c09-8fda-413b03a4d358)
)
(fp_line (start -2.2 -1) (end -2.2 1) (layer "F.SilkS") (width 0.12) (tstamp 6f75e63c-1453-459c-8f70-5a028d2a0923))
(fp_line (start -2.2 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp 7bd182cc-8f9f-493c-9c52-eec5e4b7c1f5))
(fp_line (start -2.2 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp fbbc41da-2fcc-48a6-9a07-0abc4a17b166))
(fp_line (start -2.2 -1.15) (end -2.2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 38668abb-13b0-4d64-9754-1cdf0a1f230f))
(fp_line (start -2.2 -1.15) (end 2.2 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 48311f5e-0e8c-42c4-b39d-9ff005975267))
(fp_line (start 2.2 -1.15) (end 2.2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp ea0b41d2-99cc-47db-852c-750294fed629))
(fp_line (start 2.2 1.15) (end -2.2 1.15) (layer "F.CrtYd") (width 0.05) (tstamp ebce33c4-45be-4c9f-9a90-59cc8502d061))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 032b025e-949e-4927-ac7f-cb13999d76b1))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 1be37da6-19c2-4474-adce-29f02adc6262))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 2af6bdcb-ab70-4d4a-991a-9b8659bae834))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 482cccfa-0f92-4dc3-bfa9-9b7ad612e3ad))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 6876bb00-939a-4e42-abfb-a049fe5d0231))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 7f89682d-1838-422d-b1f3-eeaa3bc004ff))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 90c757b0-ba54-4c7a-a5dd-8c2a152d1a8c))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 9b587166-b4eb-4dd9-b5d8-7c9b1c9ad5a8))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp a7259f25-67a2-44e4-9c1d-e531ba0e33bc))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp e3905afb-f595-419b-bf7d-21c586978025))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp f3caba9a-f88e-44a3-bd8f-904f683312b6))
(pad "1" smd rect (at -1.4 0 270) (size 1.1 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "+34V") (pinfunction "K") (pintype "passive") (tstamp 0300ad45-6dca-4f5d-a764-9d9f4357f09a))
(pad "2" smd rect (at 1.4 0 270) (size 1.1 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/BOOST_OUT") (pinfunction "A") (pintype "passive") (tstamp bbf27c9c-d5fc-41b4-830f-bfc488bff3fc))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123F.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 51ffeb99-a0d1-4332-97e0-7ae46b356fdb)
(at 65.95 78.4 -90)
(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 "LCSC Part" "C445827")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/f772600e-0a79-4334-9a2c-f939adb9f123")
(attr smd)
(fp_text reference "R6" (at 2.15 -0.425 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb7d3ad3-41f3-4de9-a3ae-1dc19ac0e996)
)
(fp_text value "2k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf1346bf-d76c-4d7c-9985-a4e2f6f1ff56)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 075cbf41-5ddf-4590-afce-1803971f043f)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 85152557-41b7-41cb-9451-0573f390a97d))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8973d28e-5f29-49cc-a46b-683358b2473f))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 003039eb-9f19-4ac4-b5d1-05ce280c1965))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0aa81143-5386-4f22-8531-99117ef3be6f))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6221513d-7e3e-420d-89cd-6319c106f0f1))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c26340a4-106e-4fa6-975c-4861a8d2e5e9))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 07f967c1-d7f6-4956-a540-d49d0f495d72))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 29602b80-a9a8-45f4-9b8c-bf1cb5c6631e))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 31ea123f-48a3-48ce-a3bf-5b124d1b5def))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 785e216f-7cf9-4591-b4ec-4a6008fd3d31))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/UART_TX") (pintype "passive") (tstamp 3ab6041a-c68a-41c6-8a0a-9fc00ff0d35a))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(Q1-Pad1)") (pintype "passive") (tstamp fa788413-3ee8-4512-a6d2-6c50e9c835d7))
(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 "Diode_SMD:D_SMB" (layer "F.Cu")
(tedit 58645DF3) (tstamp 5d97d130-4989-44d4-970c-5fc2f3f8db34)
(at 85.75 78.525 -90)
(descr "Diode SMB (DO-214AA)")
(tags "Diode SMB (DO-214AA)")
(property "LCSC Part" "C83326")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/3018882d-0622-49c7-a8ff-c9d84af05da6")
(attr smd)
(fp_text reference "D2" (at -4.25 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76a618e2-fc81-4f7f-82dd-64f64c6619d0)
)
(fp_text value "SMBJ36CA" (at 0 3.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4018b9a0-06a2-411b-8b11-f9ea3dce3cb8)
)
(fp_text user "${REFERENCE}" (at 0 -3 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65563cf2-aed5-4a2e-99e5-9e38cd24fc59)
)
(fp_line (start -3.55 2.15) (end 2.15 2.15) (layer "F.SilkS") (width 0.12) (tstamp 05a64b3a-e641-4fa1-b52b-5742b93943cc))
(fp_line (start -3.55 -2.15) (end 2.15 -2.15) (layer "F.SilkS") (width 0.12) (tstamp 1d59264f-5de1-4bf5-a296-6a131947428b))
(fp_line (start -3.55 -2.15) (end -3.55 2.15) (layer "F.SilkS") (width 0.12) (tstamp efec4142-ba50-4098-9ce6-a0e766ee05ae))
(fp_line (start 3.65 2.25) (end -3.65 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 3af9f9fa-3e94-4340-98e2-3410c5109573))
(fp_line (start -3.65 -2.25) (end 3.65 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 54bd59fb-d0ec-4b44-9872-09d757bc2388))
(fp_line (start -3.65 2.25) (end -3.65 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp b42b7051-0367-48e3-8be9-a16ff6b03553))
(fp_line (start 3.65 -2.25) (end 3.65 2.25) (layer "F.CrtYd") (width 0.05) (tstamp e547e23e-1959-446c-b304-4914e332e882))
(fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer "F.Fab") (width 0.1) (tstamp 22309fff-4aa8-4fe2-9f6d-8a9a5b8c910f))
(fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 27b8981e-bed0-4016-9584-cea96bf8b02a))
(fp_line (start 2.3 -2) (end -2.3 -2) (layer "F.Fab") (width 0.1) (tstamp 2f32bd10-631a-4d6d-b06d-735b8cc72b33))
(fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer "F.Fab") (width 0.1) (tstamp 37e17a22-d9c5-4e21-970d-ada5e8046ec0))
(fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer "F.Fab") (width 0.1) (tstamp 3c904da2-5d42-4df6-aa16-44ab201bc81e))
(fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer "F.Fab") (width 0.1) (tstamp 95f5656d-b0e9-446a-802e-c1443873f561))
(fp_line (start -2.3 2) (end -2.3 -2) (layer "F.Fab") (width 0.1) (tstamp 9874f0d6-dab9-430f-b95a-bedf50d64401))
(fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer "F.Fab") (width 0.1) (tstamp b035374f-1a0b-45b9-a281-2ea2a5d3e5aa))
(fp_line (start 2.3 2) (end -2.3 2) (layer "F.Fab") (width 0.1) (tstamp cfd683d2-043b-4edf-905b-53a9ae570c8e))
(fp_line (start 2.3 -2) (end 2.3 2) (layer "F.Fab") (width 0.1) (tstamp f6da3a6d-abab-4ada-ada5-6d4262882b03))
(pad "1" smd rect (at -2.15 0 270) (size 2.5 2.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "/-") (pinfunction "A1") (pintype "passive") (tstamp 26a8feac-2568-4b40-8943-f92149dfe15d))
(pad "2" smd rect (at 2.15 0 270) (size 2.5 2.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/+") (pinfunction "A2") (pintype "passive") (tstamp cca12455-399f-40bc-b49f-1a2ce4520605))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMB.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 63834c9d-d1be-43c1-96d7-ed507bfb48fc)
(at 59.975 82.55 180)
(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 "LCSC Part" "C118370")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/6c0908eb-f587-48ef-a2f2-05957955fde8")
(attr smd)
(fp_text reference "R4" (at 2.325 0.95) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5735cc49-ca66-42ee-8c7c-337a1513d553)
)
(fp_text value "39k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36fe5aa4-42e4-4712-b0a7-f4478bd734cd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f03e41c8-3355-4364-9156-d48cd7ab2dfe)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 2dc389d0-d2f3-467e-b2de-8dedc36c4c80))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 33cf8393-12ad-4d32-b046-a9f92b419cdb))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6893f5f6-c3be-403b-8e46-327b07ff9047))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 83d142e2-ebcf-4918-ae70-70e55af57059))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp cb4e6ef9-3bf9-4621-a972-dc161771ff67))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d07e1f47-3e65-4752-97bb-31449426a438))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7f45c785-a94b-486c-9806-c88c4ef105f3))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 8812019b-4133-41f7-baa7-66e164c2420d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 896cb768-c253-4b59-b4a5-548a86e5e1dd))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp aa87668a-429b-4cef-a4a3-a5cbdf106b67))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/BOOST_FB") (pintype "passive") (tstamp a69a120a-1351-478d-9aed-d2689d360c89))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp b3042c7b-27eb-4bee-ae8a-3c15e91769c0))
(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_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 74880804-5490-4fef-b644-be5ea1a41585)
(at 69.75 86.875 90)
(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 "LCSC Part" "C77386")
(property "Sheetfile" "mbus.kicad_sch")
(property "Sheetname" "")
(path "/ed130286-abd4-4235-a297-53a671ed7b84")
(attr smd)
(fp_text reference "C3" (at 1.425 1.6 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 348249fb-9fb5-4beb-aeae-586168b3eeb9)
)
(fp_text value "1u" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dabc4b62-0af4-4143-85b3-a50356affeda)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 64826660-46cf-43e9-8623-296e0c56fc28)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 1ef8798e-ed23-4e3e-996e-0bb9256a2293))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 30ad5bc6-86a9-4113-83de-2046697bac93))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1eb35457-e836-4ea6-a64f-1a6f1b73f965))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2b3a9f17-48d9-4a96-974c-241efb62b934))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 305419f0-56d9-4324-93de-a7e44fa6799a))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 83c4029c-ea50-4381-ae28-2819e74ff100))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0851155e-4d15-4266-bca3-4562505a0915))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 494da7f6-11d6-4f86-acc8-9b045fd179b0))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 54eab13b-036a-4846-9f95-e09eafba2a4a))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 94b5f3c6-5efd-435f-a0ea-161c410fe17b))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+34V") (pintype "passive") (tstamp 29538705-5aa4-49d2-8621-84db084a2f3e))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp e547bd9f-35f0-434d-8f9c-f17fce5c3b1e))
(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 "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 7b5fc003-35db-420f-b25d-63168474a732)
(at 80.725 79.05)
(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 "LCSC Part" "C441934")
(property "Sheetfile" "mbus.kicad_sch")