forked from antonchromjak/MINI4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mini-vesc.kicad_pcb
8562 lines (8414 loc) · 528 KB
/
mini-vesc.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.6762)
)
(paper "A4" portrait)
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(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 "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.07))
(layer "dielectric 1" (type "prepreg") (thickness 0.2104) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 2" (type "core") (thickness 1.065) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 3" (type "prepreg") (thickness 0.2104) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.07))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "ENIG")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.1)
(aux_axis_origin 68 100)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 false)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "VDD")
(net 2 "VSS")
(net 3 "LI3")
(net 4 "HI3")
(net 5 "+5V")
(net 6 "VAA")
(net 7 "Net-(U5-HB)")
(net 8 "I_{senseW}")
(net 9 "Net-(U5-HOH)")
(net 10 "Net-(U5-LOH)")
(net 11 "V_{senseW}")
(net 12 "/W")
(net 13 "Net-(U6-OUT)")
(net 14 "unconnected-(U6-NC-Pad4)")
(net 15 "/Half Bridge W/Output")
(net 16 "/Half Bridge W/HighGate")
(net 17 "/Half Bridge W/LowGate")
(net 18 "Net-(D1-K)")
(net 19 "Net-(U1-BST)")
(net 20 "SERVO")
(net 21 "VCC")
(net 22 "Net-(U2-PA3(ADC123_IN3))")
(net 23 "TEMP_MOTOR")
(net 24 "Net-(U2-PH0-OSC_IN)")
(net 25 "Net-(U2-VCAP1)")
(net 26 "Net-(U2-VCAP2)")
(net 27 "Net-(U2-NRST)")
(net 28 "Net-(U2-PH1-OSC_OUT)")
(net 29 "Net-(U3-HB)")
(net 30 "I_{senseU}")
(net 31 "Net-(U7-HB)")
(net 32 "/Half Bridge V/Output")
(net 33 "I_{senseV}")
(net 34 "Net-(D2-K)")
(net 35 "LED_GREEN")
(net 36 "Net-(D3-K)")
(net 37 "LED_RED")
(net 38 "/Half Bridge U/HighGate")
(net 39 "/Half Bridge U/LowGate")
(net 40 "/Half Bridge V/HighGate")
(net 41 "/Half Bridge V/LowGate")
(net 42 "Net-(U1-FB)")
(net 43 "EN")
(net 44 "servoi")
(net 45 "Supply_{sense}")
(net 46 "Net-(P2-Pin_4)")
(net 47 "USB-DM")
(net 48 "Net-(P2-Pin_5)")
(net 49 "USB-DP")
(net 50 "Net-(U3-HOH)")
(net 51 "Net-(U3-LOH)")
(net 52 "V_{senseU}")
(net 53 "/U")
(net 54 "Net-(U4-OUT)")
(net 55 "Net-(U7-HOH)")
(net 56 "Net-(U7-LOH)")
(net 57 "V_{senseV}")
(net 58 "/V")
(net 59 "Net-(U8-OUT)")
(net 60 "HI1")
(net 61 "LI1")
(net 62 "unconnected-(U4-NC-Pad4)")
(net 63 "HI2")
(net 64 "LI2")
(net 65 "unconnected-(U8-NC-Pad4)")
(net 66 "HS")
(footprint "Package_SO:ONSemi_SO-8FL_488AA" (layer "F.Cu")
(tstamp 01c89725-500a-4a03-ab54-0bbeac777942)
(at 150.745 60 180)
(descr "ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A https://www.onsemi.com/pub/Collateral/488AA.PDF")
(tags "ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A ")
(property "Manufacturer" "ON Semiconductor")
(property "Sheetfile" "half-bridge.kicad_sch")
(property "Sheetname" "Half Bridge U")
(property "ki_description" "N-MOSFET transistor, gate/drain/source, drain connected to mounting plane")
(property "ki_keywords" "transistor NMOS N-MOS N-MOSFET")
(path "/65afcf9b-32a3-4ef0-8354-6a9f3a5ab200/b73d1baa-a4be-470d-833b-5aad19b95166")
(attr smd)
(fp_text reference "Q1" (at 0 -4) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5364695-62c5-4393-9d78-3c1b4b57cf6d)
)
(fp_text value "NTMFS5C604NLT1G" (at 0 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11116b1c-aa81-4056-8d34-e6eded75c486)
)
(fp_text user "${REFERENCE}" (at 0.04775 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2dc6df14-b608-4a1f-9e50-7b0703a51e41)
)
(fp_line (start -1.11825 -2.56) (end -3.15225 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47dbb3e4-7a66-4142-bf40-556afb94a6cb))
(fp_line (start -1.11825 2.56) (end -2.10325 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ed4e5ab-1919-46ef-8ed8-4fba890a8086))
(fp_line (start 3.07775 -2.56) (end 0.30775 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9435824-a53a-416d-8675-5d581748b37a))
(fp_line (start 3.07775 2.56) (end 0.30775 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f25b62e8-8643-442b-91d4-39f83b82af61))
(fp_line (start 3.10775 -1.27) (end 3.10775 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05a33dfc-e04e-4796-b8ac-416d02109b80))
(fp_line (start -3.5 2.45) (end -3.5 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6031e8b4-b7c4-410e-95b4-a319d0602016))
(fp_line (start -3.25 -2.7) (end -1.11 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f5279c7-f26b-4556-a5ce-75f2c97c041b))
(fp_line (start -3.25 2.7) (end -1.11 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8b75cba-6150-484e-9c99-2eb94d1d6550))
(fp_line (start -1.11 -2.78) (end -1.11 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0bb52c2e-9716-4019-961f-bce89f095995))
(fp_line (start -1.11 2.7) (end -1.11 2.78)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e09b75d2-1d8f-4c8e-b081-4e3c0374473e))
(fp_line (start -0.86 -3.03) (end 0.05 -3.03)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a6b8837-0a0b-4306-afc0-e5fd18b7c6b0))
(fp_line (start -0.86 3.03) (end 0.05 3.03)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e1d426d-9302-45fa-8b2d-46fbddb9394d))
(fp_line (start 0.3 -2.7) (end 0.3 -2.78)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b39ee3db-9bc6-445e-be35-efe251ea81ad))
(fp_line (start 0.3 -2.7) (end 3.25 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87e858d5-3023-4fbf-8a6d-111eaf46e3aa))
(fp_line (start 0.3 2.7) (end 3.25 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 036ef849-57d2-483c-8d3f-81b5eb7ca7b1))
(fp_line (start 0.3 2.78) (end 0.3 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d56288be-d02e-45e6-b397-0342b9b7ce66))
(fp_line (start 3.25 1.28) (end 3.25 -1.28)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 681f622d-b286-455b-b627-80c47f40b43f))
(fp_line (start 3.5 -1.53) (end 3.5 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e227faba-1ad0-48b8-b1a8-472d97ee6672))
(fp_line (start 3.5 2.45) (end 3.5 1.53)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d05370c9-1cf7-40ff-baf8-4bf61182ffea))
(fp_arc (start -3.5 -2.45) (mid -3.426777 -2.626777) (end -3.25 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d104dcdd-3ca3-4f29-9493-8bbf63da16d2))
(fp_arc (start -3.25 2.7) (mid -3.426777 2.626777) (end -3.5 2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 60a5ef88-9a27-48fd-8de2-3dd5724ac9b5))
(fp_arc (start -1.11 -2.78) (mid -1.036777 -2.956777) (end -0.86 -3.03)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb2719f7-5042-4c6f-9739-74e44b311783))
(fp_arc (start -0.86 3.03) (mid -1.036777 2.956777) (end -1.11 2.78)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7435c65e-8269-45ea-a023-8b6698a0d0f2))
(fp_arc (start 0.05 -3.03) (mid 0.226777 -2.956777) (end 0.3 -2.78)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4da8a254-9446-40cd-a825-87cab856826d))
(fp_arc (start 0.3 2.78) (mid 0.226777 2.956777) (end 0.05 3.03)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5008da23-4b85-43a5-a693-bc70dcc6e342))
(fp_arc (start 3.25 -2.7) (mid 3.426777 -2.626777) (end 3.5 -2.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f4ccd5ec-86ed-4047-9bc6-8dd44a0e3195))
(fp_arc (start 3.25 1.28) (mid 3.426777 1.353223) (end 3.5 1.53)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e079542a-ca42-411f-9eef-7c6945feafa2))
(fp_arc (start 3.5 -1.53) (mid 3.426777 -1.353223) (end 3.25 -1.28)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 25ae30e5-95f4-4035-9b70-7a04b8fc1ab0))
(fp_arc (start 3.5 2.45) (mid 3.426777 2.626777) (end 3.25 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 252575ea-b841-41d2-87d4-b6eceb419c7a))
(fp_line (start -2.90225 -1.275) (end -2.90225 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2ebf952-2276-46b4-96d1-74600d8b24b6))
(fp_line (start -1.72725 -2.45) (end -2.90225 -1.275)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 372e0ed0-87b1-4108-9d07-c99f248419cf))
(fp_line (start 2.99775 -2.45) (end -1.72725 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b6bd850f-1597-4199-97fe-327ad630d155))
(fp_line (start 2.99775 -2.45) (end 2.99775 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2799fa19-cc0e-4088-a456-ebc8fda8c600))
(fp_line (start 2.99775 2.45) (end -2.90225 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 952c1b34-ef2b-420b-9fab-38c9ea5e3b10))
(pad "1" smd roundrect (at -2.74725 -1.905 180) (size 1 0.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 66 "HS") (pinfunction "S") (pintype "passive") (tstamp 141c2d4d-de88-4649-8937-2df462e3764a))
(pad "2" smd roundrect (at -2.74725 -0.635 180) (size 1 0.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 66 "HS") (pinfunction "S") (pintype "passive") (tstamp 4c9667d7-86ea-4538-83db-7b2e7e239975))
(pad "3" smd roundrect (at -2.74725 0.635 180) (size 1 0.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 66 "HS") (pinfunction "S") (pintype "passive") (tstamp f9315198-8a74-41ec-bd58-aae400d695d5))
(pad "4" smd roundrect (at -2.74725 1.905 180) (size 1 0.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "/Half Bridge U/HighGate") (pinfunction "G") (pintype "input") (tstamp 47c1c2f6-40ff-499c-9067-5959f09787ba))
(pad "5" smd custom (at 0.745 0 180) (size 4.055 4.56) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "VDD") (pinfunction "D") (pintype "passive") (zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy -0.6975 -2.28)
(xy 2.5025 -2.28)
(xy 2.5025 -1.53)
(xy 1.905 -1.53)
(xy 1.905 1.53)
(xy 2.5025 1.53)
(xy 2.5025 2.28)
(xy -0.6975 2.28)
(xy -0.6975 2.775)
(xy -1.6025 2.775)
(xy -1.6025 -2.775)
(xy -0.6975 -2.775)
)
(width 0) (fill yes))
) (tstamp 073c205c-edaf-4ddb-9222-3ee7fea0b15e))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/ONSemi_SO-8FL_488AA.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")
(tstamp 0426460c-6559-4577-b5a0-cc27ab4bf3ec)
(at 20.365 59.285)
(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 "Sheetfile" "mini-vesc.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/00000000-0000-0000-0000-0000589a56c6")
(attr smd)
(fp_text reference "C14" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 986254a6-55ff-4775-897d-8648df652765)
)
(fp_text value "2.2µF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ff6a747-6844-42de-b150-a031f78c17e3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f257d5b6-1546-42ee-98d8-03246e8bc35f)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9964242e-5734-4808-b0c6-23ff4fae9c4f))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc04deca-ec37-44f2-a93a-75e0e97784d8))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1641476-0bc0-42f9-a4dd-0d053dfdb58e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf4bf6ff-5c05-4ed6-975c-6ff708323a69))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62adfdc6-e0c4-4579-9e71-7312af044e4c))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8270663-0fe3-49dc-90d0-c78c64ff1baf))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fec3eaa8-a764-4ac4-8a7c-d7d74595cae7))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp df3e6c36-2350-420d-bbd2-8e2dfcd89710))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7577894-ac27-46ff-a44a-e9db64fc5ee9))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 460fcdb3-e02f-4db2-9ea1-0a8acb657a1e))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS") (pintype "passive") (tstamp b1008ca9-1790-4ff8-8400-ee35fe3cadae))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(U2-VCAP2)") (pintype "passive") (tstamp f0437ed8-aa7b-4cdd-893f-1c043cd3e800))
(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 "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tstamp 046405d3-8286-4ab4-b7e5-caef423f1413)
(at 129.48 66.6)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Class" "X7R")
(property "Sheetfile" "capacitor-bank.kicad_sch")
(property "Sheetname" "Capacitor Bank")
(property "Voltage" "100V")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/53cb442b-752e-4b92-ae97-9542b4720982/818f19b3-aad7-4852-9c5f-39a07a3b2d98")
(attr smd)
(fp_text reference "C29" (at 0 -1.85) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 426adda7-5b66-4828-8516-2f07a08664e4)
)
(fp_text value "2.2µF" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 111218d8-8289-4941-b785-35debb65d66a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 465bc9bc-9d13-47bf-9c32-803d7808f8ca)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b09de09-3979-424c-a608-052bed18270d))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e639b11b-e421-427b-81eb-6daee46310e4))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29985613-fb77-4485-976b-8e690c1f217d))
(fp_line (start -2.3 1.15) (end -2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 355b1838-2215-408c-8d32-8f1fb31f19b7))
(fp_line (start 2.3 -1.15) (end 2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b8ea87ff-d1ea-4ba7-87d2-3df3c2824454))
(fp_line (start 2.3 1.15) (end -2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b88222e-d23c-4387-897b-37abf1392d68))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71ea15eb-240b-4ddc-a9de-32d43d5e6f68))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a5250da-ef4b-4b06-8cac-fef0b8b456da))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb8071fb-ca60-4576-a8a2-b47a2dc5acdf))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41b00801-a961-47d7-84cb-0b7b6e7dfebe))
(pad "1" smd roundrect (at -1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 1 "VDD") (pintype "passive") (tstamp befef588-bf6f-4850-a321-c18596112091))
(pad "2" smd roundrect (at 1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "VSS") (pintype "passive") (tstamp 41ba96fd-7985-4448-9e01-a26820b4457e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 04e4a09d-05f3-437c-b3cb-6499caa8c051)
(at 20.365 64.305)
(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 "Sheetfile" "mini-vesc.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/00000000-0000-0000-0000-0000589a4e59")
(attr smd)
(fp_text reference "C16" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 796e6716-9df1-4213-8a6c-17b3e7e10d6b)
)
(fp_text value "100nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4ef45f6-8bdb-4cca-878a-8e704042887d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9c9de225-e1b2-40ce-9aaf-325c62968a19)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c118066-bec6-4256-a466-156a521499e6))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0cf5a3d5-2265-4b81-a868-7534b18fcf44))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb78ed3f-ea42-43b8-b0a4-b6f3fdd3d24f))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23fd4021-2ed4-45df-b475-6766c1e8858a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbc9e6f2-c0c0-404c-9636-96980928df44))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e1228fa-7cd3-4483-87eb-a311fab86aba))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3da6ed51-91bc-46d5-9833-35dc12ebc915))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d1caa73-d9c8-40d0-a239-475d6feee6fb))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8188c540-bfe2-4405-b71f-b24ee3069708))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1850fc92-211a-4c7c-a0e8-23445d417d89))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "VAA") (pintype "passive") (tstamp e663dd34-37e6-4735-8239-cd1d8bb11f10))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS") (pintype "passive") (tstamp 71e38402-e145-452e-a04a-daa3544882ad))
(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 "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tstamp 0d1e10d6-f3d8-47b5-bb7a-865b43bbf3fb)
(at 133.98 71 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Class" "X7R")
(property "Sheetfile" "capacitor-bank.kicad_sch")
(property "Sheetname" "Capacitor Bank")
(property "Voltage" "100V")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/53cb442b-752e-4b92-ae97-9542b4720982/6d57259a-37c4-4b4e-b055-81f3447f81fe")
(attr smd)
(fp_text reference "C38" (at 0 -1.85) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ba78860-45d4-4c67-b653-4b1c9e83daf2)
)
(fp_text value "2.2µF" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7cc0aa37-92c5-40a8-90c5-c17657479109)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp c68599ce-8a6a-49ce-8409-a7f7b9f4566e)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2ed010f-9da2-44a4-b9e3-0931d79e7320))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8fce9fee-a21f-4d2d-aa05-1abe88440899))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33edbb47-55bf-4c2d-ba5d-35e34b30b5c3))
(fp_line (start -2.3 1.15) (end -2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b062f31-68d1-4bfb-8519-01b5d6f5f24f))
(fp_line (start 2.3 -1.15) (end 2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20c95d25-1c5c-45ac-a7a7-b45dbed812b6))
(fp_line (start 2.3 1.15) (end -2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a06bd38a-aa61-47f5-87ca-6b8e5aa8c339))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7d62b07-bdbc-4d76-bbd5-0ba648103846))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0c8a108-674f-4797-a6d8-76a8a60062fc))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a4b26cae-6648-4b03-8f85-113284f57b62))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cdc620fb-86dd-4c2d-b810-d7635b03e87f))
(pad "1" smd roundrect (at -1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 1 "VDD") (pintype "passive") (tstamp f2dec024-e4fa-42ad-b547-bf8aa6cd098d))
(pad "2" smd roundrect (at 1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "VSS") (pintype "passive") (tstamp d1b62f0f-b8e8-4f02-bc2a-36dc45da20b7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tstamp 10b5de4c-b46c-4ebf-baa7-dfdf018a2d37)
(at 124.98 64.4 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Class" "X7R")
(property "Sheetfile" "capacitor-bank.kicad_sch")
(property "Sheetname" "Capacitor Bank")
(property "Voltage" "100V")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/53cb442b-752e-4b92-ae97-9542b4720982/3cf5f719-596c-41a4-b599-5ed128f26718")
(attr smd)
(fp_text reference "C21" (at 0 -1.85) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77d5c321-c21d-45e1-b82a-c4730fc0621d)
)
(fp_text value "2.2µF" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 205cf7fa-0d3d-4f3e-9b70-a46f1c1cdb35)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp a74b0bbd-aa72-4ca3-b605-880131945637)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 440517e0-f245-48f2-8573-43b4da202bc5))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 230b858c-5406-4a55-986f-be4591f6edaa))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd9428ff-fb13-482f-83ab-7f3278a6da49))
(fp_line (start -2.3 1.15) (end -2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e8b24a05-c15e-4647-94ed-16f4c1c2985a))
(fp_line (start 2.3 -1.15) (end 2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0035c793-afc4-4e43-b0e1-2a403fcc6d48))
(fp_line (start 2.3 1.15) (end -2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b0459141-f14e-4127-8b32-c1126712bc5e))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5cddfcf-911d-4b5f-98dd-474d69cc4e9a))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 399f1b70-5c1e-4564-a593-504f6259011f))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0103e9c5-797f-4c87-ac5a-302175a5aa03))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0aab79f1-5d11-4d9e-afe5-af2ae0806958))
(pad "1" smd roundrect (at -1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 1 "VDD") (pintype "passive") (tstamp 0bec16a2-0767-4c97-9c46-2149757a426c))
(pad "2" smd roundrect (at 1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "VSS") (pintype "passive") (tstamp 687de6bf-7f23-449b-b0f9-52b85246a8e4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 11d89f4b-f3b0-4041-b1f9-8cc485199e0d)
(at 159.5 61.81 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "half-bridge.kicad_sch")
(property "Sheetname" "Half Bridge U")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/65afcf9b-32a3-4ef0-8354-6a9f3a5ab200/8177fa1d-f328-4955-9911-63ca78439524")
(attr smd)
(fp_text reference "C78" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0ca1b35-b52f-4cba-a9ad-0eafbe08b77e)
)
(fp_text value "4.7nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ff23334c-fe7b-4270-a6a2-521592a89981)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 3def4a87-2c55-4f8a-a465-1195cbac6b88)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e437469-4b9a-4e5e-a924-ec7abfe39a85))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a541ddce-10fa-4f4c-ada6-1cdfc4f7c6fb))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4fc99585-7e8f-4a36-bfcb-8b025cbb6a84))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47936c9c-9659-421c-a404-f8ab261b60ed))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b282df8a-9c1c-422b-a297-9bf483a06929))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3b0c17d2-3a1d-4fe4-abab-462118b1af3c))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9a164695-49f6-4b41-bbd0-be6614c8eab5))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 689fc310-8fd6-4a73-b0a0-5c2840aebf91))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2bcc1de-3ada-4605-a663-6fe48944f73b))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d4656b2-5969-4725-83c0-f4bf4e68ff32))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS") (pintype "passive") (tstamp 169abfab-68b4-4ea5-a08e-6d598a227e9f))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "I_{senseU}") (pintype "passive") (tstamp 8029037a-1a47-46eb-bab6-f52aecb33932))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 13fa8638-5fb3-4f69-9c05-2d374175598d)
(at 143.02 54)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "half-bridge.kicad_sch")
(property "Sheetname" "Half Bridge U")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/65afcf9b-32a3-4ef0-8354-6a9f3a5ab200/cb52b8c8-6da0-4255-a6b8-01cb42c48359")
(attr smd)
(fp_text reference "C75" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 032862d1-4ea7-4f1d-b186-c378b4b543f2)
)
(fp_text value "2.2µF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fcaef71a-a645-486d-a934-2cd96dc5327e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 6c878a65-16ae-4ee9-8362-92672312cd51)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b3e974b-2aac-46d8-9f4a-ac42ba113160))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0ff3a2e-b187-46cf-acc0-6c5fb7f8969c))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b710665b-056c-4292-8fb2-a28083b384e2))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e19234d-bac9-49ea-b8de-6d60791c0a7a))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42d2d77f-4701-4c56-9d89-5b9b4b51b7cc))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bd326da-d576-4ee8-a231-3febc65f0a1c))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45d2e688-25f4-4052-88f7-487f8efbb9d3))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 881ff716-952e-45a8-b7c4-8a1d9ebc1c58))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp df048a2e-6cbb-481f-982a-2cbdd3fde77a))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c816224f-66c9-42e3-9a88-35b244eba484))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pintype "passive") (tstamp 2daa42b6-4eb5-410b-b059-930fef030312))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS") (pintype "passive") (tstamp 801a5bfe-9bfd-4d18-8791-58e8372c2f44))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tstamp 15683cad-2f2d-44ae-8648-5cdc0e57a976)
(at 129.48 73.2)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Class" "X7R")
(property "Sheetfile" "capacitor-bank.kicad_sch")
(property "Sheetname" "Capacitor Bank")
(property "Voltage" "100V")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/53cb442b-752e-4b92-ae97-9542b4720982/31e822b3-c6c0-4372-96bd-5658ae3323fc")
(attr smd)
(fp_text reference "C32" (at 0 -1.85) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52f95944-e352-4f07-9292-d834927f5a1f)
)
(fp_text value "2.2µF" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7cf10cf2-7fd0-4745-9de6-07646c0cbbfa)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 70713553-a252-40b5-bda3-8b59e36bfb04)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5cf24a1f-2455-43d2-9dd2-b9aeb4e548c6))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69dbefdd-6f9e-422f-92f9-f28298b0f000))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp af2cd8f7-7073-45af-8795-0a921b9b8e6f))
(fp_line (start -2.3 1.15) (end -2.3 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 337f4652-3889-4afc-8c39-13a516bfaad8))
(fp_line (start 2.3 -1.15) (end 2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa93821b-9c88-43cb-a970-68a30964bd7d))
(fp_line (start 2.3 1.15) (end -2.3 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce662e24-503e-4dd4-bd58-593e72275288))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7e9429c-f094-4ff4-b565-5c924b09c173))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45d8c67a-ed49-47aa-9453-711431fcfbd0))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98d63f4c-d13e-49e7-91da-39d2a05bc21b))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b6facdb-fb08-4298-bf7e-678d63e70f2a))
(pad "1" smd roundrect (at -1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 1 "VDD") (pintype "passive") (tstamp 19c8ec33-2a56-4b7c-aca8-7e125d378854))
(pad "2" smd roundrect (at 1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "VSS") (pintype "passive") (tstamp a6a1dff4-eeef-4b56-a136-0cee032f8517))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 1a172b9b-8fa0-40f9-9718-9b3558e770ab)
(at 16.355 56.775)
(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 "Sheetfile" "mini-vesc.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/00000000-0000-0000-0000-000059b597d5")
(attr smd)
(fp_text reference "C5" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e749a9b-a533-496a-b1a9-4f6f1cfa665b)
)
(fp_text value "100nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1852e7a5-4406-4a70-bdb2-3e450dddb6f3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8182d5d9-4afb-42d3-b7f1-f86d3ee84483)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f5cb6ad-d93f-438e-9c3b-de4358925625))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44a79873-e6fa-45f7-b0d5-a58144648e26))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06f9f174-ea04-4f55-9c8d-50c4722d8338))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d73dc19-82c4-4d86-9e63-c905d3d96419))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12b089c5-5a9f-4155-ab2f-14d1381062d9))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f432ae31-8b63-41bd-9bf1-0b4c43fa6e32))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f8a2ebe6-cd62-4b93-a98d-bc3f3e63d37c))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3598e06-7b53-4de9-b1dc-b4fa6caaa464))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2de1a9f8-62c0-4040-9a1e-ff74b6dae79d))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a624731-3646-42b4-ac98-84e3df66033f))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "VCC") (pintype "passive") (tstamp 506ff079-dc1d-4416-bcc1-8a1e4ecf1c08))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS") (pintype "passive") (tstamp 1a3b9c57-1030-4fcf-a140-6dfe9035e074))
(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 "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 1b5cf996-4429-4c08-aae1-8c72b16d70f4)
(at 16.355 51.755)
(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 "Sheetfile" "mini-vesc.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/00000000-0000-0000-0000-0000589be34b")
(attr smd)
(fp_text reference "C1" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e95982f8-0293-4532-8a7a-eadef84883a0)
)
(fp_text value "220nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e21c0af-55bd-4a26-8cbd-fa1409904f34)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp caebcc64-a498-4c43-be0b-52fff68dd1c5)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3611583d-869e-40a8-b437-e65c395fd3f8))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf688a8b-9dfb-4017-836c-bc28cd47799a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c4b03cfa-06c0-486f-b66d-a98606f2b833))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eacb16ad-366b-4097-b020-013ef414e58f))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb889a9d-d4e6-4f1c-a5a9-24307731f3ab))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f662a434-50b6-4dfb-99cd-82bc5b227f4f))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ec7b647-d7ca-446b-9fc0-2c1637f7d6f6))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 521eb631-2828-41b8-8c2c-23a3bbfd3edf))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67380bda-7f88-4a1a-8664-d0d660e678c0))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp da79866a-7373-4b5b-9305-24740fb31daa))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(D1-K)") (pintype "passive") (tstamp 85515d8c-29dd-4e52-af9e-771c890b2841))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(U1-BST)") (pintype "passive") (tstamp 79df5924-b3e4-4b42-bec6-63fd36387854))
(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 "Footprints:WSON-10-1EP_4x4mm_P0.8mm_EP2.6x3mm_ThermalVias" (layer "F.Cu")
(tstamp 1e9292d8-0410-47db-a6ce-33dd7af2f862)
(at 140.85 72.99 -90)
(descr "WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2951-n.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "WSON NoLead")
(property "Sheetfile" "half-bridge.kicad_sch")
(property "Sheetname" "Half Bridge W")
(property "ki_description" "Automotive 90-V, 1.2-A, 5-A, Half Bridge GaN Driver")
(property "ki_keywords" "Automotive Half-Bridge Gate Driver")
(attr smd)
(fp_text reference "U5" (at 0 -2.95 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 797982c6-aee4-47b7-8fff-52f12068c531)
)
(fp_text value "LM5113-Q1" (at 0 2.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89012141-c61f-4b7d-891d-4a6fd7c853bb)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8c2700c-38e5-4f9c-9f53-873aa9ed4810)
)
(fp_line (start -2 2.11) (end 2 2.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d076cb7-5bdf-4966-823a-ce78c30f5d27))
(fp_line (start 0 -2.11) (end 2 -2.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5265779-4691-4dc7-8f2e-2a9b476b4dd4))
(fp_line (start -2.62 -2.25) (end -2.62 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 559a1984-3632-4f7a-ab18-1a2cd1779ad7))
(fp_line (start -2.62 2.25) (end 2.62 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 08329d37-b8cf-4910-909a-78e78494a896))
(fp_line (start 2.62 -2.25) (end -2.62 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 987d917b-d924-4e74-82f4-3ac8dfe13df8))
(fp_line (start 2.62 2.25) (end 2.62 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c36fe9ac-8705-480c-bc06-6f5a1ed4b490))
(fp_line (start -2 -1) (end -1 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 88262ea4-9d0b-4eeb-bdcb-f39889f930a9))
(fp_line (start -2 2) (end -2 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41ba029c-4cc1-4fa2-856f-b236081e7709))
(fp_line (start -1 -2) (end 2 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37693b2b-ff93-4b6b-a5fe-1207485809de))
(fp_line (start 2 -2) (end 2 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81def5ab-4e7a-4521-bdec-f65d1d58bc6d))
(fp_line (start 2 2) (end -2 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c595f7f-1d3d-4de3-b068-789b8673b29c))
(pad "" smd roundrect (at -0.65 -0.75 270) (size 1.05 1.21) (layers "F.Paste") (roundrect_rratio 0.238095) (tstamp aeccd40e-8337-4fa1-ad5c-71f55c8dd899))
(pad "" smd roundrect (at -0.65 0.75 270) (size 1.05 1.21) (layers "F.Paste") (roundrect_rratio 0.238095) (tstamp e4e58525-66e8-4cd5-bb43-724f1aefcf8e))
(pad "" smd roundrect (at 0.65 -0.75 270) (size 1.05 1.21) (layers "F.Paste") (roundrect_rratio 0.238095) (tstamp 35c555f0-daa0-42ec-a818-589a6f89eb30))
(pad "" smd roundrect (at 0.65 0.75 270) (size 1.05 1.21) (layers "F.Paste") (roundrect_rratio 0.238095) (tstamp 4a9925a6-9fc3-4280-a320-d72da82dd5ba))
(pad "1" smd roundrect (at -1.9375 -1.6 270) (size 0.875 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pinfunction "V_{dd}") (pintype "power_in") (tstamp 6469e791-83f3-47bc-8f03-861376a64ffb))
(pad "2" smd roundrect (at -1.9375 -0.8 270) (size 0.875 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(U5-HB)") (pinfunction "HB") (pintype "power_in") (tstamp c787d9de-8771-453c-89b6-67b82621c2ea))
(pad "3" smd roundrect (at -1.9375 0 270) (size 0.875 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(U5-HOH)") (pinfunction "HOH") (pintype "output") (tstamp 2566c8cf-6799-4753-bbdf-ae8943cd3e4d))
(pad "4" smd roundrect (at -1.9375 0.8 270) (size 0.875 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/Half Bridge W/HighGate") (pinfunction "HOL") (pintype "output") (tstamp 6e5bdcf1-8a70-426e-a25f-30a33ad575ec))
(pad "5" smd roundrect (at -1.9375 1.6 270) (size 0.875 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/Half Bridge W/Output") (pinfunction "HS") (pintype "power_in") (tstamp 22c348a1-3a52-479e-a84e-f01b87d72539))
(pad "6" smd roundrect (at 1.9375 1.6 270) (size 0.875 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "HI3") (pinfunction "HI") (pintype "input") (tstamp fff25099-40d0-4a18-be15-4533a3630fe9))
(pad "7" smd roundrect (at 1.9375 0.8 270) (size 0.875 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "LI3") (pinfunction "LI") (pintype "input") (tstamp b6a87174-4c5c-4367-87f4-4d36a600f029))
(pad "8" smd roundrect (at 1.9375 0 270) (size 0.875 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS") (pinfunction "V_{ss}") (pintype "power_in") (tstamp e7d57cda-7a37-4f1a-96c9-6529df3704fe))
(pad "9" smd roundrect (at 1.9375 -0.8 270) (size 0.875 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/Half Bridge W/LowGate") (pinfunction "LOL") (pintype "output") (tstamp 0ae61d99-3bf2-4b9f-b95d-d52e3cf61578))
(pad "10" smd roundrect (at 1.9375 -1.6 270) (size 0.875 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(U5-LOH)") (pinfunction "LOH") (pintype "output") (tstamp dcb58052-3868-494d-bd08-9f8b2467d068))
(pad "11" thru_hole circle (at -1.05 -1.25 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "VSS") (pinfunction "EP") (pintype "output") (tstamp e5dbdeed-87c2-422d-89e6-159d4ffc75a6))
(pad "11" thru_hole circle (at -1.05 0 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "VSS") (pinfunction "EP") (pintype "output") (tstamp b09f857f-da96-4855-9bf3-a1114b3aeec9))
(pad "11" thru_hole circle (at -1.05 1.25 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "VSS") (pinfunction "EP") (pintype "output") (tstamp 2257576e-641b-4507-82d0-b0b52b6d9c2a))
(pad "11" thru_hole circle (at 0 -1.25 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "VSS") (pinfunction "EP") (pintype "output") (tstamp 7b294091-13ee-4ed7-a5d5-47473be2d120))
(pad "11" thru_hole circle (at 0 0 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "VSS") (pinfunction "EP") (pintype "output") (tstamp cd4d17d9-e2a7-40a4-9e64-b436e0fae889))
(pad "11" smd rect (at 0 0 270) (size 2.6 3) (layers "F.Cu" "F.Mask")
(net 2 "VSS") (pinfunction "EP") (pintype "output") (tstamp 262f8a0f-942e-4090-9850-ce4f1582d94f))
(pad "11" thru_hole circle (at 0 1.25 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "VSS") (pinfunction "EP") (pintype "output") (tstamp e0b13eff-554f-4cbd-acdf-593941dc2652))
(pad "11" thru_hole circle (at 1.05 -1.25 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "VSS") (pinfunction "EP") (pintype "output") (tstamp b94a765a-2bd8-4996-b1bf-2e5479892de7))
(pad "11" thru_hole circle (at 1.05 0 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "VSS") (pinfunction "EP") (pintype "output") (tstamp 8942b36d-43e9-4170-8ad0-5699e9c62e03))
(pad "11" thru_hole circle (at 1.05 1.25 270) (size 0.5 0.5) (drill 0.2) (layers "*.Cu")
(net 2 "VSS") (pinfunction "EP") (pintype "output") (tstamp a6a2c86e-bc21-436e-8267-c66f1cfc3ba9))
(model "${KIPRJMOD}/libs/3d-models/WSON-10-1EP_4x4mm_P0.8mm_EP2.6x3mm.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tstamp 22ebd042-5de6-4022-b672-25fcb967a6d6)
(at 63.235 52.725)
(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 "Sheetfile" "psu.kicad_sch")
(property "Sheetname" "PSU - Analog")
(property "ki_description" "250mA Low Quiscent Current LDO, 3.3V output, SOT-23")
(property "ki_keywords" "regulator linear ldo")
(path "/c70c1ef2-97a2-4249-b37b-9719b3c7377c/b9d7564b-f03b-4a85-ac47-a86bd254b247")
(attr smd)
(fp_text reference "U10" (at 0 -2.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d3762ad-764d-477d-8028-3b59299c383a)
)
(fp_text value "MCP1700x-330xxTT" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1957ca7-19ff-400d-93b3-51d70c458d7a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp 0b6d4572-8a24-4c9d-9ded-d3ea7752f4af)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74b5016f-1f21-41a8-b298-5d1d915e121a))
(fp_line (start 0 -1.56) (end 0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a65da0c-c8a2-4646-8c2c-a0958422f995))
(fp_line (start 0 1.56) (end -0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2ac9473-04e5-450a-aced-c3320fbcb9d2))
(fp_line (start 0 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c80457d-2c5b-454c-b6e3-88b97936f0d4))
(fp_line (start -1.92 -1.7) (end -1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0dae40b6-1b41-445f-8421-3b7cda9ff98e))
(fp_line (start -1.92 1.7) (end 1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 75fdc5de-5dac-4ca8-8e20-3438592c824f))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41f8a5fa-54ef-412b-904b-c83903914c62))
(fp_line (start 1.92 1.7) (end 1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3525678e-88b6-4e64-89b8-4707c7bfb86f))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4d105715-0d87-4ca2-9f66-5f7f9888f3dc))
(fp_line (start -0.65 1.45) (end -0.65 -1.125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e4911f8-d8b4-42ab-a7fe-98b37ef7bd75))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d62382db-8245-4067-97cd-30b3c4f85bba))
(fp_line (start 0.65 -1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9d7d2e4-dc58-4e5c-b52d-74d90eb89b78))
(fp_line (start 0.65 1.45) (end -0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f76989e-853b-447b-9b5f-c8e692a3e338))
(pad "1" smd roundrect (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS") (pinfunction "GND") (pintype "power_in") (tstamp 960b48e2-a329-4c64-a4e7-32cd85556474))
(pad "2" smd roundrect (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "VAA") (pinfunction "VO") (pintype "power_out") (tstamp 60d5b7ce-f433-488c-b298-84faf553791d))
(pad "3" smd roundrect (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp bb145c4f-7fef-4a0c-92a5-858b9dd972ee))
(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 "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 231e8663-d9bb-4a56-8639-d5b0e6202bc9)
(at 16.355 54.265)
(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 "Sheetfile" "mini-vesc.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/00000000-0000-0000-0000-000058eda960")