-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrodo_power_module.kicad_pcb
19802 lines (19701 loc) · 886 KB
/
frodo_power_module.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(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") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Black") (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 "Black") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+VSW")
(net 3 "+5V")
(net 4 "+3V3")
(net 5 "VDDA")
(net 6 "Net-(C9-Pad2)")
(net 7 "OSC_OUT")
(net 8 "NRST")
(net 9 "Net-(D1-K)")
(net 10 "+BATT")
(net 11 "Net-(U5-VDD)")
(net 12 "Net-(U5-VC1)")
(net 13 "Net-(U5-VC2)")
(net 14 "Net-(U5-CD)")
(net 15 "Net-(D1-A)")
(net 16 "Net-(D2-K)")
(net 17 "Net-(D2-A)")
(net 18 "Net-(D3-K)")
(net 19 "Net-(D3-A)")
(net 20 "STAT1")
(net 21 "STAT2")
(net 22 "VDC")
(net 23 "Net-(J1-Pin_1)")
(net 24 "Net-(J1-Pin_2)")
(net 25 "/Net-")
(net 26 "/Net+")
(net 27 "unconnected-(J5-Pin_1-Pad1)")
(net 28 "CAN+")
(net 29 "CAN-")
(net 30 "unconnected-(J6-Pin_1-Pad1)")
(net 31 "OSC_IN")
(net 32 "BOOT")
(net 33 "Net-(U4-CHM_TMR)")
(net 34 "Net-(U4-VSET)")
(net 35 "Net-(R24-Pad1)")
(net 36 "Net-(U4-ISET)")
(net 37 "NTC")
(net 38 "Net-(R10-Pad2)")
(net 39 "Net-(U5-VC1_CB)")
(net 40 "SWDIO")
(net 41 "VSENSE_CHARGE")
(net 42 "VSENSE_BATT")
(net 43 "CHARGE_ENABLE")
(net 44 "BLNCR_OUT")
(net 45 "unconnected-(U1-PA5-Pad11)")
(net 46 "ISENSE")
(net 47 "CAN_RX")
(net 48 "CAN_TX")
(net 49 "SWCLK")
(net 50 "Net-(U7-REF)")
(footprint "Connector_Molex:Molex_Micro-Fit_3.0_43045-0400_2x02_P3.00mm_Horizontal" (layer "F.Cu")
(tstamp 101afd3d-fe11-48ed-8ba1-1812da604a83)
(at 113.95 124.53 180)
(descr "Molex Micro-Fit 3.0 Connector System, 43045-0400 (alternative finishes: 43045-040x), 2 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex Micro-Fit_3.0 horizontal")
(property "LCSC#" "C122413")
(property "Manufacturer" "MOLEX")
(property "Part#" "0430450400")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/1f7558ab-035e-42ac-b0a2-edf9beb19d54")
(attr through_hole)
(fp_text reference "J4" (at 5.45 2.53) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ed4793d-1bd9-4a8d-a92a-53115bac71f1)
)
(fp_text value "Molex MicroFit 2x2" (at 1.5 5.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea9cc6d7-1913-4fc0-995e-c0619410fbb5)
)
(fp_text user "FC" (at -5.25 -3.87 270 unlocked) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.25)))
(tstamp 5a46c10f-ba7e-488d-8538-8a204ab3dcaf)
)
(fp_text user "${REFERENCE}" (at 1.5 -8.22) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7cbf52b-f25c-498c-a96b-0f7a67d0e5db)
)
(fp_line (start -3.685 -8.03) (end -2.685 -9.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a9a83c3-d13b-4567-bdb5-687de5086481))
(fp_line (start -3.685 1.1) (end -3.685 -8.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58abc04b-390f-4aed-a021-f7ad734a5bd1))
(fp_line (start -2.685 -9.03) (end 5.685 -9.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f625d0f1-92f4-4cd5-b7e5-48f71011e1a0))
(fp_line (start 5.685 -9.03) (end 6.685 -8.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8de46613-593c-4e22-8379-75d4b804a293))
(fp_line (start 6.685 -8.03) (end 6.685 1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42965a6b-12df-40ac-babd-6c8dfc66b08a))
(fp_line (start 6.685 1.1) (end -3.685 1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d86fa801-a77c-4739-8299-f3d452172db8))
(fp_line (start -4.08 -9.42) (end 7.08 -9.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f5d12a6-1f0c-4696-ad6a-59d742807e04))
(fp_line (start -4.08 1.49) (end -4.08 -9.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 367356df-f7e4-429c-aa7e-0d8db5621d39))
(fp_line (start -1.25 1.49) (end -4.08 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e6da4c0-2586-45db-9f66-782d7cc758b1))
(fp_line (start -1.25 4.25) (end -1.25 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9e3b005-9ecb-4090-844a-c16c9ae58d3d))
(fp_line (start 4.25 1.49) (end 4.25 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf200c8d-6f71-4b58-957b-ae3146a2ccd9))
(fp_line (start 4.25 4.25) (end -1.25 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6015a6ab-8a63-4810-bc8a-d94f11c5deb0))
(fp_line (start 7.08 -9.42) (end 7.08 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83b587cb-394a-40cb-8eaa-ba64d5b672a4))
(fp_line (start 7.08 1.49) (end 4.25 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8784dbb5-868b-4a20-9dfd-210189076b0b))
(fp_line (start -3.575 -7.92) (end -2.575 -8.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ace63561-8738-460d-b3bd-f5338c4b282a))
(fp_line (start -3.575 0.99) (end -3.575 -7.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50d46f8f-9d4f-4a79-8454-4a3766ec2010))
(fp_line (start -2.575 -8.92) (end 5.575 -8.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3893a8b-35b4-468b-9155-9e1abf689140))
(fp_line (start -0.75 0.99) (end 0 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d86f388d-c404-4034-aa5c-88698b3db06f))
(fp_line (start 0 0) (end 0.75 0.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a96dcf04-7120-4271-93c9-9de62d2acb47))
(fp_line (start 5.575 -8.92) (end 6.575 -7.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08bc8c80-d11a-4141-9735-3617009489b9))
(fp_line (start 6.575 -7.92) (end 6.575 0.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69fe3ae2-1929-40ec-ba2c-97e1b85c8602))
(fp_line (start 6.575 0.99) (end -3.575 0.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c287fc21-186b-460d-8019-dddb871d5be5))
(pad "" np_thru_hole circle (at 1.5 -4.32 180) (size 3 3) (drill 3) (layers "*.Cu" "*.Mask") (tstamp b87ff30d-e943-4ad2-9d09-346a1b3f044f))
(pad "1" thru_hole roundrect (at 0 0 180) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.166667)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 3d6db0e3-7c01-455b-b00c-8ce716862679))
(pad "2" thru_hole circle (at 3 0 180) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 1a9d5940-1399-4caa-a373-0dd5d7b16aff))
(pad "3" thru_hole circle (at 0 3 180) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "+VSW") (pinfunction "Pin_3") (pintype "passive") (tstamp 31918d0c-b059-43ae-829f-86c3395b5dc7))
(pad "4" thru_hole circle (at 3 3 180) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "+VSW") (pinfunction "Pin_4") (pintype "passive") (tstamp 78615df9-e8b6-4b50-ac61-91983e2f0ac5))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_Micro-Fit_3.0_43045-0400_2x02_P3.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_GH_SM04B-GHS-TB_1x04-1MP_P1.25mm_Horizontal" (layer "F.Cu")
(tstamp 1f8b1269-c0d7-41ef-9b0f-c9f2b2b01b28)
(at 116.575 68.8 180)
(descr "JST GH series connector, SM04B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator")
(tags "connector JST GH top entry")
(property "LCSC#" "C189895")
(property "Manufacturer" "JST")
(property "Part#" "SM04B-GHS-TB")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connectable mounting pin connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/8f693f8e-b956-4a27-b988-b02f3398d6dc")
(attr smd)
(fp_text reference "J6" (at 3.575 -2.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7710020-847a-4e0c-b930-23a7464b5f6d)
)
(fp_text value "JST-GH" (at 0 3.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f7ff019-b08b-4146-98d2-e68a2b63c6f2)
)
(fp_text user "${REFERENCE}" (at 3.575 -2.7) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa6a8576-6a1d-4b08-9e08-62f2d2961f7d)
)
(fp_line (start -4.235 -1.71) (end -2.435 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b938308-ab18-40d7-8240-ad2eae416b99))
(fp_line (start -4.235 -0.26) (end -4.235 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 985be147-f1ba-4720-b246-610c22a81062))
(fp_line (start -2.965 2.56) (end 2.965 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 340a395d-5725-4808-a093-7eab54309fbf))
(fp_line (start -2.435 -1.71) (end -2.435 -2.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 021bf2f6-88b1-4a04-85b9-0819e78c55b1))
(fp_line (start 4.235 -1.71) (end 2.435 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd1175c1-37da-4c02-9714-8f2847eef6b3))
(fp_line (start 4.235 -0.26) (end 4.235 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3df65c86-f56a-4fd7-a5ee-b6527b9fb5b7))
(fp_line (start -4.72 -3.2) (end -4.72 3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9387b509-6f73-4c94-a8ff-3cc129f52188))
(fp_line (start -4.72 3.2) (end 4.72 3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2748c7cf-610d-4cb2-b194-930c18b04b3d))
(fp_line (start 4.72 -3.2) (end -4.72 -3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e52f69c4-2cd7-4023-b71f-5b7d320c2854))
(fp_line (start 4.72 3.2) (end 4.72 -3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f0482d37-1e4a-44d8-aeb0-90ea0e69e40d))
(fp_line (start -4.125 -1.6) (end -4.125 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c47dcbaa-1349-4dbb-9d8b-d548b6cccc57))
(fp_line (start -4.125 -1.6) (end 4.125 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47fb6147-9bcc-4acb-bc7c-8b464e1c5a2a))
(fp_line (start -4.125 2.45) (end 4.125 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07618c77-c381-43d1-a87c-12fdb4831958))
(fp_line (start -2.375 -1.6) (end -1.875 -0.892893)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e153216b-e5cb-49ab-a942-5248b0ff98c2))
(fp_line (start -1.875 -0.892893) (end -1.375 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e0a3bff-cd01-487f-94e5-b85d102c6630))
(fp_line (start 4.125 -1.6) (end 4.125 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95048cbd-e7d5-476f-95ed-88a87ba8c2d3))
(pad "1" smd roundrect (at -1.875 -1.85 180) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "unconnected-(J6-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp f07874c3-80b1-4f8b-96d7-b39e9efe9d31))
(pad "2" smd roundrect (at -0.625 -1.85 180) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/Net+") (pinfunction "Pin_2") (pintype "passive") (tstamp ece992b5-d481-4aec-9844-b27ee74c1d38))
(pad "3" smd roundrect (at 0.625 -1.85 180) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/Net-") (pinfunction "Pin_3") (pintype "passive") (tstamp 55ab1144-511e-4b12-ba07-d338feb19415))
(pad "4" smd roundrect (at 1.875 -1.85 180) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp a335fe53-3d68-4bb1-a288-40be00f0752b))
(pad "MP" smd roundrect (at -3.725 1.35 180) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 6499ef6d-c05d-4f76-8bc8-302f076fe3a6))
(pad "MP" smd roundrect (at 3.725 1.35 180) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 54e47677-b186-41bb-870a-9f84415727ea))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_GH_SM04B-GHS-TB_1x04-1MP_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tstamp 27927e26-59c6-4a98-b0e7-eb71db984107)
(at 137.5 125)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "DigiKey#" "N/A")
(property "LCSC#" "N/A")
(property "Manufacturer" "N/A")
(property "Part#" "N/A")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/f21b7a88-2756-419f-ad2f-d25c263a2c29")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed165e7b-6178-4710-ab21-879df3d79562)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6689a1d-e1a9-4d60-9171-741dadf9aefa)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76fc8c30-b1f4-4811-b178-b062d1a0975c)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 840479e0-d315-4399-b660-054bba5a0c9c))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp bf1ce705-0cf6-4acb-86e8-10dcd427247f))
(pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp da9e044c-a8bc-4e51-a7ad-21072a307b15))
(pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 5ab46b7d-3da1-4b6c-a9e0-5b1b98684425))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 2287372e-f727-423d-abfe-8d968e462f8b))
(pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 5e2dd5f9-269f-462c-abd8-53c47939935b))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp d6a9235c-097b-4103-b791-64b38481d846))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp dd6eb2c4-782c-433f-b5cb-e75d1a3d4c89))
(pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 69667bf4-ea72-4619-8e37-e4ce1260f5bd))
(pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 61494f10-7901-43a0-acf5-cc28ed88d7ad))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp d2bc92df-51aa-4638-ae6d-d620b1ec2f43))
)
(footprint "frodo_power_module:keystone_1048" (layer "F.Cu")
(tstamp 2a0becb8-1ec5-47a9-b0e3-5499ac14f5bc)
(at 100 100)
(property "DigiKey#" "36-1098-ND")
(property "Manufacturer" "Keystone Electronics")
(property "Part#" "1048")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/88959e20-159a-4577-a5d9-cf1b51dcdeeb")
(attr smd)
(fp_text reference "J1" (at 0 -0.5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb619da0-4c22-409a-9e50-31d8aaceac13)
)
(fp_text value "Keystone 1048" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6169b519-cf2c-47fe-a441-7295a1194b2d)
)
(fp_line (start -39.6 -13) (end -39.6 -19.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a016dfa-92e8-489a-997e-3411f32d0ee3))
(fp_line (start -39.6 -6.1) (end -39.6 6.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1cc706a2-3115-44fe-8af0-77696be806a5))
(fp_line (start -39.6 13) (end -39.6 19.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df4da6bb-2be3-483a-be2e-62319b490343))
(fp_line (start -39.6 19.9) (end 39.6 19.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6911f068-00be-4c18-9d78-9ce98b0a5a87))
(fp_line (start 39.6 -19.9) (end -39.6 -19.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 439e133b-8e68-409a-a090-316838c28f7e))
(fp_line (start 39.6 -13) (end 39.6 -19.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b08ea940-4489-4297-8978-5904b73568cc))
(fp_line (start 39.6 -6.1) (end 39.6 6.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd82eb98-5eaf-4062-a633-71da35d1be6f))
(fp_line (start 39.6 13) (end 39.6 19.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c20f9f44-d32e-4913-b060-27e705d4f7d9))
(pad "" np_thru_hole circle (at -27.6 0) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") (tstamp 0d5b7859-bc09-4e3f-b792-cd0fb05160a4))
(pad "" np_thru_hole circle (at -27.6 17.5) (size 3.5 3.5) (drill 3.5) (layers "F&B.Cu" "*.Mask") (tstamp bc6d292f-90fd-492f-9c50-ffa3e00be48f))
(pad "" np_thru_hole circle (at 27.6 -17.5) (size 3.5 3.5) (drill 3.5) (layers "F&B.Cu" "*.Mask") (tstamp 776503a2-0c6a-405a-b6f9-5a13a30d4079))
(pad "" np_thru_hole circle (at 27.6 0) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") (tstamp 06106195-241b-4bff-bd25-b373b6b3a072))
(pad "" np_thru_hole circle (at 35.6 17.5) (size 2.45 2.45) (drill 2.45) (layers "F&B.Cu" "*.Mask") (tstamp 1f97e81a-3a59-4426-bdf7-518b3ff793c5))
(pad "1" smd roundrect (at -39.55 -9.45) (size 7.9 6.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.03)
(net 23 "Net-(J1-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp c82b74e1-0533-4d6c-bbe7-22f8d59dfc18))
(pad "2" smd roundrect (at 39.55 -9.45) (size 7.9 6.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.03)
(net 24 "Net-(J1-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 15c94789-e5e3-45f1-a48c-947b0053ea8b))
(pad "3" smd roundrect (at 39.55 9.45) (size 7.9 6.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.03)
(net 24 "Net-(J1-Pin_2)") (pinfunction "Pin_3") (pintype "passive") (tstamp 2ede10e2-6915-404c-95bc-00c8c86e298a))
(pad "4" smd roundrect (at -39.55 9.45) (size 7.9 6.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.03)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 845526bc-9f0e-4e4b-b2ef-4ff888cab733))
)
(footprint "Connector_Molex:Molex_Micro-Fit_3.0_43045-0600_2x03_P3.00mm_Horizontal" (layer "F.Cu")
(tstamp 32ff1c45-34e4-4963-9944-c2d3fb4e0240)
(at 79.25 74.97)
(descr "Molex Micro-Fit 3.0 Connector System, 43045-0600 (alternative finishes: 43045-060x), 3 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex Micro-Fit_3.0 horizontal")
(property "LCSC#" "C127367")
(property "Manufacturer" "MOLEX")
(property "Part#" "0430450600")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/73f4b057-1018-4eb7-b74e-d430f31cae11")
(attr through_hole)
(fp_text reference "J2" (at -2.25 2.53) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19123f0d-135f-4936-af9f-cab3217ba2e3)
)
(fp_text value "Molex MicroFit 2x3" (at 3 5.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44bed408-94f2-4310-aa47-8df894e2134a)
)
(fp_text user "BUS B" (at 11.45 -3.77 90 unlocked) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.25) bold))
(tstamp 7ea43843-357e-4030-9897-16b7eca9f4b4)
)
(fp_text user "${REFERENCE}" (at 3 -8.22) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c67eaa7e-46fa-47c0-8c50-62b44a9361bf)
)
(fp_line (start -3.685 -8.03) (end -2.685 -9.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f74dfdc-1649-4236-9639-ea825540ff86))
(fp_line (start -3.685 1.1) (end -3.685 -8.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0caad390-c2d8-4e11-add1-f566ed526c1f))
(fp_line (start -2.685 -9.03) (end 8.685 -9.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65b24c73-0000-4981-9fa7-cdd2e8f59fab))
(fp_line (start 8.685 -9.03) (end 9.685 -8.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25f6956b-41d3-49a4-a2a9-373ffe475826))
(fp_line (start 9.685 -8.03) (end 9.685 1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9bf54a08-aced-44b0-9fb3-f8d75fcc1277))
(fp_line (start 9.685 1.1) (end -3.685 1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 692aea42-c52e-44a8-bd8d-7b519d8fdf5a))
(fp_line (start -4.08 -9.42) (end 10.07 -9.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf431c14-3565-4321-b413-f16ec60971c8))
(fp_line (start -4.08 1.49) (end -4.08 -9.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7699d13f-3741-4c68-9be8-82ded7bba851))
(fp_line (start -1.25 1.49) (end -4.08 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a4085d1-c5df-42e5-a321-07b1d73970ac))
(fp_line (start -1.25 4.25) (end -1.25 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 221e20b4-26a2-46e2-99e5-66d916aa9343))
(fp_line (start 7.25 1.49) (end 7.25 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7724c776-951b-4d81-899f-19f24f33eb5d))
(fp_line (start 7.25 4.25) (end -1.25 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6457deb4-d433-4710-a47e-e2b196b8a6a0))
(fp_line (start 10.07 -9.42) (end 10.07 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 301fdbaf-addb-4cf1-9ae6-4c7cac8539e6))
(fp_line (start 10.07 1.49) (end 7.25 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1cd341f3-178c-410c-acdc-c04332d3c725))
(fp_line (start -3.575 -7.92) (end -2.575 -8.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4af8c79-2f8f-434a-a649-fd977df03677))
(fp_line (start -3.575 0.99) (end -3.575 -7.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 496735b2-8d02-49e3-b703-ba53d460d717))
(fp_line (start -2.575 -8.92) (end 8.575 -8.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 057f419c-32f5-46ab-9592-f512f33364f2))
(fp_line (start -0.75 0.99) (end 0 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d336f9e5-304e-4279-a4bf-9caeebf2c6d8))
(fp_line (start 0 0) (end 0.75 0.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 877bbd82-6a23-483b-8746-70fa0b5257a5))
(fp_line (start 8.575 -8.92) (end 9.575 -7.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67a050e6-b4c1-49f3-a7af-c054a464a906))
(fp_line (start 9.575 -7.92) (end 9.575 0.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15e216e6-d293-4e7a-bd44-65fd53e28d3d))
(fp_line (start 9.575 0.99) (end -3.575 0.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5242f70-607e-4c97-a9ac-6907db49547e))
(pad "" np_thru_hole circle (at 3 -4.32) (size 3 3) (drill 3) (layers "*.Cu" "*.Mask") (tstamp 1d453995-5071-43b4-8070-16bb38f27535))
(pad "1" thru_hole roundrect (at 0 0) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.166667)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp d3f25317-376a-4b74-bb4e-2693f0228c72))
(pad "2" thru_hole circle (at 3 0) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 8abb3dac-580d-4be8-af5e-4292a93e57be))
(pad "3" thru_hole circle (at 6 0) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 25 "/Net-") (pinfunction "Pin_3") (pintype "passive") (tstamp 0e6b6e04-e936-4204-b8e3-878e8c445e2c))
(pad "4" thru_hole circle (at 0 3) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 22 "VDC") (pinfunction "Pin_4") (pintype "passive") (tstamp 6adc00fe-1b1e-46f0-81c4-a206b477c5d1))
(pad "5" thru_hole circle (at 3 3) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "+VSW") (pinfunction "Pin_5") (pintype "passive") (tstamp 6be840e5-bc45-4e6b-9616-f5fe1f94b5a1))
(pad "6" thru_hole circle (at 6 3) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 26 "/Net+") (pinfunction "Pin_6") (pintype "passive") (tstamp 49c59629-4765-4afd-b4f6-dd8fd86d3018))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_Micro-Fit_3.0_43045-0600_2x03_P3.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "F.Cu")
(tstamp 5794a8ee-287a-454b-8953-386a3ac0972d)
(at 105.95 75.4 90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "DigiKey#" "N/A")
(property "LCSC#" "N/A")
(property "Manufacturer" "N/A")
(property "Part#" "N/A")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Solder Jumper, 2-pole, open")
(property "ki_keywords" "solder jumper SPST")
(path "/701a150e-ba18-4973-91c2-9547ccbc3e0f")
(attr exclude_from_pos_files)
(fp_text reference "JP2" (at -0.001058 -2.077221 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9d8c886a-09ed-4e1b-bea6-4389d6b56653)
)
(fp_text value "r" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb9d73f8-2acc-486a-8948-6719f154dfd8)
)
(fp_line (start -1.4 0.3) (end -1.4 -0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4535550d-280c-4d56-a0c2-f64d8f0890ca))
(fp_line (start -0.7 -1) (end 0.7 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4847637c-6a89-46be-8405-88b458e155bf))
(fp_line (start 0.7 1) (end -0.7 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66a9a5e4-60c7-435d-8540-d9a1c34de8db))
(fp_line (start 1.4 -0.3) (end 1.4 0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 558d7abe-812f-4270-afee-5556df5fe7a3))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2339925d-c6ce-4a03-865a-d2a8f68a294f))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c034c477-386d-4c2f-88fd-bc9b82d60d33))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6801dfbb-1729-4abb-9bcf-9851a522813e))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cfbc0208-11a1-4d9a-9af3-9d75c138e361))
(fp_line (start -1.65 -1.25) (end -1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa6e5634-37b9-422b-a1ef-f263bbbf1101))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9c8871e-bde5-4d3b-a8db-97e691f3f243))
(fp_line (start 1.65 1.25) (end -1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6fbcf009-d500-43cb-ba36-3457dceec101))
(fp_line (start 1.65 1.25) (end 1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 601336e9-c18e-4b48-aa7e-bdf7a41123c3))
(pad "1" smd custom (at -0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 28 "CAN+") (pinfunction "A") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly
(pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
)
(width 0) (fill yes))
) (tstamp 5a4093a9-c4e1-4bac-81df-c7090cdbb8fa))
(pad "2" smd custom (at 0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask")
(net 26 "/Net+") (pinfunction "B") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_poly
(pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
)
(width 0) (fill yes))
) (tstamp bdc4bc9e-6df8-4a7e-8d54-d827eb57afc0))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 675a7526-9ece-4321-87b8-c3df203aaaa6)
(at 58.5 105 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 "DigiKey#" "490-18139-1-ND")
(property "LCSC#" "C162670")
(property "Manufacturer" "Murata Electronics")
(property "Notes" "Datasheet calls for 103AT, this seems similar.")
(property "Part#" "NCU18XH103F6SRB")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Temperature dependent resistor, negative temperature coefficient")
(property "ki_keywords" "thermistor NTC resistor sensor RTD")
(path "/1e2f268c-dc8a-4ac4-a933-da5e9c5396d5")
(attr smd)
(fp_text reference "TH1" (at 0 1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad0e4778-2555-48a5-9839-c41718d28191)
)
(fp_text value "NCU18XH103F6SRB" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41cfe0ce-8f8a-451e-af14-e8f2105a7e8c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 32564b23-bcbe-4b4f-8c21-f227f03a8c06)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3b19b51-db9d-4771-9cd2-1b84b7fda997))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e14049fe-46cc-4c63-893b-abd1226b421f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0c1cf69-2ab4-4d33-83e2-da9f83475a9d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d04aa3aa-7421-45ee-a3b5-0e354c62df2c))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e81ff954-fe85-41e1-b697-ffc874e26e3f))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aebb8511-dfbb-43f9-9b3d-85e579bfa582))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89fdc5fb-c580-4b45-85b6-301fc57457e9))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8003c77f-114a-4d01-b1a0-624d2de696e4))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37042ef6-e40b-499f-b1fe-1729e44f99b9))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4842f9ce-4419-4d94-8c33-d6fa3a2b9819))
(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 38 "Net-(R10-Pad2)") (pintype "passive") (tstamp dd678530-5ce2-44de-a134-5953b4b7cac4))
(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 3ac1cc1d-7531-4d88-9837-6ea7acc255f4))
(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_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tstamp 709f5e78-0c1d-4e4a-965b-6450ea77b1a9)
(at 62.5 75)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "DigiKey#" "N/A")
(property "LCSC#" "N/A")
(property "Manufacturer" "N/A")
(property "Part#" "N/A")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/7d638556-21ea-451e-a635-086e03a25e49")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e81b764b-7155-46d4-a4a5-b3d33052786a)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7a17105-3bac-46eb-83fe-ae7a11ebb854)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7b8f829-4971-4ff1-8662-abd2c79a349f)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 0b3ca6cf-9000-4b45-90f7-61ca13bb0d98))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 9d053908-fa7a-421e-99be-bf85f6eebe45))
(pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 0386c4f9-54b6-4951-ae70-cacec2d63291))
(pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp c5d83f7b-a4dc-4b1c-be3b-dbf892485715))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 1f085113-4967-4be5-baa4-4d38fc0557ce))
(pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 30dd823b-3d7f-4668-b333-3466bd7e8e74))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp f8e297e2-489c-4b13-acf4-bfa6fda5a5f7))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp c4973ee0-9856-4c19-acf0-f8fd491dfc4b))
(pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 45c6f631-4398-446b-b6f7-5c0f08866f68))
(pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 03fea952-e7c3-48f7-a876-fc073deeb846))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp a5c06d82-3e63-4975-8943-23a42f784f60))
)
(footprint "Connector_JST:JST_GH_SM04B-GHS-TB_1x04-1MP_P1.25mm_Horizontal" (layer "F.Cu")
(tstamp 75909460-c33e-45dd-a939-8dd2d5be453e)
(at 97.975 68.8 180)
(descr "JST GH series connector, SM04B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator")
(tags "connector JST GH top entry")
(property "LCSC#" "C189895")
(property "Manufacturer" "JST")
(property "Part#" "SM04B-GHS-TB")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connectable mounting pin connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/b42ff933-de8f-47c0-ae8a-5d414f465600")
(attr smd)
(fp_text reference "J5" (at 3.475 -2.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55553731-586b-4dd4-b949-04a3aa1cf7d9)
)
(fp_text value "JST-GH" (at 0 3.9) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59e591f6-9073-4328-9a39-6f0276e24163)
)
(fp_text user "FC CAN" (at -9.325 1 180 unlocked) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.25)))
(tstamp e11e5c39-ea15-4fcf-973d-06b91eecb63e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e61bdc4-b625-4bdb-8c6d-5ac48bf2bae0)
)
(fp_line (start -4.235 -1.71) (end -2.435 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6890cddf-1bb0-4575-8947-e7e900c56244))
(fp_line (start -4.235 -0.26) (end -4.235 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69897860-ac02-4f3c-a767-15b47201b93b))
(fp_line (start -2.965 2.56) (end 2.965 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d662e764-b59c-4b3e-8745-3204324f0d53))
(fp_line (start -2.435 -1.71) (end -2.435 -2.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86248205-fc5b-417d-a44d-3d2e1f8c45a9))
(fp_line (start 4.235 -1.71) (end 2.435 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de4d9176-2fef-4717-832b-2d616ccd091c))
(fp_line (start 4.235 -0.26) (end 4.235 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e58f71db-9710-49e8-8deb-a1bc99fdf064))
(fp_line (start -4.72 -3.2) (end -4.72 3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09685c08-0101-4e45-9814-c24a542d68e9))
(fp_line (start -4.72 3.2) (end 4.72 3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54b56413-796c-4938-a0e0-f0fc0cc67892))
(fp_line (start 4.72 -3.2) (end -4.72 -3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb1733f5-3d9b-424e-af9e-98d399aebbd6))
(fp_line (start 4.72 3.2) (end 4.72 -3.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01e18792-8cb9-4e4f-941a-38afc3be1cf0))
(fp_line (start -4.125 -1.6) (end -4.125 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e36a499-5822-49e6-834c-079bfaaab363))
(fp_line (start -4.125 -1.6) (end 4.125 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae598d27-425c-45cb-a97e-25a2ee397d39))
(fp_line (start -4.125 2.45) (end 4.125 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fcca66bc-d804-47c5-9a51-a77b7fa5ef18))
(fp_line (start -2.375 -1.6) (end -1.875 -0.892893)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b19b9ff-00f4-4085-9f97-559d02d957a0))
(fp_line (start -1.875 -0.892893) (end -1.375 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38604d3c-44c9-48d0-ad2b-810390c9c2d6))
(fp_line (start 4.125 -1.6) (end 4.125 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 03ce8c46-9b75-430b-b7ed-f8ca2b8a1d72))
(pad "1" smd roundrect (at -1.875 -1.85 180) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "unconnected-(J5-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp d2a0acf1-bcb3-4588-8284-b524717d1d60))
(pad "2" smd roundrect (at -0.625 -1.85 180) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "CAN+") (pinfunction "Pin_2") (pintype "passive") (tstamp 6aa34679-7ff2-4c1a-8cfa-bb6035ce692a))
(pad "3" smd roundrect (at 0.625 -1.85 180) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "CAN-") (pinfunction "Pin_3") (pintype "passive") (tstamp 546cfcb1-96b9-471f-bf76-2a4d8364b5e1))
(pad "4" smd roundrect (at 1.875 -1.85 180) (size 0.6 1.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp af6a500a-5ab2-49ad-a41a-ec4098518e7a))
(pad "MP" smd roundrect (at -3.725 1.35 180) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp df01bace-6572-4e0b-9100-8456d3570afb))
(pad "MP" smd roundrect (at 3.725 1.35 180) (size 1 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 869e76ab-747a-48db-aa0b-b4732e9b8c42))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_GH_SM04B-GHS-TB_1x04-1MP_P1.25mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tstamp 7a719598-578b-4b69-b3a1-a62ad8fe881f)
(at 62.5 125)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "DigiKey#" "N/A")
(property "LCSC#" "N/A")
(property "Manufacturer" "N/A")
(property "Part#" "N/A")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/475bce68-0acb-48a9-9eb8-2b9d9fa2b4b1")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff10bbc8-e28e-4646-abea-6f0e908fa135)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4dddbdbb-ec0a-46de-984f-19fcdfca9c72)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 112ea928-1845-4622-a6cb-077c85d4178a)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp c7d519ab-d951-4c77-b452-5b6bc6dceb8d))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp cce32f64-3dfd-4832-a0b6-19986a0515a0))
(pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 3b71b31e-1055-4a45-b92f-7e488a1fc52d))
(pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 5646d8aa-166e-4600-80ee-b02d5783d436))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp d1353fc7-9473-4b23-897f-79790fa81ca5))
(pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 2de9cfe4-aa90-47bf-9376-2f6ddd360809))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 0ac4b967-82c9-4f6f-bc6d-a10a02a1d979))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 55027b26-bdc8-4135-a224-1fa475af3bfe))
(pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp df0d2dab-7ecd-4124-aaf4-6d74bbda812d))
(pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp b11cdc75-b57b-48fc-88a5-7df3643c1c96))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp fc0b52cf-6c46-4243-9f07-e0aa69f24cb1))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tstamp 9c7d5c46-b795-44e3-8ec4-e4cffbcf9c0c)
(at 137.5 75)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "DigiKey#" "N/A")
(property "LCSC#" "N/A")
(property "Manufacturer" "N/A")
(property "Part#" "N/A")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/0b2df514-5715-4e83-beef-8a9ada691370")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8619247a-f99a-4f3c-9f3a-42ac6fade2a3)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfa38a88-1f74-4847-9fdb-bd49c2848809)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc3bf5f1-61a4-4a65-89de-504f457b73f8)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 22db0c6d-4c08-499b-814f-33f8f9f197ee))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 5d399c3d-ec7e-4c79-a0ab-72d2552053f5))
(pad "1" thru_hole circle (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 72f687b9-0d15-4363-b8ce-1d98cb7a59a7))
(pad "1" thru_hole circle (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 689bb9fc-d50e-4d50-a2ed-15372b190ea6))
(pad "1" thru_hole circle (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 41f26125-03d4-45fa-b002-5b932eb888f4))
(pad "1" thru_hole circle (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp d16ff095-07d7-4cf7-9aad-666f85940e14))
(pad "1" thru_hole circle (at 0 0) (size 6.4 6.4) (drill 3.2) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 3da1e311-7729-439d-b3ff-19018fddc3bf))
(pad "1" thru_hole circle (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 77b4c9bd-04d4-4cec-895c-f39f9cb3761e))
(pad "1" thru_hole circle (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp c2c9fbaa-3aed-4ae0-abf7-c3982425a2b5))
(pad "1" thru_hole circle (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp 772c3dbd-9f75-49f3-8d24-253c393e2e61))
(pad "1" thru_hole circle (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "1") (pintype "input") (tstamp de0ff2bb-bc95-4ff5-84c5-0b6cc8a8d149))
)
(footprint "Connector_Molex:Molex_Micro-Fit_3.0_43045-0600_2x03_P3.00mm_Horizontal" (layer "F.Cu")
(tstamp b9093290-5599-487d-a7c8-d28a004d44fe)
(at 85.25 124.53 180)
(descr "Molex Micro-Fit 3.0 Connector System, 43045-0600 (alternative finishes: 43045-060x), 3 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex Micro-Fit_3.0 horizontal")
(property "LCSC#" "C127367")
(property "Manufacturer" "MOLEX")
(property "Part#" "0430450600")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/6a617a24-ba83-46e9-a4d4-838e265958cd")
(attr through_hole)
(fp_text reference "J7" (at -2.25 2.53) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6d406e6-26df-4b3e-9da7-d2be96cd691e)
)
(fp_text value "Molex MicroFit 2x3" (at 3 5.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83875eb7-6fd3-4d1e-837e-98b5f96c093e)
)
(fp_text user "BUS A" (at -5.35 -4.07 270 unlocked) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.25)))
(tstamp bfa0ce0c-ee47-4fcd-9277-122ac94de3ab)
)
(fp_text user "${REFERENCE}" (at 3 -8.22) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4036d93e-9d0d-4a7c-9646-8b9e4459776e)
)
(fp_line (start -3.685 -8.03) (end -2.685 -9.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2acbab0-fb61-48a0-b3a0-7d8710cc2fc2))
(fp_line (start -3.685 1.1) (end -3.685 -8.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0412796e-8b12-4e65-800b-1b92f3d79cbe))
(fp_line (start -2.685 -9.03) (end 8.685 -9.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79ccef34-1b0c-4fb0-880e-8242017e6b2c))
(fp_line (start 8.685 -9.03) (end 9.685 -8.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18b3a3b4-72ef-4a30-8fd6-f0cbfb6bd4f5))
(fp_line (start 9.685 -8.03) (end 9.685 1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05231c37-1559-4654-a0da-0825d10dd3fd))
(fp_line (start 9.685 1.1) (end -3.685 1.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7728eae-2eca-4d71-a98b-bd140e724799))
(fp_line (start -4.08 -9.42) (end 10.07 -9.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1b9f7d7-a509-449f-953d-88dce0633690))
(fp_line (start -4.08 1.49) (end -4.08 -9.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0110d7b7-a02a-4b28-8b70-07e17fdd1bf3))
(fp_line (start -1.25 1.49) (end -4.08 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b376ca3-fa3b-41c2-87a2-175d19ef53bd))
(fp_line (start -1.25 4.25) (end -1.25 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a53ff39-8a7d-4158-ba85-d63966de3907))
(fp_line (start 7.25 1.49) (end 7.25 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9e0f67d-07be-43b1-a058-66186f36420a))
(fp_line (start 7.25 4.25) (end -1.25 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 246ecef2-a3b3-420b-96dd-f8289297fdbf))
(fp_line (start 10.07 -9.42) (end 10.07 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a693f11d-b9a5-4f07-8597-fc5374c58d42))
(fp_line (start 10.07 1.49) (end 7.25 1.49)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e7ad9109-b31b-4fb5-85a9-7a0af03be7f8))
(fp_line (start -3.575 -7.92) (end -2.575 -8.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07d812d7-373a-400d-b03e-70f27cfb1492))
(fp_line (start -3.575 0.99) (end -3.575 -7.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 13f65abd-e7cf-44f3-97cb-b472e6ad6b2d))
(fp_line (start -2.575 -8.92) (end 8.575 -8.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 570ca271-5537-43fd-8a82-6bb0d382aafa))
(fp_line (start -0.75 0.99) (end 0 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21e48383-87cc-4790-b5dd-c4591b7a3c54))
(fp_line (start 0 0) (end 0.75 0.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c12e3362-b383-465b-9c97-e3573d3021f2))
(fp_line (start 8.575 -8.92) (end 9.575 -7.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66c8258d-b0bc-431a-b299-cb704ee60757))
(fp_line (start 9.575 -7.92) (end 9.575 0.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c185dd0-652d-4430-9cfd-69ee21ff3d73))
(fp_line (start 9.575 0.99) (end -3.575 0.99)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5615d47e-7de9-44d7-9f5c-6170f9c20f72))
(pad "" np_thru_hole circle (at 3 -4.32 180) (size 3 3) (drill 3) (layers "*.Cu" "*.Mask") (tstamp e67ef71f-a1d4-4ca6-a65d-a98d94e0068e))
(pad "1" thru_hole roundrect (at 0 0 180) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.166667)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 610c9652-3339-4b56-8deb-9bea6ef68243))
(pad "2" thru_hole circle (at 3 0 180) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 28ee4218-c4f7-4fe7-bf8a-c5fe155a2097))
(pad "3" thru_hole circle (at 6 0 180) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 29 "CAN-") (pinfunction "Pin_3") (pintype "passive") (tstamp c3cc267e-151b-4b86-bacd-ffb56e349e3e))
(pad "4" thru_hole circle (at 0 3 180) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 22 "VDC") (pinfunction "Pin_4") (pintype "passive") (tstamp eb5ce4df-5dfd-4e27-a593-65b294e93909))
(pad "5" thru_hole circle (at 3 3 180) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "+VSW") (pinfunction "Pin_5") (pintype "passive") (tstamp 57ecc655-ed22-4a93-bc59-a43e6b75c7f2))
(pad "6" thru_hole circle (at 6 3 180) (size 1.5 1.5) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 28 "CAN+") (pinfunction "Pin_6") (pintype "passive") (tstamp ebef0794-e9fa-4212-bb8e-dd32c084f0d6))
(model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_Micro-Fit_3.0_43045-0600_2x03_P3.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Molex:Molex_Micro-Fit_3.0_43045-0400_2x02_P3.00mm_Horizontal" (layer "F.Cu")
(tstamp c2d6363f-46cf-42fd-ad11-3b4269d00f48)
(at 101.95 124.53 180)
(descr "Molex Micro-Fit 3.0 Connector System, 43045-0400 (alternative finishes: 43045-040x), 2 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator")
(tags "connector Molex Micro-Fit_3.0 horizontal")
(property "LCSC#" "C122413")
(property "Manufacturer" "MOLEX")
(property "Part#" "0430450400")
(property "Sheetfile" "frodo_power_module.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/7528dfd5-fd78-4e93-aedb-c01fbd6c399a")
(attr through_hole)
(fp_text reference "J3" (at 5.45 2.53) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb4c0f7f-6267-4df3-a8b0-6ece33062c0c)
)
(fp_text value "Molex MicroFit 2x2" (at 1.5 5.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 527231e1-13db-4245-8e23-2b983fb0464c)
)
(fp_text user "SW" (at 8.45 -3.67 270 unlocked) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.25)))
(tstamp 9cd933e6-2bb7-4d43-92d9-0de2697cc3f6)
)
(fp_text user "${REFERENCE}" (at 1.5 -8.22) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e202dd86-a267-4dc2-8120-dd8f64e0bb6d)