-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESC_R1.kicad_pcb
15062 lines (14821 loc) · 946 KB
/
ESC_R1.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.61)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" power)
(2 "In2.Cu" power)
(31 "B.Cu" signal)
(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)
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.05))
(layer "dielectric 1" (type "prepreg") (thickness 0.11) (material "2116") (epsilon_r 4.29) (loss_tangent 0))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "core") (thickness 1.2) (material "FR4") (epsilon_r 4.6) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "prepreg") (thickness 0.11) (material "2116") (epsilon_r 4.29) (loss_tangent 0))
(layer "B.Cu" (type "copper") (thickness 0.05))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "HAL lead-free")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.08)
(solder_mask_min_width 0.15)
(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 "+BATT")
(net 2 "GND")
(net 3 "+12V")
(net 4 "+3.3V")
(net 5 "+3.3VA")
(net 6 "+5V")
(net 7 "unconnected-(J401-SBU1-PadA8)")
(net 8 "unconnected-(J401-SBU2-PadB8)")
(net 9 "unconnected-(U103-NC-Pad4)")
(net 10 "unconnected-(U201-PC13-Pad2)")
(net 11 "unconnected-(U201-PC14-Pad3)")
(net 12 "unconnected-(U201-PC15-Pad4)")
(net 13 "unconnected-(U201-PC0-Pad8)")
(net 14 "unconnected-(U201-PC1-Pad9)")
(net 15 "unconnected-(U201-PC2-Pad10)")
(net 16 "unconnected-(U201-PC3-Pad11)")
(net 17 "unconnected-(U201-PC4-Pad24)")
(net 18 "/[1] Power Supply/FILT_VIN_12V")
(net 19 "unconnected-(U201-PB2-Pad28)")
(net 20 "Net-(U101-VCC)")
(net 21 "unconnected-(U201-PB12-Pad33)")
(net 22 "unconnected-(U201-PC6-Pad37)")
(net 23 "unconnected-(U201-PC7-Pad38)")
(net 24 "unconnected-(U201-PC8-Pad39)")
(net 25 "unconnected-(U201-PC9-Pad40)")
(net 26 "USB_D-")
(net 27 "USB_D+")
(net 28 "/[1] Power Supply/VSW_12V")
(net 29 "Net-(U101-BOOT)")
(net 30 "/[1] Power Supply/FILT_VIN_5V")
(net 31 "Net-(U102-VCC)")
(net 32 "unconnected-(U201-PD2-Pad54)")
(net 33 "unconnected-(U201-PB4-Pad56)")
(net 34 "CAN_RXD")
(net 35 "CAN_TXD")
(net 36 "/[5] 3-Phase Bridge - Phase A/PH_IR_HIN")
(net 37 "/[5] 3-Phase Bridge - Phase A/PH_IR_LIN")
(net 38 "/[5] 3-Phase Bridge - Phase A/PH_VB")
(net 39 "/[5] 3-Phase Bridge - Phase A/PH_CIN+")
(net 40 "/[6] 3-Phase Bridge - Phase B/PH_IR_HIN")
(net 41 "/[6] 3-Phase Bridge - Phase B/PH_IR_LIN")
(net 42 "/[6] 3-Phase Bridge - Phase B/PH_VB")
(net 43 "/[6] 3-Phase Bridge - Phase B/PH_CIN+")
(net 44 "/[7] 3-Phase Bridge - Phase C/PH_IR_HIN")
(net 45 "/[7] 3-Phase Bridge - Phase C/PH_IR_LIN")
(net 46 "/[7] 3-Phase Bridge - Phase C/PH_CIN+")
(net 47 "/[7] 3-Phase Bridge - Phase C/PH_VB")
(net 48 "/[5] 3-Phase Bridge - Phase A/PH_VRD")
(net 49 "/[6] 3-Phase Bridge - Phase B/PH_VRD")
(net 50 "/[7] 3-Phase Bridge - Phase C/PH_VRD")
(net 51 "/[5] 3-Phase Bridge - Phase A/PH_HOUT_G")
(net 52 "/[5] 3-Phase Bridge - Phase A/PH_LOUT_G")
(net 53 "/[6] 3-Phase Bridge - Phase B/PH_HOUT_G")
(net 54 "/[6] 3-Phase Bridge - Phase B/PH_LOUT_G")
(net 55 "/[7] 3-Phase Bridge - Phase C/PH_HOUT_G")
(net 56 "/[7] 3-Phase Bridge - Phase C/PH_LOUT_G")
(net 57 "/[5] 3-Phase Bridge - Phase A/PH_HOUT")
(net 58 "/[5] 3-Phase Bridge - Phase A/PH_LOUT")
(net 59 "/[5] 3-Phase Bridge - Phase A/PH_CURR")
(net 60 "/[6] 3-Phase Bridge - Phase B/PH_HOUT")
(net 61 "/[6] 3-Phase Bridge - Phase B/PH_LOUT")
(net 62 "/[6] 3-Phase Bridge - Phase B/PH_CURR")
(net 63 "/[7] 3-Phase Bridge - Phase C/PH_HOUT")
(net 64 "/[7] 3-Phase Bridge - Phase C/PH_LOUT")
(net 65 "/[7] 3-Phase Bridge - Phase C/PH_CURR")
(net 66 "/[1] Power Supply/VSW_5V")
(net 67 "/[2] MCU/NRST")
(net 68 "/[2] MCU/VCAP1")
(net 69 "/[2] MCU/HSE_IN")
(net 70 "/[2] MCU/XTAL_IN")
(net 71 "/[2] MCU/TEMP")
(net 72 "/[4] USB/USB_VBUS")
(net 73 "/[2] MCU/PHA_VSDIV")
(net 74 "/[2] MCU/PHA_CURR_FILT")
(net 75 "/[2] MCU/PHB_VSDIV")
(net 76 "/[2] MCU/PHB_CURR_FILT")
(net 77 "/[2] MCU/PHC_VSDIV")
(net 78 "/[2] MCU/PHC_CURR_FILT")
(net 79 "/[1] Power Supply/5V_LED_K")
(net 80 "/[1] Power Supply/3V3_LED_K")
(net 81 "/[2] MCU/RGB_B")
(net 82 "/[2] MCU/RGB_G")
(net 83 "/[2] MCU/RGB_R")
(net 84 "/[2] MCU/TC_NRST")
(net 85 "/[2] MCU/TC_SYS_SWDCLK")
(net 86 "/[2] MCU/TC_SYS_SWDIO")
(net 87 "/[2] MCU/TC_SYS_SWO")
(net 88 "/[2] MCU/ENC_Z")
(net 89 "/[2] MCU/ENC_B")
(net 90 "/[2] MCU/ENC_A")
(net 91 "/[3] CAN/CAN+")
(net 92 "/[3] CAN/CAN-")
(net 93 "/[4] USB/USB_CONN_D-")
(net 94 "/[4] USB/USB_CONN_D+")
(net 95 "/[4] USB/USB_CC2")
(net 96 "/[4] USB/USB_CC1")
(net 97 "/[2] MCU/BOOT0")
(net 98 "/[2] MCU/HSE_OUT")
(net 99 "/[2] MCU/LED_R")
(net 100 "/[2] MCU/LED_G")
(net 101 "/[2] MCU/LED_B")
(net 102 "/[2] MCU/SYS_SWDCLK")
(net 103 "/[2] MCU/SYS_SWDIO")
(net 104 "/[2] MCU/SYS_SWO")
(net 105 "/[2] MCU/PHA_HIN")
(net 106 "/[2] MCU/PHA_LIN")
(net 107 "/[2] MCU/PHB_HIN")
(net 108 "/[2] MCU/PHB_LIN")
(net 109 "/[2] MCU/PHC_HIN")
(net 110 "/[2] MCU/PHC_LIN")
(net 111 "Net-(U102-BOOT)")
(net 112 "/[1] Power Supply/VFB_5V")
(net 113 "/[1] Power Supply/FILT_VIN_3V3A")
(net 114 "/[1] Power Supply/FILT_VIN_3V3")
(net 115 "/[5] 3-Phase Bridge - Phase A/PH_VS")
(net 116 "/[6] 3-Phase Bridge - Phase B/PH_VS")
(net 117 "/[7] 3-Phase Bridge - Phase C/PH_VS")
(net 118 "Net-(D202-CH1)")
(net 119 "Net-(D202-CH2)")
(net 120 "Net-(D202-CH3)")
(net 121 "Net-(D204-IO1)")
(net 122 "Net-(D204-IO2)")
(net 123 "Net-(D204-IO3)")
(net 124 "Net-(D204-IO4)")
(net 125 "unconnected-(D205-CH1-Pad1)")
(net 126 "Net-(D205-CH2)")
(net 127 "Net-(D205-CH3)")
(net 128 "/[1] Power Supply/VFB_12V")
(net 129 "/[2] MCU/SPI_CLK")
(net 130 "/[2] MCU/SPI_MISO")
(net 131 "/[2] MCU/SPI_MOSI")
(net 132 "/[2] MCU/SPI_CS")
(net 133 "/[2] MCU/USART_TX")
(net 134 "/[2] MCU/USART_RX")
(net 135 "unconnected-(U101-PG-Pad8)")
(net 136 "unconnected-(U102-PG-Pad8)")
(net 137 "unconnected-(U104-NC-Pad4)")
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 00d2fdc3-6cb7-4180-93b7-d05fe4a39717)
(at 96.6724 137.16 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Link" "https://www.digikey.de/en/products/detail/murata-electronics/GRM188R71A225KE15D/1033256")
(property "Sheetfile" "1_power_supply.kicad_sch")
(property "Sheetname" "[1] Power Supply")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/bab0431c-ca33-4c57-9dbe-00ccaf05ca0f/42ea8581-2889-4129-bde2-8bd358282fb9")
(attr smd)
(fp_text reference "C121" (at -2.413 -1.0668 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bdadc4ac-a71d-45b8-8fea-d01dc095f93b)
)
(fp_text value "2u2 10V" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6910f4c2-c466-45e3-a4e3-7b4f2e856714)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 3db9ffec-8008-4c77-915e-35e303b398ad)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ceb1ac2-eb35-4db6-a5ba-06c60c24dbef))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7fc8944e-5f6e-46e0-96a4-084d4dd2adf4))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d087afbc-ae5e-4443-9adc-27dbbc39b091))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65e56004-509f-47b7-b5fb-f17adf1c6637))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 75000643-4d13-4712-9432-09284bac83e2))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29168b22-2b1b-4807-be15-147eb1b5d329))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d4bcd7b-8f5f-4d6e-ad15-bc18b5fa2aa8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ddba716a-0bd4-4bde-91ca-4d073f2ebe14))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 008cca87-eabd-4575-876f-9c2c647054f0))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9b9f2d4-2285-4c79-8937-bc8e9718c30c))
(pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3.3VA") (pintype "passive") (tstamp 071151dd-2261-4fd2-af1f-bc7ea38c7519))
(pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 934583f9-86fb-4919-a0a5-7704586085ef))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:TDSON-8-1" (layer "F.Cu")
(tstamp 0148ab0f-4c82-47fa-8059-f6e975266fb8)
(at 208.5 76.52424)
(descr "Power MOSFET package, TDSON-8-1, 5.15x5.9mm (https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/)")
(tags "tdson ")
(property "Link" "https://www.digikey.de/en/products/detail/infineon-technologies/BSC072N08NS5ATMA1/5959908")
(property "Sheetfile" "inverter_phase.kicad_sch")
(property "Sheetname" "[6] 3-Phase Bridge - Phase B")
(property "ki_description" "74A Id, 80V Vds, OptiMOS N-Channel Power MOSFET, 7.2mOhm Ron, Qg (typ) 24.0nC, PG-TDSON-8")
(property "ki_keywords" "OptiMOS Power MOSFET N-MOS")
(path "/fe2fcbfe-ce2b-4fee-9243-f26c3dcbcd78/a4b2fd0b-1bcc-490c-9369-79a1d2021971")
(attr smd)
(fp_text reference "Q602" (at 1.7824 3.7338) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 813f0f72-9a6e-4657-913f-00161f9468b4)
)
(fp_text value "BSC072N08NS5" (at 0 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 316c2e0e-dec1-48e6-9464-c4c101570383)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed8e9fb4-f377-4896-8724-46493aa16197)
)
(fp_line (start -3.06 2.335) (end -3.06 2.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7ca25fb-66f4-4a5d-88b0-70e728eba128))
(fp_line (start 3.06 -2.685) (end -3.06 -2.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e0f725c-61cd-458f-bd3c-695715aca856))
(fp_line (start 3.06 -2.385) (end 3.06 -2.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5fe173d0-2630-48ff-a85b-eb1d1e78cfc2))
(fp_line (start 3.06 2.385) (end 3.06 2.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de4c4035-b40d-4f0f-bf55-ee974fadf463))
(fp_line (start 3.06 2.685) (end -3.06 2.685)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbeccc63-c760-42a0-b8ea-05247294c1db))
(fp_line (start -3.58 -2.83) (end -3.58 2.83)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a8af5c5-b676-4cbd-908d-2627fc03f240))
(fp_line (start -3.58 2.83) (end 3.58 2.83)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f4a8f59-1bc9-4836-80a6-ac502f1ca657))
(fp_line (start 3.58 -2.83) (end -3.58 -2.83)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f92862f7-d9ea-4ea4-bd9d-d3afdd6cfc01))
(fp_line (start 3.58 2.83) (end 3.58 -2.83)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95488047-5d32-4f2b-8ce9-18f8e0a4dda4))
(fp_line (start -2.95 2.575) (end -2.95 -1.575)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d38c6022-98f8-4ecc-b2e2-6b12273840e5))
(fp_line (start -1.95 -2.575) (end -2.95 -1.575)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98049f18-aa8f-47e6-ad87-b22e04fbdc06))
(fp_line (start -1.95 -2.575) (end 2.95 -2.575)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f543a6b4-163d-4796-8af6-550cd248070b))
(fp_line (start 2.95 -2.575) (end 2.95 2.575)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55ec339b-650b-4daf-8925-becd99da7e8f))
(fp_line (start 2.95 2.575) (end -2.95 2.575)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d53a446-7921-4da1-8429-38b1866c1a69))
(pad "" smd rect (at -0.2 -0.85) (size 1.5 1.5) (layers "F.Paste") (tstamp dfb6bc16-d88b-40e1-ab4e-5fb5fe993d97))
(pad "" smd rect (at -0.2 0.85) (size 1.5 1.5) (layers "F.Paste") (tstamp b708d0c3-8020-4751-a0c1-aecf58b12456))
(pad "" smd custom (at 0.65 0) (size 3.75 4.41) (layers "F.Mask")
(zone_connect 0) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 2.675 -1.605)
(xy 1.875 -1.605)
(xy 1.875 -2.205)
(xy 2.675 -2.205)
)
(width 0) (fill yes))
(gr_poly
(pts
(xy 2.675 -0.335)
(xy 1.875 -0.335)
(xy 1.875 -0.935)
(xy 2.675 -0.935)
)
(width 0) (fill yes))
(gr_poly
(pts
(xy 2.675 0.935)
(xy 1.875 0.935)
(xy 1.875 0.335)
(xy 2.675 0.335)
)
(width 0) (fill yes))
(gr_poly
(pts
(xy 2.675 2.205)
(xy 1.875 2.205)
(xy 1.875 1.605)
(xy 2.675 1.605)
)
(width 0) (fill yes))
) (tstamp 9d212922-683b-49a5-8020-3ccb15e82813))
(pad "" smd rect (at 1.5 -0.85) (size 1.5 1.5) (layers "F.Paste") (tstamp 809f3458-5b58-42f8-9904-c36600333e47))
(pad "" smd rect (at 1.5 0.85) (size 1.5 1.5) (layers "F.Paste") (tstamp ff89d9c0-ea90-4370-af2a-09a30a1ccb14))
(pad "" smd rect (at 2.905 -1.905) (size 0.75 0.5) (layers "F.Paste") (tstamp fab7dd46-58ee-40ee-97ca-6326ac67296e))
(pad "" smd rect (at 2.905 -0.635) (size 0.75 0.5) (layers "F.Paste") (tstamp 4900756e-97bb-4295-82e6-e5c1ce05bbc5))
(pad "" smd rect (at 2.905 0.635) (size 0.75 0.5) (layers "F.Paste") (tstamp 739fa431-3b0a-49f0-a445-d9f12dc9762e))
(pad "" smd rect (at 2.905 1.905) (size 0.75 0.5) (layers "F.Paste") (tstamp 310b269d-cc47-44d9-ad61-c45864494dce))
(pad "1" smd rect (at -2.9 -1.905) (size 0.85 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "/[6] 3-Phase Bridge - Phase B/PH_CIN+") (pinfunction "S") (pintype "passive") (solder_paste_margin -0.05) (tstamp 56316d00-f80b-4f90-bdc8-c3cc6cf93f73))
(pad "2" smd rect (at -2.9 -0.635) (size 0.85 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "/[6] 3-Phase Bridge - Phase B/PH_CIN+") (pinfunction "S") (pintype "passive") (solder_paste_margin -0.05) (tstamp 44f58abd-5360-4ff7-97df-ab5fd73dc476))
(pad "3" smd rect (at -2.9 0.635) (size 0.85 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "/[6] 3-Phase Bridge - Phase B/PH_CIN+") (pinfunction "S") (pintype "passive") (solder_paste_margin -0.05) (tstamp 94d34791-1272-4b31-ba0a-5cb5bbe3dabd))
(pad "4" smd rect (at -2.9 1.905) (size 0.85 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 54 "/[6] 3-Phase Bridge - Phase B/PH_LOUT_G") (pinfunction "G") (pintype "passive") (solder_paste_margin -0.05) (tstamp 074a8c56-fe56-45b0-aaaa-b5127903818c))
(pad "5" smd rect (at 1.05 0) (size 4.55 4.41) (layers "F.Cu")
(net 116 "/[6] 3-Phase Bridge - Phase B/PH_VS") (pinfunction "D") (pintype "passive") (tstamp e066ed3e-26b5-47ed-a020-e6d17c86bf89))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/TDSON-8-1.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "F.Cu")
(tstamp 01fbf88a-b23b-46b0-ac61-5451ec2539ac)
(at 184.5818 88.35584 -90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "inverter_phase.kicad_sch")
(property "Sheetname" "[5] 3-Phase Bridge - Phase A")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/a82201a8-9dca-4a1d-828e-2de3fb3c1adb/bd4cc266-90fd-4643-8eac-69e3639ba4ff")
(attr smd)
(fp_text reference "C504" (at 1.905 1.3716 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69caef82-2940-4b5f-a09d-9620c7209626)
)
(fp_text value "100n" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a8a47e7-5a7f-4e31-b069-44570b14804d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 77fc2e12-feff-48bf-a47e-d7d17e20a4bc)
)
(fp_line (start -0.115835 -0.36) (end 0.115835 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c598ee7-012d-430d-8243-1aa4d8f2278b))
(fp_line (start -0.115835 0.36) (end 0.115835 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b83145e-94e9-4a94-9e57-cf07e5053fdc))
(fp_line (start -1.08 -0.46) (end 1.08 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8965407-f2ef-49a6-9c4a-e225ada6d78b))
(fp_line (start -1.08 0.46) (end -1.08 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3196f691-f8bd-4e49-aeed-9fa885aa251c))
(fp_line (start 1.08 -0.46) (end 1.08 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42b45ed8-372a-4032-86e7-a5aa9ab1d225))
(fp_line (start 1.08 0.46) (end -1.08 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77339eca-dca5-4780-b5d4-36ab4f5c0150))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3bc357e5-afa0-4204-acdf-0654e80924ff))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e406f2d-dbb3-4e63-a472-a0cc289c44ab))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0800fe2-6dc4-4a85-9a6d-1f3fe4433ce7))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dca487f8-0954-4d47-a730-2f566a5b8d6c))
(pad "1" smd roundrect (at -0.5675 0 270) (size 0.735 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "/[5] 3-Phase Bridge - Phase A/PH_IR_LIN") (pintype "passive") (tstamp 9dd60da6-16df-4ccf-b253-97d6a3cc056e))
(pad "2" smd roundrect (at 0.5675 0 270) (size 0.735 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 9e56fa69-b2da-4811-affc-4a5add7f952d))
(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_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 02fb081a-f82b-415c-90b3-06d64866818a)
(at 86.46065 83.1088 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Link" "https://www.digikey.de/en/products/detail/murata-electronics/GRM188R71A225KE15D/1033256")
(property "Sheetfile" "2_mcu.kicad_sch")
(property "Sheetname" "[2] MCU")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/52041989-aba3-4113-ba04-ece39669328f/befe60b3-a106-4c33-95ac-f9c4f24a700b")
(attr smd)
(fp_text reference "C211" (at -3.7084 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ab6f4fd-8b3a-481b-875f-aa30a599534f)
)
(fp_text value "2u2 10V" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61dbc137-eb8c-407a-81ee-ab430bbf53d0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp bb2822d5-4625-4495-b601-b05097efa323)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b52a686c-fd69-4e62-9d40-ad28acfe4b29))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c2b6609-91f1-4d9c-99a8-26abc9f6f729))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8909f19-15b9-4245-9be4-ce0c3f43b6ac))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d336537a-617b-403b-8366-9fb94d7da788))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0fecdfe6-1b4a-4e6c-b4ba-6d56b23f546e))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a5d2c95-0a7a-4da8-9e5c-617505770710))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02e75359-7f39-41a7-97fd-7ad5cf6ddc2d))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51976df3-c1fd-4353-b479-b4b784acc22c))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 955f0383-fc57-409f-8370-2a4117365c46))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f158a6f-a8da-479e-a41b-164004ab9472))
(pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 68 "/[2] MCU/VCAP1") (pintype "passive") (tstamp cdf18dbe-5480-474d-b4d4-6d967cb8149f))
(pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 0df89501-7cd5-4b07-afde-b53e7294b343))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (layer "F.Cu")
(tstamp 09cf8ecd-67e1-4e4b-a226-f0303f27525e)
(at 189.3316 52.50754)
(descr "SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Link" "https://www.digikey.de/en/products/detail/infineon-technologies/IR2181SPBF/856520")
(property "Sheetfile" "inverter_phase.kicad_sch")
(property "Sheetname" "[7] 3-Phase Bridge - Phase C")
(property "ki_description" "High and Low Side Driver, 600V, 1.4/1.8A, PDIP-8/SOIC-8")
(property "ki_keywords" "Gate Driver")
(path "/4eb0e494-3187-44db-9d3d-24d2fbf5dea7/cf85ac42-c23e-4ab5-a097-8b1e2e6a4db8")
(attr smd)
(fp_text reference "U701" (at -1.7272 -3.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3aca871-6bfa-46d6-922b-3827ba434b6d)
)
(fp_text value "IR2171S" (at 0 3.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f733e232-54fc-4c2f-9063-deacb9403266)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp 66596c28-e210-4913-bb6d-d0df5e2884e8)
)
(fp_line (start 0 -2.56) (end -3.45 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa6e7ead-88d4-4f11-b990-4c08ce9b2a38))
(fp_line (start 0 -2.56) (end 1.95 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7263114e-0967-4d9b-9d09-58bba28010dd))
(fp_line (start 0 2.56) (end -1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 164ad1fa-9fcc-4167-b33c-819e6d9f538f))
(fp_line (start 0 2.56) (end 1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33e0dfa5-198d-4185-b709-2dd8e7fbe530))
(fp_line (start -3.7 -2.7) (end -3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 46feee4b-4336-4d60-9595-2ea686d74e5a))
(fp_line (start -3.7 2.7) (end 3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e0b1cbc-e37f-490f-bc30-accf1ea82e0e))
(fp_line (start 3.7 -2.7) (end -3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d78f4a3a-ee8d-4c70-90db-43f2d2da1147))
(fp_line (start 3.7 2.7) (end 3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f952b908-0793-49e2-8227-7e85f079107a))
(fp_line (start -1.95 -1.475) (end -0.975 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba9179f3-8d4c-4edf-bdb0-20352ae146e7))
(fp_line (start -1.95 2.45) (end -1.95 -1.475)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5f48a602-f023-45fd-a970-cc05cf912b42))
(fp_line (start -0.975 -2.45) (end 1.95 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1cb70e0c-f32d-47c6-afdc-0c891575acf0))
(fp_line (start 1.95 -2.45) (end 1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 651ef37f-b205-4f74-8bca-6f24dba07539))
(fp_line (start 1.95 2.45) (end -1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fe2f7ced-f00b-45c0-b913-8e61b0864f05))
(pad "1" smd roundrect (at -2.475 -1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "/[7] 3-Phase Bridge - Phase C/PH_IR_HIN") (pinfunction "HIN") (pintype "input") (tstamp c2d8c6db-1a75-4c53-80df-7a97531d3c1c))
(pad "2" smd roundrect (at -2.475 -0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "/[7] 3-Phase Bridge - Phase C/PH_IR_LIN") (pinfunction "LIN") (pintype "input") (tstamp 16ee5847-10e1-42fe-8138-24a882889c1e))
(pad "3" smd roundrect (at -2.475 0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "COM") (pintype "power_in") (tstamp b593e5e7-d02e-4aa2-ad65-0a95d23ff5cd))
(pad "4" smd roundrect (at -2.475 1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 64 "/[7] 3-Phase Bridge - Phase C/PH_LOUT") (pinfunction "LO") (pintype "output") (tstamp 1a6c06e3-6115-4adf-bf47-a16971276c0d))
(pad "5" smd roundrect (at 2.475 1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+12V") (pinfunction "VCC") (pintype "power_in") (tstamp a49d3647-2e6e-42d2-bb4a-472fadf10e78))
(pad "6" smd roundrect (at 2.475 0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 117 "/[7] 3-Phase Bridge - Phase C/PH_VS") (pinfunction "VS") (pintype "passive") (tstamp 755d2766-f9f9-42aa-89e9-3933e55273ae))
(pad "7" smd roundrect (at 2.475 -0.635) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 63 "/[7] 3-Phase Bridge - Phase C/PH_HOUT") (pinfunction "HO") (pintype "output") (tstamp ec129430-1ece-4d62-95e2-4f9f37da7098))
(pad "8" smd roundrect (at 2.475 -1.905) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 47 "/[7] 3-Phase Bridge - Phase C/PH_VB") (pinfunction "VB") (pintype "passive") (tstamp 7e8b2c6f-46a7-4e2d-9f91-51a76258b644))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu")
(tstamp 0c813383-3020-4208-8c8c-fb928b8cb32e)
(at 86.46065 81.4324 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Link" "https://www.digikey.de/en/products/detail/murata-electronics/GRM188R71A225KE15D/1033256")
(property "Sheetfile" "2_mcu.kicad_sch")
(property "Sheetname" "[2] MCU")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/52041989-aba3-4113-ba04-ece39669328f/bfbeea82-fc77-4f85-a0e1-85e0ef55ba57")
(attr smd)
(fp_text reference "C210" (at -3.7027 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 151f38ce-bfd0-4cd7-91b0-73d96a4f49b3)
)
(fp_text value "2u2 10V" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11c5b284-2a2f-4c00-abc5-e41cd7e1d8bf)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 612f1ca1-ced7-4d91-83a9-ef7b303dacf5)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99afdea7-39df-486d-8193-0b7d5bbfa462))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 219bd23b-6b4d-45bf-a7af-df728a7dcc7b))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1c341c3-932e-4e7f-93e5-c4d3d1be1998))
(fp_line (start -1.65 0.73) (end -1.65 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4510a017-ee5f-4ddc-a1cc-ba12f9fd5441))
(fp_line (start 1.65 -0.73) (end 1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0293a202-aade-4f0b-a49e-61a9e32c6beb))
(fp_line (start 1.65 0.73) (end -1.65 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 998a9732-a515-4610-a31a-ca0dd8b3c967))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23b51e86-2974-49ee-bb2b-c44b92d0aa9e))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75a17eba-0219-4bc7-af47-52124e1e4fcb))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ceb40006-d5bd-43be-8708-09854eb6734b))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de703de4-1f83-44c9-94ee-5de85456b897))
(pad "1" smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 68 "/[2] MCU/VCAP1") (pintype "passive") (tstamp 80c9f3fd-4f98-4cc2-9c72-4d3a37cd0849))
(pad "2" smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 8a86888b-b2a9-4b36-846c-3bbecbb7d4d8))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (layer "F.Cu")
(tstamp 0dcb45e0-e8c5-4624-b71a-a5caf9cdef6b)
(at 69.4754 132.6434)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "2_mcu.kicad_sch")
(property "Sheetname" "[2] MCU")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/52041989-aba3-4113-ba04-ece39669328f/972146b0-521f-411a-b6c5-c2e6ed1867ec")
(attr smd)
(fp_text reference "R219" (at 0 -1.17) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8112f429-01ed-4998-a839-c99c00b3e6d3)
)
(fp_text value "50" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3fe6b24e-27ea-4265-b892-86121fc753f6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp ec33c1f9-2c65-4ea5-aa46-c701d4cdfba1)
)
(fp_line (start -0.167621 -0.38) (end 0.167621 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 568b69c5-fc00-4668-970b-70025a8e2999))
(fp_line (start -0.167621 0.38) (end 0.167621 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78475684-1af4-4427-bc13-aa1c874c6bb0))
(fp_line (start -1.1 -0.47) (end 1.1 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dbfe83e0-3637-42db-90d5-3fb0c85c1c5b))
(fp_line (start -1.1 0.47) (end -1.1 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e0997a91-c3e7-46c9-9d19-9b5994934574))
(fp_line (start 1.1 -0.47) (end 1.1 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9cd98e28-bff6-46f1-afac-ac81bc659756))
(fp_line (start 1.1 0.47) (end -1.1 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2636741e-b70d-44ac-a7c4-ba61aae18fc8))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c9abc70-f4d1-4dff-b64c-f3f3126ae747))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1c0a7630-a744-4163-92f6-1facbd5292d4))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26ed6a19-2938-4cde-8e88-a142258254b0))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 022ed02b-65e2-4fd5-99ac-3e75e0296549))
(pad "1" smd roundrect (at -0.5975 0) (size 0.715 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 133 "/[2] MCU/USART_TX") (pintype "passive") (tstamp e8cce4e1-fd97-40ee-bb53-b6b42c53eddd))
(pad "2" smd roundrect (at 0.5975 0) (size 0.715 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 127 "Net-(D205-CH3)") (pintype "passive") (tstamp 801fabea-a6a7-45af-893b-1f3a497d446b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tstamp 0f9556aa-8b2c-4448-91d6-8f25d60eb470)
(at 180.086 75.77404)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(property "Sheetfile" "inverter_phase.kicad_sch")
(property "Sheetname" "[6] 3-Phase Bridge - Phase B")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/fe2fcbfe-ce2b-4fee-9243-f26c3dcbcd78/5c6b06a2-3bbb-4118-be39-abe8cbb9777c")
(attr exclude_from_pos_files)
(fp_text reference "TP603" (at 0 -1.448) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0cf04d74-7d4c-4d21-be87-51ef61795cf4)
)
(fp_text value "GND" (at 0 1.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b143dd07-5483-4c18-941f-2635b2320e68)
)
(fp_text user "${REFERENCE}" (at 0 -1.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0acbb189-dedc-4de2-9f3a-4eb82adafc07)
)
(fp_circle (center 0 0) (end 0 0.7)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5f157e09-b887-48df-96fc-9cb2079443a4))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 13aabd7f-9dba-44cb-b5e1-be35770c470e))
(pad "1" smd circle (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 2bf0f9a9-f96b-4bae-9f31-5d29f91610c5))
)
(footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (layer "F.Cu")
(tstamp 0feb6849-ffc8-403c-a610-3dc446bde17a)
(at 69.4754 134.6334)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "2_mcu.kicad_sch")
(property "Sheetname" "[2] MCU")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/52041989-aba3-4113-ba04-ece39669328f/e06138e3-62f3-4612-a7fb-7e5205f3ae29")
(attr smd)
(fp_text reference "R220" (at 0 -1.17) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78be82bb-a4c1-4003-96cc-6b9f99c21443)
)
(fp_text value "50" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c2baaf1-8596-4e83-a538-df8c5b10c361)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 20f348de-5e3b-4792-9e75-7763e183791c)
)
(fp_line (start -0.167621 -0.38) (end 0.167621 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97348c72-336a-4636-8f7c-542c034e5e01))
(fp_line (start -0.167621 0.38) (end 0.167621 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f413b046-661a-45f9-a3ab-136df677095b))
(fp_line (start -1.1 -0.47) (end 1.1 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67ed4996-1613-4a2e-94ce-b57091c8c7fb))
(fp_line (start -1.1 0.47) (end -1.1 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8f6c6e83-accf-4c43-8af0-dfaa117481ec))
(fp_line (start 1.1 -0.47) (end 1.1 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eff6ff61-9de1-4301-aa51-78d0357c88d3))
(fp_line (start 1.1 0.47) (end -1.1 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0e37f15-edae-4c9d-9ba2-e64e9bec9a0d))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3367718-3fed-4c43-85f0-42205dbe3c10))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1223f288-80a5-4fa5-95a1-154bb4ca8fa2))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53749f56-47b3-4185-888e-85e7c444eade))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 219795dd-c43d-414e-94d8-865916134264))
(pad "1" smd roundrect (at -0.5975 0) (size 0.715 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 134 "/[2] MCU/USART_RX") (pintype "passive") (tstamp 378457c8-db9e-406a-939d-21c0620afae3))
(pad "2" smd roundrect (at 0.5975 0) (size 0.715 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 126 "Net-(D205-CH2)") (pintype "passive") (tstamp 36c31674-160c-4cb0-a40c-4444ddd3e5b5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-6" (layer "F.Cu")
(tstamp 12e3667a-9a95-443c-a44d-c19869ebe067)
(at 73.6754 127.3934)
(descr "SOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Link" "https://www.digikey.de/en/products/detail/stmicroelectronics/esda6v1-5sc6/1037983")
(property "Sheetfile" "2_mcu.kicad_sch")
(property "Sheetname" "[2] MCU")
(property "ki_description" "Quintuple bidirectional transil, Suppressor for ESD protection, 6V1 Breakdown, SOT-23-6")
(property "ki_keywords" "ESD protection suppression transient")
(path "/52041989-aba3-4113-ba04-ece39669328f/00efeaf4-350b-442c-910e-451eeb8e74a4")
(attr smd)
(fp_text reference "D203" (at 0 -2.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf52db33-1937-4d96-8455-279cb0f03700)
)
(fp_text value "ESDA6V1-5SC6" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ac0a983-3027-43e9-acbf-a2aad9b334d4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 50a2eb28-395b-4473-8afd-62e0fc01cb50)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f79f70bd-caab-45e0-a279-7610112013b8))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 143ea1a7-dc81-40c0-a85b-240ec4a73a0f))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4fd91b01-cef6-4306-8716-499b80b15bff))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27845b72-2ecc-4489-b8f7-c1ebcb53b899))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fd05e3d2-03ff-493b-a256-f2a5ba98ba79))
(fp_line (start -2.05 1.7) (end 2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47c7098d-c437-44a7-8e2e-bceee640917a))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a20a6625-14d8-4325-8bc0-5b03f3fb59a1))
(fp_line (start 2.05 1.7) (end 2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9487cc5f-936a-4346-8c8a-5a481318c812))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b20380a-1d47-42d3-ab27-635153601ad8))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0fb9d21-a1d8-4e14-a4e6-e6f48669eba7))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75f75d93-8970-4b96-ac30-76af4718f7d8))
(fp_line (start 0.8 -1.45) (end 0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0de75db4-e2bd-47de-88ff-2a4e501eb8b8))
(fp_line (start 0.8 1.45) (end -0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ce7074a-3d18-43ef-86e1-76254294aa63))
(pad "1" smd roundrect (at -1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 87 "/[2] MCU/TC_SYS_SWO") (pinfunction "IO1") (pintype "passive") (tstamp 7c9b2e2e-66c2-41ae-a188-946646f76f9e))
(pad "2" smd roundrect (at -1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 711e134f-3a0e-44ab-8123-1e26462feb98))
(pad "3" smd roundrect (at -1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 86 "/[2] MCU/TC_SYS_SWDIO") (pinfunction "IO2") (pintype "passive") (tstamp cd72e5de-a942-4fc9-8764-dd12e8347df8))
(pad "4" smd roundrect (at 1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 85 "/[2] MCU/TC_SYS_SWDCLK") (pinfunction "IO3") (pintype "passive") (tstamp 1c59ccf6-21f2-4150-8673-e168b5549606))
(pad "5" smd roundrect (at 1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 84 "/[2] MCU/TC_NRST") (pinfunction "IO4") (pintype "passive") (tstamp 9ebf987d-f701-4eda-acef-10bd387fe1b4))
(pad "6" smd roundrect (at 1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "+3.3V") (pinfunction "IO5") (pintype "passive") (tstamp 9892dff6-5cb6-44e6-89eb-18177bdf7c2e))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-523" (layer "F.Cu")
(tstamp 12f8933c-c59b-4866-8811-ad5f04dd67b5)
(at 195.58 69.83044)
(descr "http://www.diodes.com/datasheets/ap02001.pdf p.144")
(tags "Diode SOD523")
(property "Link" "https://www.digikey.de/en/products/detail/stmicroelectronics/BAT41KFILM/1207023")
(property "Sheetfile" "inverter_phase.kicad_sch")
(property "Sheetname" "[6] 3-Phase Bridge - Phase B")
(property "ki_description" "Schottky diode, small symbol, filled shape")
(property "ki_keywords" "diode Schottky")
(path "/fe2fcbfe-ce2b-4fee-9243-f26c3dcbcd78/42cc317a-1f1e-4b29-a344-94ad13e8f025")
(attr smd)
(fp_text reference "D602" (at 0.0029 1.524) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f380aeca-5af5-4125-a714-6407b1a690ce)
)
(fp_text value "BAT41KFILM" (at 0 1.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b24c5994-1692-41c3-b31a-bb302a7ad949)
)
(fp_text user "${REFERENCE}" (at 0 -1.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aebdbe20-b7b6-4057-9da1-e49676bb5d49)
)
(fp_line (start -1.26 -0.6) (end -1.26 0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15a54e33-6e52-4ee0-a8c9-30f1cc7ba158))
(fp_line (start 0.7 -0.6) (end -1.26 -0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ebae501-5f35-4314-9a79-1f7345dc6c9e))
(fp_line (start 0.7 0.6) (end -1.26 0.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2277456-958d-4050-929a-b1eccef9caa5))
(fp_line (start -1.25 -0.7) (end 1.25 -0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp da456da9-e3e9-4c90-aa11-3b7ec1001411))
(fp_line (start -1.25 0.7) (end -1.25 -0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 579e1fb7-7128-49a2-ab8b-4a2ef75b38f6))
(fp_line (start 1.25 -0.7) (end 1.25 0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3b8b2c0b-f0c5-4c6d-91f0-fb9d875cb9f5))
(fp_line (start 1.25 0.7) (end -1.25 0.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b6b0fec9-830f-4def-ae52-09d95ed9848d))
(fp_line (start -0.65 -0.45) (end 0.65 -0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ccdcf75-c6ac-45d8-b6a9-32ae2485648c))
(fp_line (start -0.65 0.45) (end -0.65 -0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 61637d13-8f0c-48e5-87d2-60aa2a3314de))
(fp_line (start -0.2 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74eeb92a-26e7-4be2-97e1-24a74d3a4d39))
(fp_line (start -0.2 0) (end 0.1 0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 27c9da69-6080-4cf6-b76b-40f74ed3517c))
(fp_line (start -0.2 0.2) (end -0.2 -0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2f4c94e-f86f-4025-bd60-babd8d04fc70))
(fp_line (start 0.1 -0.2) (end -0.2 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04c42d4a-784c-4a8b-8503-d3b3463f1a94))
(fp_line (start 0.1 0) (end 0.25 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 70a68a97-7297-4688-b2e2-e94d72cb231e))
(fp_line (start 0.1 0.2) (end 0.1 -0.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 821f7f31-0510-44d0-b854-00e4d1efe0f0))
(fp_line (start 0.65 -0.45) (end 0.65 0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a27d7ced-71ae-44b5-a1a9-e3d3da8c2314))
(fp_line (start 0.65 0.45) (end -0.65 0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a4781cf4-b22a-4f3d-926c-6fd7f468bc21))
(pad "1" smd roundrect (at -0.7 0 180) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 60 "/[6] 3-Phase Bridge - Phase B/PH_HOUT") (pinfunction "K") (pintype "passive") (tstamp 97577136-f2c2-4809-b458-b409e31bedc7))
(pad "2" smd roundrect (at 0.7 0 180) (size 0.6 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 53 "/[6] 3-Phase Bridge - Phase B/PH_HOUT_G") (pinfunction "A") (pintype "passive") (tstamp b4bb3abf-ad25-4b2c-af43-fe203e31f550))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-523.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:CP_Elec_10x10.5" (layer "F.Cu")
(tstamp 13ffcfb0-e6cf-4d53-954e-84d117ceb736)
(at 227.7364 97.6122)
(descr "SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf")
(tags "capacitor electrolytic")
(property "Link" "https://www.digikey.de/en/products/detail/kemet/A784MS157M1HLAS026/17196105")
(property "Sheetfile" "power_connector.kicad_sch")
(property "Sheetname" "[8] Power - Connectors")
(property "ki_description" "Polarized capacitor, small symbol")
(property "ki_keywords" "cap capacitor")
(path "/a3e35b3c-4638-490f-9346-391194ad4a20/6ab196ab-257c-4fa9-9d0b-ab70e6f236a6")
(attr smd)
(fp_text reference "C801" (at 0 6.731) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 386f44d8-75ed-4806-8a6d-b0903bd5d5c3)
)
(fp_text value "150u" (at 0 6.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ffa9f31-0d20-4bb0-aa6a-2fd43b89ce5b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 013dba18-fc3e-4610-bf4d-554f9d4f89d5)
)
(fp_line (start -6.85 -2.76) (end -5.6 -2.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd2a9b5c-06f5-472d-97e9-26cb4f7ba6e3))
(fp_line (start -6.225 -3.385) (end -6.225 -2.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0a70533-42ed-49d0-a226-d3ddd04bb8ee))
(fp_line (start -5.36 -4.295563) (end -5.36 -1.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02538164-af65-4c0f-bfb9-1422c00c222f))
(fp_line (start -5.36 -4.295563) (end -4.295563 -5.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf91ab03-d377-4c18-8892-1109bb97ece1))
(fp_line (start -5.36 4.295563) (end -5.36 1.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93e90ed0-1a08-4c24-a16d-1fd9d11f4587))
(fp_line (start -5.36 4.295563) (end -4.295563 5.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9357ba4-8b83-4600-bfea-54b07552c2da))
(fp_line (start -4.295563 -5.36) (end 5.36 -5.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b86377a-caeb-408d-a927-315d969e0713))
(fp_line (start -4.295563 5.36) (end 5.36 5.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fecb5d45-c5e6-4845-a049-7372aef5b265))
(fp_line (start 5.36 -5.36) (end 5.36 -1.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb60ca48-c7eb-4bd2-bee1-1844f4ffaee4))
(fp_line (start 5.36 5.36) (end 5.36 1.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03646d59-87e9-4626-b6e7-5fb5e669c7dc))
(fp_line (start -6.65 -1.5) (end -6.65 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b953efe8-ae42-442e-8492-015a1123a5a5))
(fp_line (start -6.65 1.5) (end -5.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 75d921e6-83f3-4e79-a8c7-eaed2777a057))
(fp_line (start -5.5 -4.35) (end -5.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9cf22afa-c8db-4498-b1cc-512bff71cdc8))
(fp_line (start -5.5 -4.35) (end -4.35 -5.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eeb09953-e5a6-48bd-948a-f6af02696c1e))
(fp_line (start -5.5 -1.5) (end -6.65 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3345891-030e-44cb-9a90-452fa0d8d3f3))
(fp_line (start -5.5 1.5) (end -5.5 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6b6ad25-9cbc-4540-9b74-22166bc6e4d7))
(fp_line (start -5.5 4.35) (end -4.35 5.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4a5cb41-37fc-42a0-8611-df40a79cf47b))
(fp_line (start -4.35 -5.5) (end 5.5 -5.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 249ebfc6-002b-4653-be85-9094e4352785))
(fp_line (start -4.35 5.5) (end 5.5 5.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d08a6f7-57f1-4170-9fa3-c5b387407ac8))
(fp_line (start 5.5 -5.5) (end 5.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a6c57b87-7330-43f5-a7ae-fa4d18301207))
(fp_line (start 5.5 -1.5) (end 6.65 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87530933-c488-47c4-a040-049efca47087))
(fp_line (start 5.5 1.5) (end 5.5 5.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 341dc160-55e5-43a4-aff3-5435382d070c))
(fp_line (start 6.65 -1.5) (end 6.65 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f4bf8384-99c4-4768-95e5-36dd7b5df830))
(fp_line (start 6.65 1.5) (end 5.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6314895e-13af-4425-a489-76a0cf4f672f))
(fp_line (start -5.25 -4.25) (end -5.25 4.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f920544a-159f-4546-9107-d8a31dd16314))
(fp_line (start -5.25 -4.25) (end -4.25 -5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a6d7105-d206-49f4-9b85-e030f0f56883))
(fp_line (start -5.25 4.25) (end -4.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9fc8eb77-dbfe-444c-872f-fe11ac6249af))
(fp_line (start -4.558325 -1.7) (end -3.558325 -1.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e6a578a-2dc4-43bd-bff4-49df300a6561))
(fp_line (start -4.25 -5.25) (end 5.25 -5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ccd18098-e404-4b1e-a271-d5c65265679a))
(fp_line (start -4.25 5.25) (end 5.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c35882df-cbc6-42f6-8169-e6e9a728db49))
(fp_line (start -4.058325 -2.2) (end -4.058325 -1.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c72cd40-6a60-4d33-9f1e-7635eaba18bc))
(fp_line (start 5.25 -5.25) (end 5.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 31b8b6d9-e16a-415f-819f-80b0276da2fd))
(fp_circle (center 0 0) (end 5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp b9ae7dd5-f8bf-44f7-ab8d-ec15a012aa98))
(pad "1" smd roundrect (at -4.2 0) (size 4.4 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 1 "+BATT") (pintype "passive") (tstamp e36763e9-ed52-4deb-8232-dc8cc28254b8))
(pad "2" smd roundrect (at 4.2 0) (size 4.4 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 2 "GND") (pintype "passive") (tstamp 79a5087d-4cbb-48cc-9582-ff62c27f0aa4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/CP_Elec_10x10.5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))