-
Notifications
You must be signed in to change notification settings - Fork 0
/
a22verter.kicad_pcb
17169 lines (17100 loc) · 727 KB
/
a22verter.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Purple") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 3" (type "core") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Purple") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "HAL lead-free")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerb/")
)
)
(net 0 "")
(net 1 "unconnected-(U1-Pad1)")
(net 2 "unconnected-(U1-Pad2)")
(net 3 "unconnected-(U1-Pad3)")
(net 4 "unconnected-(U1-Pad4)")
(net 5 "unconnected-(J3-Pad2)")
(net 6 "/mcu/spi1_cs")
(net 7 "unconnected-(U1-Pad42)")
(net 8 "unconnected-(U1-Pad43)")
(net 9 "unconnected-(U1-Pad30)")
(net 10 "unconnected-(U1-Pad31)")
(net 11 "unconnected-(U1-Pad44)")
(net 12 "unconnected-(U1-Pad34)")
(net 13 "unconnected-(U1-Pad37)")
(net 14 "unconnected-(U1-Pad38)")
(net 15 "unconnected-(U1-Pad39)")
(net 16 "unconnected-(U1-Pad40)")
(net 17 "unconnected-(U1-Pad41)")
(net 18 "+3V3")
(net 19 "GND")
(net 20 "Net-(C4-Pad1)")
(net 21 "Net-(C5-Pad1)")
(net 22 "VBUS")
(net 23 "Net-(C12-Pad1)")
(net 24 "/drive/u_sense_line")
(net 25 "Net-(C13-Pad1)")
(net 26 "/drive/v_sense_line")
(net 27 "Net-(C14-Pad1)")
(net 28 "/drive/w_sense_line")
(net 29 "+12V")
(net 30 "Net-(C26-Pad2)")
(net 31 "Net-(C27-Pad1)")
(net 32 "Net-(C27-Pad2)")
(net 33 "Net-(Q1-Pad2)")
(net 34 "Net-(Q2-Pad2)")
(net 35 "Net-(Q3-Pad2)")
(net 36 "Net-(Q4-Pad2)")
(net 37 "Net-(Q5-Pad2)")
(net 38 "Net-(Q6-Pad2)")
(net 39 "Net-(R1-Pad2)")
(net 40 "Net-(R2-Pad1)")
(net 41 "Net-(R3-Pad1)")
(net 42 "Net-(R4-Pad1)")
(net 43 "Net-(R5-Pad1)")
(net 44 "Net-(R6-Pad1)")
(net 45 "Net-(R7-Pad1)")
(net 46 "/drive/u_sense_load")
(net 47 "/drive/v_sense_load")
(net 48 "/drive/w_sense_load")
(net 49 "/drive/sense_vref")
(net 50 "Net-(R13-Pad1)")
(net 51 "Net-(R14-Pad2)")
(net 52 "/mcu/nrst")
(net 53 "/mcu/adc1_in0")
(net 54 "/mcu/adc1_in1")
(net 55 "/mcu/adc1_in2")
(net 56 "/mcu/adc1_in3")
(net 57 "/mcu/spi2_copi")
(net 58 "/mcu/spi1_sck")
(net 59 "/mcu/spi1_cipo")
(net 60 "/mcu/spi1_copi")
(net 61 "/mcu/tim1_ch2n")
(net 62 "/mcu/tim1_ch3n")
(net 63 "/mcu/spi2_cipo")
(net 64 "/mcu/spi2_sck")
(net 65 "/mcu/tim1_ch1n")
(net 66 "/mcu/tim1_ch1")
(net 67 "/mcu/tim1_ch2")
(net 68 "/mcu/tim1_ch3")
(net 69 "/mcu/swdio")
(net 70 "/mcu/swclk")
(net 71 "/mcu/hall_a")
(net 72 "/mcu/hall_b")
(net 73 "/mcu/hall_c")
(net 74 "/mcu/usart1_tx")
(net 75 "/mcu/usart1_rx")
(net 76 "/mcu/i2c1_scl")
(net 77 "/mcu/i2c1_sda")
(net 78 "/mcu/spi2_cs")
(net 79 "GNDA")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 014384ed-1c60-4f7d-b183-19f79a5dc307)
(at 157.51 64.3 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "File: pwr_reg.kicad_sch")
(property "Sheetname" "pwr_reg")
(path "/2fa3d133-7b20-4573-a383-784cba8922cb/72c4a844-a70c-4a52-953a-6d4a9192b975")
(attr smd)
(fp_text reference "C27" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc2e6a12-e7fd-4d90-aaaf-cf8e1b93b45a)
)
(fp_text value "100n" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9d009fe-6978-42cb-a1e2-e825aee79066)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 80a4714c-e36f-401a-b019-738a72f8ac66)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 4eb365f5-a3ca-442e-b579-00e897bb9d19))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 6ebea709-0b6e-4806-856a-d8edf9effbbd))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3ffca3e8-3235-4f7d-8965-6d24e6223533))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 629267af-81db-4967-afd8-bf0ea5da1eaa))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp a1229730-3d87-40b0-86fb-cfe96113c8ea))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dbf1e229-7b7f-4a61-b3e1-cb42ac28d241))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 4057b57c-df98-4898-b0bc-7be8a2a660f2))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 5f94fbf0-585b-401d-ad00-a1c114b23ba9))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6fb3a340-7fbc-4127-8a27-3595aee8f754))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7ad1933a-be04-4139-956b-782f8a21f8e3))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(C27-Pad1)") (pintype "passive") (tstamp 64f6b6cb-ef6a-4f94-870e-614d33070893))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "Net-(C27-Pad2)") (pintype "passive") (tstamp 3b6f0f50-6899-4048-966a-6ea3f114d72b))
(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_1210_3225Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 040b9ffe-9f0d-40b4-b2a6-ad691cacbe99)
(at 164.35 63.35)
(descr "Capacitor SMD 1210 (3225 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" "File: pwr_reg.kicad_sch")
(property "Sheetname" "pwr_reg")
(path "/2fa3d133-7b20-4573-a383-784cba8922cb/e84a194e-6008-4c64-8bc9-71b42f93ae75")
(attr smd)
(fp_text reference "C24" (at 0 -2.3) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7d69ecb-11cd-4e37-8f76-1efac11d8417)
)
(fp_text value "10u" (at 0 2.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78a86ed1-da72-437b-9386-12c0014b8136)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 6e1c9244-445c-46d2-b026-98979e36c14f)
)
(fp_line (start -0.711252 1.36) (end 0.711252 1.36) (layer "F.SilkS") (width 0.12) (tstamp 4d4de20f-b2fa-47f2-b598-a47d6ccd34b0))
(fp_line (start -0.711252 -1.36) (end 0.711252 -1.36) (layer "F.SilkS") (width 0.12) (tstamp 5b2ccb71-efbf-4d94-9fb2-b9cfc9f2ca8c))
(fp_line (start 2.3 -1.6) (end 2.3 1.6) (layer "F.CrtYd") (width 0.05) (tstamp 3dfeb6b4-b57f-4d73-8deb-fa8388348435))
(fp_line (start 2.3 1.6) (end -2.3 1.6) (layer "F.CrtYd") (width 0.05) (tstamp 8d42751f-dc78-4498-9a8a-eec841787455))
(fp_line (start -2.3 -1.6) (end 2.3 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp a241d718-a759-4c3a-ab11-f5c6a87b4084))
(fp_line (start -2.3 1.6) (end -2.3 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp ddc590fe-c78d-46ff-8793-e61b9a10bf2c))
(fp_line (start 1.6 -1.25) (end 1.6 1.25) (layer "F.Fab") (width 0.1) (tstamp 130b43fc-2f34-4f03-aecb-ecadb583b5e1))
(fp_line (start -1.6 -1.25) (end 1.6 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3dfcc4d8-8ca0-4eb0-ad35-e8ae99ece432))
(fp_line (start -1.6 1.25) (end -1.6 -1.25) (layer "F.Fab") (width 0.1) (tstamp 98e77175-5cdd-46b8-8ee8-f7a4b5ec9f00))
(fp_line (start 1.6 1.25) (end -1.6 1.25) (layer "F.Fab") (width 0.1) (tstamp cb7d6e0c-537a-4467-9242-6997110a1247))
(pad "1" smd roundrect (at -1.475 0) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 22 "VBUS") (pintype "passive") (tstamp 031bd1ea-682a-4fac-a741-88ddd62e4c09))
(pad "2" smd roundrect (at 1.475 0) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2173913043)
(net 19 "GND") (pintype "passive") (tstamp 09d1357e-bfd4-405f-b6a2-ce915b973c4c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "a22verter:SOT-583" (layer "F.Cu")
(tedit 0) (tstamp 1dbb4702-1b52-4f6a-bdd4-6b1bfc71db57)
(at 157.31 62.2 180)
(property "Sheetfile" "File: pwr_reg.kicad_sch")
(property "Sheetname" "pwr_reg")
(path "/2fa3d133-7b20-4573-a383-784cba8922cb/9f2794f8-64e4-4dd9-beea-6d6e450703c0")
(attr smd)
(fp_text reference "U7" (at 0.25 -2.25 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eaffd30b-0115-4451-a8b8-063cc1be83ea)
)
(fp_text value "TPS62933" (at 0 1.75 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2deeca6d-a8b4-4999-8c43-b551af25c35b)
)
(fp_text user "${REFERENCE}" (at 0 3.25 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be1c30e9-1d4a-444c-8577-f8dc834e275d)
)
(fp_line (start -0.75 1) (end 0.75 1) (layer "F.SilkS") (width 0.12) (tstamp 15e98c37-47ae-4c9b-8bff-3688b1817d47))
(fp_line (start -0.5 -1.25) (end 0.75 -1.25) (layer "F.SilkS") (width 0.12) (tstamp 2690f653-1d83-4fe8-b9fb-d929d77bb4f1))
(fp_line (start 0.75 -1.25) (end 0.75 -1) (layer "F.SilkS") (width 0.12) (tstamp a3ea707b-3930-4df2-9984-99299b8de2a9))
(fp_line (start -0.75 -1) (end -0.5 -1.25) (layer "F.SilkS") (width 0.12) (tstamp aaad2710-61f6-4ad3-a007-9374ded7ecb5))
(fp_rect (start -1.25 -1.25) (end 1.25 1.25) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 19c68f54-ce9a-4a4b-b2e5-381676278615))
(pad "1" smd roundrect (at -0.75 -0.75 180) (size 0.67 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667)
(net 50 "Net-(R13-Pad1)") (pinfunction "RT") (pintype "input") (tstamp f97e4f3a-cb18-4366-930b-2dae714d2c49))
(pad "2" smd roundrect (at -0.75 -0.25 180) (size 0.67 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667)
(net 22 "VBUS") (pinfunction "EN") (pintype "input") (tstamp 6d3c62dd-8675-448a-b883-b6b9d55ede73))
(pad "3" smd roundrect (at -0.75 0.25 180) (size 0.67 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667)
(net 22 "VBUS") (pinfunction "VIN") (pintype "power_in") (tstamp 617c58be-24ac-4963-aeb8-f28d431e3c73))
(pad "4" smd roundrect (at -0.75 0.75 180) (size 0.67 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2078cbe3-39b6-4532-8bb4-0b7a300e04e9))
(pad "5" smd roundrect (at 0.75 0.75 180) (size 0.67 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667)
(net 32 "Net-(C27-Pad2)") (pinfunction "SW") (pintype "output") (tstamp 9c09e1a2-8d14-452d-90af-14ecf2bf44d7))
(pad "6" smd roundrect (at 0.75 0.25 180) (size 0.67 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667)
(net 31 "Net-(C27-Pad1)") (pinfunction "BST") (pintype "output") (tstamp 1ec908a3-0654-4fbe-8ab0-6b8a5eedeb7a))
(pad "7" smd roundrect (at 0.75 -0.25 180) (size 0.67 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667)
(net 30 "Net-(C26-Pad2)") (pinfunction "SS") (pintype "input") (tstamp 1016110e-b22d-4fa6-8a51-1ea52ada6ea7))
(pad "8" smd roundrect (at 0.75 -0.75 180) (size 0.67 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666666667)
(net 51 "Net-(R14-Pad2)") (pinfunction "FB") (pintype "input") (tstamp 1424275e-0451-499f-9006-a9448e06ff67))
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1e8fcad0-18dc-42a7-a33b-f568107a1ae4)
(at 160.7 63.45 90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "File: pwr_reg.kicad_sch")
(property "Sheetname" "pwr_reg")
(path "/2fa3d133-7b20-4573-a383-784cba8922cb/58c58896-2cb9-43b0-a889-981fa707cf5a")
(attr smd)
(fp_text reference "C25" (at 0.5 -1.45 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2933a15e-f739-4fe2-817c-2e35f38e3da6)
)
(fp_text value "100n" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 737240ee-f509-488b-a481-46925b7acc65)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp e2e45be6-614d-4e42-9f85-26c7c5bf47d6)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp b62dc10c-468c-47bb-aff9-8fac0ecfdbf3))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp fc86fde4-ad94-4066-9ff9-1d6054c42ff2))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 173d1af0-725b-412f-9368-4e04e8ad9ed4))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 245777e2-bfd3-4fe4-8524-b2292b571e91))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 5a89381e-75c9-468b-91fa-7a729c4bc7db))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp c2caf0d1-e02e-4251-b50a-ccafa6c90869))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 0ecad271-7787-457e-a4b1-28cd2789047a))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 4cc764b4-fc95-4728-8c5a-0b8082e87f4d))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 7b35f869-37a0-472f-9e3f-05470fb40484))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp c5225a90-21dd-4fd7-96ed-a662ee5446cc))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "VBUS") (pintype "passive") (tstamp 889ab014-35b5-45f2-84db-18239658cd9f))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GND") (pintype "passive") (tstamp 4f2ef663-93a2-4b0e-9abe-0494ce455f67))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 20263f31-455e-4019-a920-aaea66a51643)
(at 159.2 54)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: drive.kicad_sch")
(property "Sheetname" "drive")
(path "/ab32c3c7-64a9-43e3-8e3d-a7905994fa59/9261fc2a-9ea4-4bde-ade5-5b90f2331064")
(attr smd)
(fp_text reference "R4" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd48c9d9-82c4-4397-9209-d816f1f1d573)
)
(fp_text value "16" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 47195acb-c4da-49d8-9408-e7f613cf1c18)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 2a84e94a-96b2-47c8-8307-d09c43f65a84)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 9e72a1c6-705f-44f4-8cb5-5ad208a8f011))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp d0f54b12-365b-439b-8544-c4d2c712ca87))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 35439aac-45ac-4149-a723-1255a0e79269))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5615adb9-145c-42bb-a3e2-5c4bfd6061fb))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 58b32a39-bddf-4464-886b-7ff29c5404ac))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7b88a22f-c6d7-40d2-bee3-165bb86e5a8b))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 2839dd74-99c3-44da-aa7e-b980d336f32d))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 46ff3515-f221-4500-a8d0-9b061c263080))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 8bb0eed0-e2f3-428b-8cfc-05aec680c078))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp b2b2f5d2-27dd-4848-a14e-a632c15bb8dd))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "Net-(R4-Pad1)") (pintype "passive") (tstamp de9082b7-f555-447d-9e9f-1643e75e0e06))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "Net-(Q3-Pad2)") (pintype "passive") (tstamp 55a07376-3a9d-49bd-808b-88510155b00d))
(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 "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2ae08054-abd6-4312-becd-91c8d89fa208)
(at 157.6 52.1)
(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" "File: drive.kicad_sch")
(property "Sheetname" "drive")
(path "/ab32c3c7-64a9-43e3-8e3d-a7905994fa59/2edd8369-df59-4c75-8847-2d216297fa07")
(attr smd)
(fp_text reference "C12" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21a3dd9a-4cc2-4f63-9de3-3d25532e19de)
)
(fp_text value "100n" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19042542-17b6-45dc-9a61-698492e92de0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 325dd630-48b1-484e-84b9-97228d1446cc)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 83478495-6e05-4357-ad84-a50884c7dc28))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp e31ec5bc-3a69-4b79-b64f-cb0c989fddfa))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 71fe8bb4-a140-458f-9880-d36e0a45d7ca))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ac3af5f9-01a0-477b-a8a7-cd6c11285587))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b7b38dae-1e48-4c8f-9dc2-85dfe507210a))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f2762403-03af-4dc6-94e1-21d8cd4c3c3f))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 395deff0-ba76-41a6-94dd-662ab0d1ab8a))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 39fe48da-5a8c-4f71-bc60-ac28151f47c6))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 693e8492-cd97-4c66-9d95-5e55a0613766))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp e65a8e75-4b20-4e18-a35c-cefcdfe2e4b6))
(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 23 "Net-(C12-Pad1)") (pintype "passive") (tstamp cd820335-783b-4a5b-bd54-6cac90275b39))
(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 24 "/drive/u_sense_line") (pintype "passive") (tstamp aeb0112e-9ebe-4757-9be0-fdcb6920963d))
(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_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2d9d59cf-694b-4ce0-9dad-b7c0927502d7)
(at 153.7 59.5 -135)
(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" "File: mcu.kicad_sch")
(property "Sheetname" "mcu")
(path "/97cdc16e-d340-4a90-b59c-8595446948c8/25b669bf-f808-4953-83a4-9a97373685a6")
(attr smd)
(fp_text reference "C15" (at 0 -1.16 45) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7bf3e033-32fd-4d42-a621-3a79a8192f63)
)
(fp_text value "100n" (at 0 1.16 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1880828a-6a58-4c78-a0c6-8ccf0716a9c2)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 656ba947-be43-41fa-b126-e25eaf4cd4b2)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.12) (tstamp 8268cb50-cc65-4e77-b7af-497af29c1de1))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.12) (tstamp da364829-2515-4685-b7dd-0290962c9813))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 73a73f65-ca70-444d-9f85-ea607b72099c))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 755dfe5b-8224-4a85-926a-1198d69b9d12))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 92bd9dbf-1588-485a-99a4-8246284fc316))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp c6968a87-7211-4456-8e09-0c14cf9c6898))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 545eb0ed-bbc5-403a-b68b-21a7d24c0ad0))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 9a60f434-91ec-4a5a-9e0d-360a31bee364))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp dbabbc00-c093-450c-ba75-840dcdbfff7f))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp f36d2418-ad17-4298-bc19-3bdb3bff3f4c))
(pad "1" smd roundrect (at -0.48 0 225) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 52 "/mcu/nrst") (pintype "passive") (tstamp 921d5ca6-5a7b-4513-9f67-69afb474fc19))
(pad "2" smd roundrect (at 0.48 0 225) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GND") (pintype "passive") (tstamp 066dc763-6f6d-4575-b7d1-4311f2240bcf))
(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 "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 380e15b0-cbc2-4bd8-aa66-51faea1a0858)
(at 152 52.3 -135)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: drive.kicad_sch")
(property "Sheetname" "drive")
(path "/ab32c3c7-64a9-43e3-8e3d-a7905994fa59/1fd77f29-645a-49f7-b1fd-29d7ff048fc0")
(attr smd)
(fp_text reference "R1" (at 0 -1.17 45) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ebbb3f04-2970-409e-b4e0-ceae59f48c57)
)
(fp_text value "0" (at 0 1.17 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 311c387f-3672-4d20-aac4-f387dae72551)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp d4f9ff25-fbb2-4821-8cb3-008bf0057066)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 8c91f027-93ef-4ec8-bc34-f8de0db89e17))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp a8ccb44e-dc12-4a13-a688-9346c8b674a8))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 48f2ea49-63b5-42b5-9747-54888ca0bb48))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 65a518e9-5f2a-4287-b4e8-551a2e98d1d6))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6b84c72e-b71f-4830-bca3-5e07fdf51d81))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp e0c2de19-3e12-4247-b899-a9236987dafd))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 0392b7c9-7672-4916-afaa-71dbf7ece177))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 0f3e535c-7d6f-4257-9007-bbc0d9735f2b))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 1ae5cd11-eee6-47d3-b565-a2608a292ee8))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp bfbe4ecd-430d-4ea0-a124-96e7e970ab21))
(pad "1" smd roundrect (at -0.51 0 225) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GND") (pintype "passive") (tstamp 11d47a01-da0f-43ac-b705-5e61d5a62734))
(pad "2" smd roundrect (at 0.51 0 225) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "Net-(R1-Pad2)") (pintype "passive") (tstamp 691a5494-c43d-4224-83c3-289c2289397f))
(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 "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 38d819d8-127d-4b4e-991c-34f191b72ba8)
(at 159.2 57.9)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: drive.kicad_sch")
(property "Sheetname" "drive")
(path "/ab32c3c7-64a9-43e3-8e3d-a7905994fa59/17e36d26-db8d-4cc9-a8d4-3dc5842fbf80")
(attr smd)
(fp_text reference "R6" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0038767a-5b73-4cc3-856c-dad26e4a3da2)
)
(fp_text value "16" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85a9fa7b-7c7c-496e-b6cd-555d1ef124f7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp b643bd8b-79f9-433c-8f5b-a91d28fc7d12)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 02016fb8-c984-459a-bc98-fc14144e2187))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 56b237d3-9a4c-4f18-bd0d-ab4b9ff1170c))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4f35ead3-7f1e-45d1-a454-6e28d63431bb))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7e3941ac-75dc-47cd-a7ec-5fc3aec6736e))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 992c3db7-1c48-4c9f-84b6-abf8e5aa932a))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp bb3dfb0f-9e74-4f48-85b5-3ecfbe0a28c9))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 02a61012-a71b-49dc-9eb9-171416363365))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 0ce51791-57b5-41fb-a524-30469c468d9b))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 7b8b8d9d-546f-41f7-b674-9c0516964cb7))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp bde7cd4f-9f30-4aa1-92cc-9dc983621c0b))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "Net-(R6-Pad1)") (pintype "passive") (tstamp 09a916b0-b307-4c60-9022-d707598ea22f))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "Net-(Q5-Pad2)") (pintype "passive") (tstamp 0b5924ef-ba9b-438e-88e5-31d600f29fe8))
(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 "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 4113dd8d-17e8-4025-b13c-b8dbbe776915)
(at 159.6 52.1 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: drive.kicad_sch")
(property "Sheetname" "drive")
(path "/ab32c3c7-64a9-43e3-8e3d-a7905994fa59/5090042e-0f08-4dd0-a2fa-82768a63f7ed")
(attr smd)
(fp_text reference "R3" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 47cf750d-cbca-4f67-8b90-e6d15bc4020d)
)
(fp_text value "16" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a1764a8-0b9e-4d1d-95d6-31d21e8402f0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp addb6e26-fc21-4320-b051-135d8ea1cd59)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 4867b900-3460-4726-9b78-6680cd381b42))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp b4528239-34a2-4788-ba4c-38e5d3874c4a))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 30a218ec-4d73-464f-b165-f0068d397611))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 474ed7e4-0311-4793-8857-c151a700e866))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c3c3557a-8236-439a-b938-b1e6aad7672b))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e793066c-1579-4447-98a9-41d3212930f6))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 61738db5-2e4c-4ec0-97f3-70439e624123))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 7b32c805-cd42-4f9f-979f-c9e9ca260d3a))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp c460530e-828c-47a9-aa29-b9d7c0fe245d))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp f829af8b-9c8e-4916-9b06-261992f1b1d9))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "Net-(R3-Pad1)") (pintype "passive") (tstamp 7fb5a6cc-5102-42d9-b0f4-f6480bea29bd))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "Net-(Q2-Pad2)") (pintype "passive") (tstamp b20e0e6b-0d3d-425c-9d5b-70b925c3d32a))
(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_DFN_QFN:VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm" (layer "F.Cu")
(tedit 5DC5F6A8) (tstamp 42f3655a-bd15-40b3-a3cb-e73deb8e0d19)
(at 153.7 55.059655 45)
(descr "VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "VQFN NoLead")
(property "Sheetfile" "File: drive.kicad_sch")
(property "Sheetname" "drive")
(path "/ab32c3c7-64a9-43e3-8e3d-a7905994fa59/6c1df8b8-ecfe-4b88-81c0-713e93a4e347")
(attr smd)
(fp_text reference "U2" (at 0 -3.320001 45) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4a23c52-0e07-4309-a9db-eb0dcea557a4)
)
(fp_text value "DRV8300DRGE" (at 0 3.32 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 309c6673-d18f-4482-9e39-0c734b14b52c)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0eba253f-b4a7-4329-86f3-381dba82e322)
)
(fp_line (start 2.11 -2.11) (end 2.11 -1.635) (layer "F.SilkS") (width 0.12) (tstamp 32f4753d-0504-4875-a90e-3ba6c9b739a2))
(fp_line (start 1.635 2.11) (end 2.11 2.11) (layer "F.SilkS") (width 0.12) (tstamp 4791c3d7-3be4-481a-958d-c1b326e468e4))
(fp_line (start -1.635 2.11) (end -2.11 2.11) (layer "F.SilkS") (width 0.12) (tstamp 58f9c1a1-4af4-44d8-8e5c-a51a57bd4d3f))
(fp_line (start 1.635 -2.11) (end 2.11 -2.11) (layer "F.SilkS") (width 0.12) (tstamp 62ae13b7-9362-4cc5-858a-fc656b8e022a))
(fp_line (start 2.11 2.11) (end 2.11 1.635) (layer "F.SilkS") (width 0.12) (tstamp 6eb7a6c0-d9cf-4434-9825-cc3c2250a2bc))
(fp_line (start -1.635 -2.11) (end -2.11 -2.11) (layer "F.SilkS") (width 0.12) (tstamp a9db87ac-2447-412e-ab96-b24961d67a33))
(fp_line (start -2.11 2.11) (end -2.11 1.635) (layer "F.SilkS") (width 0.12) (tstamp ebd0ac8a-dcdb-4b77-be68-6f5fe5a7e68c))
(fp_line (start -2.62 2.62) (end 2.62 2.62) (layer "F.CrtYd") (width 0.05) (tstamp 5f839f50-13b9-4c90-90c1-990b9077593b))
(fp_line (start 2.62 2.62) (end 2.62 -2.62) (layer "F.CrtYd") (width 0.05) (tstamp d064ae5e-92d4-4e38-8f18-d34855108a50))
(fp_line (start 2.62 -2.62) (end -2.62 -2.62) (layer "F.CrtYd") (width 0.05) (tstamp f8f5da5b-146f-4334-9608-ff7ca4a09ef0))
(fp_line (start -2.62 -2.62) (end -2.62 2.62) (layer "F.CrtYd") (width 0.05) (tstamp fca44567-b4a8-454d-b9f4-58e9a79543e6))
(fp_line (start 2 -2) (end 2 2) (layer "F.Fab") (width 0.1) (tstamp 143d5664-ef1a-4b79-ad8c-38909a3cec97))
(fp_line (start -2 2) (end -2 -1) (layer "F.Fab") (width 0.1) (tstamp 24f432f1-85e1-4f06-8199-a7694a750dfa))
(fp_line (start -1 -2) (end 2 -2) (layer "F.Fab") (width 0.1) (tstamp 5115e984-3980-4480-a3f1-647c365edad9))
(fp_line (start -2 -1) (end -1 -2) (layer "F.Fab") (width 0.1) (tstamp 6b9575ad-617e-4215-9078-8ffc1d5c5990))
(fp_line (start 2 2) (end -2 2) (layer "F.Fab") (width 0.1) (tstamp b83d9c79-1bdd-4dd2-89f5-b1a186509c01))
(pad "" smd roundrect (at 0 -0.82 45) (size 0.66 0.66) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 0cf85b66-06a8-44b2-a349-3f8c8580a75d))
(pad "" smd roundrect (at 0.82 0 45) (size 0.66 0.66) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 1c8c0b2a-f266-4cbf-9b57-829663deef5d))
(pad "" smd roundrect (at -0.82 -0.82 45) (size 0.66 0.66) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 26c1d2e3-1fcf-403b-8a3e-7eff9cf6f40c))
(pad "" smd roundrect (at -0.82 0.82 45) (size 0.66 0.66) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 64bd0af6-7841-4f4a-9751-3a995b05d25f))
(pad "" smd roundrect (at 0 0 45) (size 0.66 0.66) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 9a0bdc44-98bc-4866-827f-74049bd18662))
(pad "" smd roundrect (at 0.82 0.82 45) (size 0.66 0.66) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 9ace2f9f-062f-4758-b450-41a87086f953))
(pad "" smd roundrect (at 0 0.82 45) (size 0.66 0.66) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp af919add-d043-49f1-a4ad-0ab59170893e))
(pad "" smd roundrect (at 0.82 -0.82 45) (size 0.66 0.66) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp e59edc92-4d83-4797-b5d6-72ff4bcf23f1))
(pad "" smd roundrect (at -0.82 0 45) (size 0.66 0.66) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp ef5734cb-3589-4c6e-ac3d-0af743d95a42))
(pad "1" smd roundrect (at -1.9875 -1.25 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 65 "/mcu/tim1_ch1n") (pinfunction "INLA") (pintype "input") (tstamp 97557f2b-bc6e-459b-9f19-b4ff81b4f1d6))
(pad "2" smd roundrect (at -1.9875 -0.75 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 61 "/mcu/tim1_ch2n") (pinfunction "INLB") (pintype "input") (tstamp b93e1b29-06e9-44d8-9096-0c9270cdc2b6))
(pad "3" smd roundrect (at -1.9875 -0.25 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 62 "/mcu/tim1_ch3n") (pinfunction "INLC") (pintype "input") (tstamp 1f459464-f832-482b-ba44-18f64268edd8))
(pad "4" smd roundrect (at -1.9875 0.25 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "+12V") (pinfunction "GVDD") (pintype "power_in") (tstamp 2111489a-631c-4f1f-a640-0f8398175a9f))
(pad "5" smd roundrect (at -1.9875 0.75 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "+12V") (pinfunction "MODE") (pintype "input") (tstamp 5f9100d7-3f0f-4348-b7b1-21ce1ed4b518))
(pad "6" smd roundrect (at -1.9875 1.25 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "GND") (pinfunction "GND") (pintype "power_in") (tstamp fa99d0d3-954d-41b7-8e10-58e3b0f70882))
(pad "7" smd roundrect (at -1.25 1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp a51316c5-ef1f-48ed-b54c-b35e871c6854))
(pad "8" smd roundrect (at -0.75 1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) (tstamp 786c7128-47a4-4aef-a169-afd6816b7045))
(pad "9" smd roundrect (at -0.25 1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "Net-(R7-Pad1)") (pinfunction "GLC") (pintype "output") (tstamp 436fd709-4851-479a-bb51-d46ed362d033))
(pad "10" smd roundrect (at 0.25 1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "Net-(R5-Pad1)") (pinfunction "GLB") (pintype "output") (tstamp 30cdc450-301f-4de4-8731-5112e3c4c317))
(pad "11" smd roundrect (at 0.75 1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "Net-(R3-Pad1)") (pinfunction "GLA") (pintype "output") (tstamp 4e694470-93da-4b43-82cb-74e24ea4d2da))
(pad "12" smd roundrect (at 1.25 1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/drive/w_sense_line") (pinfunction "SHC") (pintype "output") (tstamp 2bdb1bc3-d838-4b07-9535-b06b80c46c56))
(pad "13" smd roundrect (at 1.9875 1.25 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "Net-(R6-Pad1)") (pinfunction "GHC") (pintype "output") (tstamp 9c71e147-8a43-48da-bc0f-2ef1f0ea3b80))
(pad "14" smd roundrect (at 1.9875 0.75 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(C14-Pad1)") (pinfunction "BSTC") (pintype "output") (tstamp 0e5c3207-4cb7-44bb-8cee-744d312aa3a3))
(pad "15" smd roundrect (at 1.9875 0.25 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/drive/v_sense_line") (pinfunction "SHB") (pintype "output") (tstamp d7640ea6-87d7-4f16-97da-edb9c759c7f0))
(pad "16" smd roundrect (at 1.9875 -0.25 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "Net-(R4-Pad1)") (pinfunction "GHB") (pintype "output") (tstamp 689558d5-5603-4b1e-8c30-fa5df6ddabe3))
(pad "17" smd roundrect (at 1.9875 -0.75 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "Net-(C13-Pad1)") (pinfunction "BSTB") (pintype "output") (tstamp a478d021-fe46-46a3-bd59-1378872d5638))
(pad "18" smd roundrect (at 1.9875 -1.25 45) (size 0.775 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/drive/u_sense_line") (pinfunction "SHA") (pintype "output") (tstamp 5e96d4c8-cd62-4c01-8ad9-ebfcd756687f))
(pad "19" smd roundrect (at 1.25 -1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "Net-(R2-Pad1)") (pinfunction "GHA") (pintype "output") (tstamp 34e0c9e4-fb38-4f28-ad78-a7cfb38e4e4a))
(pad "20" smd roundrect (at 0.75 -1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(C12-Pad1)") (pinfunction "BSTA") (pintype "output") (tstamp 5cef8358-4aa6-4770-9fc4-f11a9a7b22df))
(pad "21" smd roundrect (at 0.25 -1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "Net-(R1-Pad2)") (pinfunction "DT") (pintype "input") (tstamp 0dccbcdd-e8b7-4cf2-9d5f-15c79444665e))
(pad "22" smd roundrect (at -0.25 -1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 66 "/mcu/tim1_ch1") (pinfunction "INHA") (pintype "input") (tstamp a1350d63-f0cd-4170-8084-6b98cb4aab71))
(pad "23" smd roundrect (at -0.75 -1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 67 "/mcu/tim1_ch2") (pinfunction "INHB") (pintype "input") (tstamp 8274e927-a106-43dd-acc5-cb7418a90651))
(pad "24" smd roundrect (at -1.25 -1.9875 45) (size 0.25 0.775) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 68 "/mcu/tim1_ch3") (pinfunction "INHC") (pintype "input") (tstamp f3f7cb60-bded-4536-8e9d-8db231bafb56))
(pad "25" smd rect (at 0 0 45) (size 2.45 2.45) (layers "F.Cu" "F.Mask") (tstamp eef76b94-f5bc-4c1d-a9c6-cfb7baea98a7))
(model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "a22verter:SolderPad" (layer "F.Cu")
(tedit 0) (tstamp 43d324fb-0f5d-49f9-ad65-d462b4ef6422)
(at 170.6 51.3)
(property "Sheetfile" "File: a22verter.kicad_sch")
(property "Sheetname" "")
(path "/848899aa-d059-4136-a586-beeb9735a8cb")
(attr through_hole)
(fp_text reference "J4" (at 0 -3.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8674ac94-96d9-4d9f-8ecf-fb494e272d24)
)
(fp_text value "U" (at 0 3.25 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 712c1c7b-b10e-4d18-936a-dd43febb2f89)
)
(fp_text user "${REFERENCE}" (at 0 -3.25 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d6d12e0-a0f5-4371-b2d0-7015d1df58a2)
)
(pad "1" thru_hole circle (at -1 1) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 46 "/drive/u_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 149b3eca-5eb7-4e10-98b4-104db5aeb791))
(pad "1" thru_hole circle (at 1.25 0) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 46 "/drive/u_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 14ea736a-39da-4dce-a2bf-85c9a8d1ccab))
(pad "1" thru_hole circle (at 0 1.25) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 46 "/drive/u_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 271de5e7-23d2-4656-8c4d-8484c1526a92))
(pad "1" thru_hole circle (at 1 -1) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 46 "/drive/u_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 2a26af8a-595f-4c3e-afaf-02595fc2ba0b))
(pad "1" thru_hole rect (at 0 0) (size 3 3) (drill 1.5) (layers *.Cu *.Mask)
(net 46 "/drive/u_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 3d93a218-afe7-49d5-b3b6-41f9dfdedbf2))
(pad "1" thru_hole circle (at 1 1) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 46 "/drive/u_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 75eb7406-450b-41d1-9864-614f3b494ddc))
(pad "1" thru_hole circle (at 0 -1.25) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 46 "/drive/u_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp a464af7d-e765-426e-9e22-734e3ba62c40))
(pad "1" thru_hole circle (at -1 -1) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 46 "/drive/u_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp e682c1c6-720e-45df-815a-9aff79a51e0e))
(pad "1" thru_hole circle (at -1.25 0) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 46 "/drive/u_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp fae40c3d-768f-4250-878d-68019e2f40df))
)
(footprint "a22verter:DFN3.3x3.3-EP" (layer "F.Cu")
(tedit 0) (tstamp 4ae21784-9cd7-41c9-a1a0-29b6069cebdf)
(at 161.9 51.3 180)
(property "Sheetfile" "File: drive.kicad_sch")
(property "Sheetname" "drive")
(path "/ab32c3c7-64a9-43e3-8e3d-a7905994fa59/994c734a-9790-448e-b0db-3e4cfcbddef6")
(attr smd)
(fp_text reference "Q1" (at 2.6 -1 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cde0755-962c-407c-807d-8d3a5ba223e5)
)
(fp_text value "AON7418" (at 0 2.75 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f6cbdc3-6953-432b-9cf0-01d7400028e2)
)
(fp_text user "${REFERENCE}" (at 0 4.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba9c78a9-cdc5-4ba2-af4b-0296d04b50ee)
)
(fp_line (start -1.5 -1.5) (end -1.5 1.25) (layer "F.SilkS") (width 0.12) (tstamp 6a5fcda8-75d3-4b34-aa17-8144414027a1))
(fp_line (start 1.5 -1.5) (end 1.5 1.5) (layer "F.SilkS") (width 0.12) (tstamp 97eb4ffa-7fda-4ac1-a503-8a002490856b))
(fp_line (start -1.5 1.25) (end -1.25 1.5) (layer "F.SilkS") (width 0.12) (tstamp c0debc12-3be2-4048-a36e-e695abb4c940))
(fp_rect (start -1.7 -1.7) (end 1.7 1.7) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 5ca0b649-a417-4486-b2ba-a1d82b48944a))
(pad "1" smd roundrect (at -0.325 1.425 180) (size 0.35 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1428571429)
(net 24 "/drive/u_sense_line") (pinfunction "S") (pintype "passive") (tstamp 148859df-d667-40f8-99df-2c39bbca8ef5))
(pad "1" smd roundrect (at 0.325 1.425 180) (size 0.35 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1428571429)
(net 24 "/drive/u_sense_line") (pinfunction "S") (pintype "passive") (tstamp a88d2582-5556-464a-97f9-0e39e33a4645))
(pad "1" smd roundrect (at -0.975 1.425 180) (size 0.35 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1428571429)
(net 24 "/drive/u_sense_line") (pinfunction "S") (pintype "passive") (tstamp c60cb835-e3cb-45c3-b8eb-b3e1ced47ac5))
(pad "2" smd roundrect (at 0.975 1.425 180) (size 0.35 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1428571429)
(net 33 "Net-(Q1-Pad2)") (pinfunction "G") (pintype "input") (tstamp 883c4630-15ec-4c44-ae50-19171ffdf948))
(pad "3" smd custom (at 0 -0.36 180) (size 2.45 1.93) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "VBUS") (pinfunction "D") (pintype "passive")
(options (clearance outline) (anchor rect))
(primitives
(gr_poly (pts
(xy -1.175 -0.965)
(xy -0.775 -0.965)
(xy -0.775 -1.315)
(xy -1.175 -1.315)
) (width 0.05) (fill yes))
(gr_poly (pts
(xy -0.525 -0.965)
(xy -0.125 -0.965)
(xy -0.125 -1.315)
(xy -0.525 -1.315)
) (width 0.05) (fill yes))
(gr_poly (pts
(xy 0.125 -0.965)
(xy 0.525 -0.965)
(xy 0.525 -1.315)
(xy 0.125 -1.315)
) (width 0.05) (fill yes))
(gr_poly (pts
(xy 0.775 -0.965)
(xy 1.175 -0.965)
(xy 1.175 -1.315)
(xy 0.775 -1.315)
) (width 0.05) (fill yes))
) (tstamp 7d090ba6-1bf4-4446-b1ca-ee6a8f0a7e99))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 4e24c6cf-b36f-477f-b65a-03e295c1a2aa)
(at 159.6 56 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: drive.kicad_sch")
(property "Sheetname" "drive")
(path "/ab32c3c7-64a9-43e3-8e3d-a7905994fa59/ccaaa229-885c-4303-a85b-3e7ceda1f178")
(attr smd)
(fp_text reference "R5" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a20a022-e36d-4b75-a2b9-b8c5c89ffe86)
)
(fp_text value "16" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 309aa550-be7d-44a9-a77e-2c6527da2e8d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 1b603af5-8464-4f9b-872c-b3f4d1e5ab2b)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 208dcb56-b591-4d38-a435-916de1065398))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 5759b713-a10a-4325-80cb-99332685c14e))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 089a378c-a7d7-4d24-ae09-3457a141cd2e))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6d36d67f-bf58-43d9-9c56-2988ca530160))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8918dd70-d089-4dd4-bd4c-33658d2d5c6a))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 9d2130cd-582f-42a1-93d5-589864603b11))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 21b37a9a-b287-400c-a9e4-59082e4b94bc))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 548cce5c-3268-4ce2-8c8b-f4511d811b1f))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 85391ca4-3ad1-4dfe-99dd-c0bbe01d908b))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp c44db561-e5f2-4c65-8a62-6e38aa029640))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "Net-(R5-Pad1)") (pintype "passive") (tstamp f379f83b-a011-4012-852e-d1e0b7bdfa4a))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "Net-(Q4-Pad2)") (pintype "passive") (tstamp 21e6a252-debd-48b4-a57c-2c32da3d5578))
(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 "a22verter:SolderPad" (layer "F.Cu")
(tedit 0) (tstamp 4fa289dd-a4fe-40ad-9fb0-12d65e8713b7)
(at 170.6 59.1)
(property "Sheetfile" "File: a22verter.kicad_sch")
(property "Sheetname" "")
(path "/3c1d14c8-6118-4c8a-b647-223f62dcaea2")
(attr through_hole)
(fp_text reference "J6" (at 0 -3.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c6b1afe-839f-4c8c-891f-0cb2c9612f04)
)
(fp_text value "W" (at 0 3.25 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9732a9f8-eb66-4ea5-8364-775bb5fa46ac)
)
(fp_text user "${REFERENCE}" (at 0 -3.25 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6921f192-ac8a-4510-9842-e59806fa873b)
)
(pad "1" thru_hole circle (at 1.25 0) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 48 "/drive/w_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 03209e82-1826-4627-aa8f-467dbd809008))
(pad "1" thru_hole circle (at -1 -1) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 48 "/drive/w_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 0a455c87-5597-4db4-ad93-acfe98b39b9e))
(pad "1" thru_hole circle (at -1 1) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 48 "/drive/w_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 10d36803-c056-4796-bbb2-465321f2f2f4))
(pad "1" thru_hole circle (at 0 1.25) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 48 "/drive/w_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 382f0db7-286d-4f82-888d-cd2bea8e169d))
(pad "1" thru_hole circle (at 1 1) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 48 "/drive/w_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 3a1e7974-aae9-4886-8c5a-b4079f175ce5))
(pad "1" thru_hole rect (at 0 0) (size 3 3) (drill 1.5) (layers *.Cu *.Mask)
(net 48 "/drive/w_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 3e219b22-b2d4-47da-b90b-8140770858d7))
(pad "1" thru_hole circle (at 1 -1) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 48 "/drive/w_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp 601c2611-c42f-4e48-9db4-dfed41a2d6ff))
(pad "1" thru_hole circle (at -1.25 0) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 48 "/drive/w_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp c2d05603-8415-49b3-a50f-2c81bd8be4fa))
(pad "1" thru_hole circle (at 0 -1.25) (size 0.5 0.5) (drill 0.4) (layers *.Cu *.Mask)
(net 48 "/drive/w_sense_load") (pinfunction "Pin_1") (pintype "passive") (tstamp f85b2390-2f6d-4acc-b2b0-2cb793bee7f1))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5dd00116-6d28-46c7-bd1a-9d234cad9f6d)
(at 159.21 50.1)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: drive.kicad_sch")
(property "Sheetname" "drive")
(path "/ab32c3c7-64a9-43e3-8e3d-a7905994fa59/c2ad65d9-e50a-4b35-941a-41b16a2c94e3")
(attr smd)
(fp_text reference "R2" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 939f1e8d-4e11-4dff-bfbf-ddb784b71b35)
)
(fp_text value "16" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4c4fbc5-92d9-404c-a65f-e30bb5614758)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 8a98f224-b169-432b-98c7-644447d3413b)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 4727f12b-f712-4566-8a51-937907ed7a47))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 9cbb663d-8080-49a5-a09e-4381c8e29fd1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1f004d1b-f585-4326-9b73-763620116516))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 2785c49d-85eb-4258-87eb-aebb617f88cf))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp c019fdc4-3f23-401d-95a3-8d71134efa60))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e93439cc-590a-41b9-8050-552168966b19))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 13440508-10b1-4186-b05d-0572063f2df2))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 4fbc43bb-e358-4bec-80a7-2d61183db079))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp b3eea119-e5b0-4295-a1a0-37b710bd9bd1))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp dcb15bd8-185a-4960-87c3-9b852fee20a6))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "Net-(R2-Pad1)") (pintype "passive") (tstamp 58c47c3b-4732-4c3f-ae2c-8f89b30b0e74))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "Net-(Q1-Pad2)") (pintype "passive") (tstamp ea07b5ee-e24c-48b4-ab7c-b1e0a643a59d))
(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 "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 85929e2f-79dc-4757-8f37-a76c3e7b1629)
(at 168 51.3 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "File: drive.kicad_sch")
(property "Sheetname" "drive")
(path "/ab32c3c7-64a9-43e3-8e3d-a7905994fa59/047ee213-eee2-40d6-b795-665698366805")
(attr smd)
(fp_text reference "R8" (at 0 -1.65 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3dbc8e45-23a5-4d54-9c08-0f0508e917d0)
)
(fp_text value "1m" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e255124-14c3-42aa-9f58-591e6ddbf716)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 68cd967a-73b7-4984-99bf-5f51b1e816da)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 1df8cc8f-3766-4e9f-addb-0be206963b38))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 37335532-0d9b-4bb5-b95a-22b14f073ae2))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 212fbbb3-45fb-4ce0-850f-33bd5cb346ab))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7f11b88a-c2fb-408c-a1c8-070b66464c8b))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp e62fc900-ebd2-461b-9efb-6f8c926043ff))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp fb0a71b2-8294-456b-bc45-0ba2f7cbc0b9))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 1d57a2d4-521a-44db-bf33-46cc842daae2))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 56cbaada-d7a1-4128-a2e9-da36a84c4c5b))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp c2a2e500-5b24-46ea-9fc0-deb7cd74d97b))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp da6a60d5-608d-4b9e-b659-3ceb60fd70b1))
(pad "1" smd roundrect (at -0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 46 "/drive/u_sense_load") (pintype "passive") (tstamp 9ba9b420-768d-43eb-bab2-1544be075730))
(pad "2" smd roundrect (at 0.9125 0 90) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 24 "/drive/u_sense_line") (pintype "passive") (tstamp d8b9084f-95ab-4791-b7cd-e6202a565cb4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "a22verter:MOLEX_5055670451" (layer "F.Cu")
(tedit 63472443) (tstamp 890ac9e5-63fd-43ba-9c3f-71ca8db3ddf8)
(at 152.5 47.3)
(property "Sheetfile" "File: a22verter.kicad_sch")
(property "Sheetname" "")
(path "/5b6e2794-ebc5-46dc-8ad1-e57fb355dee3")
(attr through_hole)
(fp_text reference "J9" (at -0.815 -4.515) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88f44344-b080-4058-882f-683c78c36f3c)
)
(fp_text value "i2c" (at 6.17 4.985) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e940615-9e60-4b8b-8801-cb1b2ab4a78f)
)
(fp_line (start 4.125 0.85) (end 4.125 2.1) (layer "F.SilkS") (width 0.127) (tstamp 0b9ba474-1418-471f-99fa-b0981d59404d))
(fp_line (start 2.275 4.22) (end 1.875 3.52) (layer "F.SilkS") (width 0.127) (tstamp 2c93a16d-7339-4bdd-b2fa-0b7dfdb7b6f6))
(fp_line (start 4.125 2.1) (end 2.595 2.1) (layer "F.SilkS") (width 0.127) (tstamp 8de45e00-7463-45eb-9df8-a557e09280a0))
(fp_line (start -4.125 2.1) (end -4.125 0.85) (layer "F.SilkS") (width 0.127) (tstamp bc7ed216-06d5-4a24-ad66-413ff0e56aa4))
(fp_line (start 1.875 3.52) (end 1.475 4.22) (layer "F.SilkS") (width 0.127) (tstamp c2d870ad-1e40-47ca-9882-19e93c2807e4))
(fp_line (start 1.475 4.22) (end 2.275 4.22) (layer "F.SilkS") (width 0.127) (tstamp c8cb9670-0c36-482d-b9ac-134e15cb1291))
(fp_line (start 4.125 -2.1) (end -4.125 -2.1) (layer "F.SilkS") (width 0.127) (tstamp ee6140fa-416f-4d66-a7e9-dfe066b3c611))
(fp_line (start -2.595 2.1) (end -4.125 2.1) (layer "F.SilkS") (width 0.127) (tstamp f8442ede-4953-48cc-bdb0-b636656fdae1))
(fp_poly (pts
(xy -1.1012 1.0738)
(xy -0.1488 1.0738)
(xy -0.1488 2.4262)
(xy -1.1012 2.4262)
) (layer "F.Mask") (width 0.01) (fill solid) (tstamp 01f491e8-e9ef-4c47-9ea8-ded542fcdd55))
(fp_poly (pts
(xy 1.3988 1.0738)
(xy 2.3512 1.0738)
(xy 2.3512 2.4262)
(xy 1.3988 2.4262)
) (layer "F.Mask") (width 0.01) (fill solid) (tstamp 2774fdb5-b35d-415f-ae5b-f633ea1c9118))
(fp_poly (pts
(xy 3.0488 -1.6962)
(xy 4.5012 -1.6962)